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.5.tar.gz (32.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.5-py3-none-any.whl (32.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pybanana-0.4.5.tar.gz
  • Upload date:
  • Size: 32.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.5.tar.gz
Algorithm Hash digest
SHA256 1ac8f311c0887adeabf429c3478d57077a46153d37dae88cba330b6ed644dc68
MD5 384939f02bfe70e1047b5059858aa77f
BLAKE2b-256 d36d761ca2967f5434b64cbc3043f2c543467740d09913b6b8f6c076437884ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybanana-0.4.5-py3-none-any.whl
  • Upload date:
  • Size: 32.2 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.5-py3-none-any.whl
Algorithm Hash digest
SHA256 6ed259f5de701aa479200ed1e21055f1b06b9ca5b953e6680e0910457fbb7cd9
MD5 c60cf3350506c7edc5cb7210e106ecfc
BLAKE2b-256 80728c1530f59a7f604bcededc31ea249d21920c42d55c6923f566470bc7be25

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