Skip to main content

Asynchronous Python Wrapper for the Bungie API

Project description

Destipy

This is a asynchronous Python Wrapper around the Bungie API. It allows one to send requests to all given endpoints of the Bungie API seen in their Bungie.Net API Documentation.

NOTE:

  • The endpoints are parsed from the API documentation and are therefore not tested, some of them might not work or are missing parameters due to inconsistencies in the documentation.
  • Some of the code is inspired or taken from pydest and aiobungie so check them out!

Features

  • Every endpoint in the documentation is implemented, POST and GET.
  • Download and Extraction of the manifest to a .content file.
  • Download and Extraction of the manifest to a MongoDB database (COMING SOON).
  • Logging with own logger or with the default logger by adding a file "logs/Destipy.log" ('logs' being a folder) in the root folder.

Examples

Here are a few examples:

Requirements

  • aiohttp

Install Destipy:

pip install Destipy

In you project you can use it as a simple client without authentication by initialize a client with your Api Key like this:

from destipy.destiny_client import DestinyClient

client = DestinyClient(<API_KEY>)
user = await client.user.GetBungieNetUserById(<MEMBERSHIP_ID>)

If you plan on using a specific category of endpoints multiple times you can also use the endpoint category itself as a class:

from destipy.destiny_client import DestinyClient

client = DestinyClient(<API_KEY>)
user_endpoints = client.user
user = await user_endpoints.GetBungieNetUserById(<MEMBERSHIP_ID>)

Contact

Discord: sedam79

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

Destipy-0.81.tar.gz (162.7 kB view hashes)

Uploaded Source

Built Distribution

Destipy-0.81-py3-none-any.whl (173.5 kB view hashes)

Uploaded Python 3

Supported by

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