Skip to main content

A Python wrapper for the GameBanana API

Project description

🍌 PyBanana

A powerful and intuitive Python client library for interacting with the GameBanana API. This library provides easy access to GameBanana's extensive modding platform, allowing you to search, retrieve, and interact with mods, users, games, and more.

Note: This library is currently a Work in Progress (WIP). Features and APIs may change.

Features

  • 🔍 Comprehensive API Coverage
    • Search for mods across GameBanana
    • Fetch detailed mod information
    • Access user profiles and statistics
    • Get game information and categories
    • Browse mod sections and categories
  • 🛠 Developer-Friendly
    • Full type hints support with Optional return types
    • Intuitive object-oriented models
    • Robust error handling with graceful failure (returns None)
    • Well-documented API methods
  • 🚀 Easy to Use
    • Simple and clean API
    • Pythonic interface
    • Extensive examples provided

Quick Start

from pybanana.api import PyBanana
from pybanana.enums import ModelType

# Initialize the client
api = PyBanana()

# Get a member's profile
member = api.get_member(1382)  # Tom's ID
if member:
    print(f"Name: {member.name}")
    print(f"Online: {member.is_online}")

# Search for mods
results = api.search("sound effects", ModelType.MOD)
if results:
    for mod in results.records:
        print(f"Mod: {mod.name} - {mod.description}")

Installation

pip install pybanana

Documentation

For detailed documentation and examples, check out:

Requirements

Runtime Dependencies

  • Python 3.7+
  • requests >= 2.25.0
  • python-dateutil >= 2.8.2

Development Dependencies

  • pytest >= 8.0.0
  • requests-mock >= 1.11.0

Error Handling

All public API methods now return Optional types and include built-in error handling. When an API call fails, methods return None instead of raising exceptions, allowing for more resilient code:

# Safe API usage with None check
mod = api.get_mod_profile(12345)
if mod:
    print(f"Found mod: {mod.name}")
else:
    print("Mod not found or API error occurred")

Contributing

Contributions are welcome! Here's how you can help:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

  • Thanks to GameBanana for providing the API
  • All contributors who help improve this library

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pybanana-0.4.3.tar.gz (30.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pybanana-0.4.3-py3-none-any.whl (30.8 kB view details)

Uploaded Python 3

File details

Details for the file pybanana-0.4.3.tar.gz.

File metadata

  • Download URL: pybanana-0.4.3.tar.gz
  • Upload date:
  • Size: 30.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for pybanana-0.4.3.tar.gz
Algorithm Hash digest
SHA256 4b69b8ac952e769cf625d055df39b320a0dd3f905ea2c824bfefa0914a47eb14
MD5 8d0f81e2e3306603e8a04a9162ff0d28
BLAKE2b-256 eade869874bea55c120dc8595f3a268779a2dc82c74216497832fa38047bb897

See more details on using hashes here.

File details

Details for the file pybanana-0.4.3-py3-none-any.whl.

File metadata

  • Download URL: pybanana-0.4.3-py3-none-any.whl
  • Upload date:
  • Size: 30.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for pybanana-0.4.3-py3-none-any.whl
Algorithm Hash digest
SHA256 6b66f8ad8c943f11978f3d70c652b3c1b68bac57657b6ff1b8aa640d911437a2
MD5 b52b1416e994c1d95b25be3cecf67f66
BLAKE2b-256 b001892a07b96363513546259508a5f884aa6b625a3248b79600e9e92d9a642b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page