Skip to main content

A python wrapper to interact for bandori.party/bandori.ga APIs

Project description

Pydori

PyPI version fury.io

Build Status

A python wrapper to provide easier access to the bandori party and bandori database public APIs.

Contents

Info

Both bandori party and bandori database provide extensive public bang dream apis. The purpose of this package is to simplify accessing the various endpoints they provide, while providing sufficient detailed documentation. Additional helper functions and classes are used to automate manual tasks. Users are able to choose between the Bandori Party API or the Bandori Database API.

Features

  • bandori party endpoints
  • bandori database endpoints
  • OOP class design
  • Make use of the bandori party and bandori database api in one package
  • additional functions to improve productivity

Installation

Use pip to install:

pip install pydori

Usage

Read this to get started on pydori:

  1. Create a bandori api instance by using the bandori_api() function. The function returns a class whose functions you can use. Bandori party api does not rely on region; Bandori database api does.
import pydori

bapi = pydori.bandori_api()  # uses all default settings

# This uses the bandori database api.
# bapi = pydori.bandori_api(region='jp/', party=False)
  1. Use the bandori api class functions to access the endpoint you want. All requests made in this wrapper are GET requests using the requests module. See the documentation for what functions to use. The basic syntax is simple: get_{endpoint}(), called on the api class. They usually return lists.
cards = bapi.get_cards()
  1. GET requests can take optional arguments id and filters. id is a list of integers corresponding to the ids of the objects you want to get. filters are search terms you want to filter by: the key is the category to filter, and the value is the actual value to filter by (ie. results will only include objects that have this value for this corresponding key).
cards = bapi.get_cards(id=[511], filters={})
  1. BandoriObjects are returned from the requests. The original json object will always be stored in BandoriObject.data but all (or most) of the terms can be accessed directly as class attributes. There can also be helper functions in these objects that speed up accessing relevant data.
cards = bapi.get_cards(id=[511])
card = cards[0]

rimi = card.get_card_member()  # returns a PMember object

print(rimi.name)
  1. See the examples below or the Documentation if you need any help.

Examples

This example instantiates a PBandoriApi object, gets a card by ID, and displays the card's name.

import pydori

b = pydori.bandori_api()
result = b.get_cards(id=[511])
card = result[0]

print(card.name)

Here we get the current event and display the start and end times:

from pydori import bandori_api

b = bandori_api()
current = b.get_current_event()

print(current.get_start_date())
print(current.get_end_date())

Pydori accepts filters for the objects, as a dictionary. This example shows how to get all songs by the band "Roselia".

import pydori

b = pydori.bandori_api(region='en/', party=False)
roselia_songs = b.get_songs(id=[], filters={'bandName' : 'Roselia'})

Documentation

The documentation is being moved to the github wiki page.

Contributing

See contributing.

Alternatives

There are a couple of node packages that serve the same purpose, most notably node-dori. If you're more familiar with javascript you could go search for those. This seems to be the only port in python so far, though.

License

PyPI license

This project is licensed under the MIT license.

Credits

API provided by bandori.party and bandori database.

I do not own any logos, images, or assets of the BanG Dream! Franchise, they are the property and trademark of Bushiroad.

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

pydori-0.5.0.tar.gz (12.7 kB view details)

Uploaded Source

Built Distribution

pydori-0.5.0-py3-none-any.whl (12.2 kB view details)

Uploaded Python 3

File details

Details for the file pydori-0.5.0.tar.gz.

File metadata

  • Download URL: pydori-0.5.0.tar.gz
  • Upload date:
  • Size: 12.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pydori-0.5.0.tar.gz
Algorithm Hash digest
SHA256 b29ee756b3086a1aa9c89e59d96f12ff4050615794e046501adcb97058c6da1a
MD5 6b508b5a3c161853196633699a775c64
BLAKE2b-256 42f70b4ebdc3aec5a8cf25a696244407349aea1803089b88e585a584aa2846e4

See more details on using hashes here.

File details

Details for the file pydori-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: pydori-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 12.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2

File hashes

Hashes for pydori-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a42d53253a9c6094e11638423719e1e3e588651c4949912b8bed3620f5696277
MD5 b952a2890ea4fad9900a8fe3bd6e03a3
BLAKE2b-256 4c18be5e824d7aeca500425b7bbd91d138eb05b35722d28a20c0cd5dbb9eba46

See more details on using hashes here.

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