A python package to interact with the bandori.party and bandori.ga public APIs
Project description
Pydori
A python package to interact with the bandori.party and bandori.ga public APIs.
Info
Although both bandori.party and bandori database provide extensive public bang dream api's, there is currently not much documentation to help navigate through them. This package attempts to simplify accessing the various endpoints they provide. Not everything is available through this package, but I think the main ones are there.
Installation
Use pip to install:
pip install pydori
Example
This example instantiates a BandoriApi object, gets a card by ID, and displays the card's name.
import pydori
b = pydori.BandoriApi()
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 BandoriApi as api
b = api()
current = b.get_current_event()[0]
print(current.get_start_date())
print(current.get_end_date())
Documentation
BandoriApi
pydori.BandoriApi(region = 'en/')
A class that talks to the bandori APIs. All functions that should be used are in this class. It holds the following attributes:
-
URL_PARTY - A url to the bandori.party api
-
URL_GA - a url to the bandori.ga api
-
URL_GA_RES - a url to the bandori database resource api
Parameters
- region(Optional[str]) - Region used for the bandori database api. Other options include 'jp/', 'tw/' (not tested), 'kr/' (not tested)
Functions
get_cards(id : list = [])
Returns a list of Card
objects based on the ids provided. If the list is empty, all cards will be returned.
get_members(id : list = [])
Returns a list of Member
objects based on the ids provided. If the list is empty, all members will be returned.
get_events(id : list = [])
Returns a list of Event
objects based on the ids provided. If the list is empty, all members will be returned.
get_current_event()
Returns the current event as an Event
object in a list (it makes an internal call to get_events
). The current event is provided by the bandori database api, but the event data itself is from bandori.party.
get_costumes(id : list = [])
Returns a list of Costume
objects based on the ids provided. If the list is empty, all costumes will be returned.
get_items(id : list = [])
Returns a list of Item
objects based on the ids provided. If the list is empty, all items will be returned.
get_areaitems(id : list = [])
Returns a list of AreaItem
objects based on the ids provided. If the list is empty, all areaitems will be returned.
get_assets(id : list = [])
Returns a dict where the keys are the different subtypes of Asset
, and the values are a list of those objects. If the input list is empty, all assets will be returned.
Even when there is only one asset queried, a full dict will be returned - just with empty lists in some of the values.
get_bands()
Returns a list of all bands as Band
objects. You cannot get a specific band from id. This is region sensitive.
get_songs(id : list = [])
Returns a list of Song
objects based on the ids provided. If the list is empty, all songs will be returned. This is region sensitive.
get_gachas(id : list = [])
Returns a list of Gacha
objects based on the ids provided. If the list is empty, all gachas will be returned. This is region sensitive.
BandoriObject
pydori.base_objects.BandoriObject(data : dict, id_name = 'id', region = 'en/')
Bandori objects are classes that represent data retrieved from the api. They are used to have quick access to certain attributes, and provide helpful methods on the data. They can be sorted by id. They should not be normally instantiated (unless for debugging) and are meant as outputs from BandoriApi. All BandoriObjects have the follow attributes:
-
URL_PARTY - A url to the bandori.party api
-
URL_GA - a url to the bandori.ga api
-
URL_GA_RES - a url to the bandori database resource api
-
id - The object's id
-
data - The original dict of the object's information from the api.
Notes:
Region select only works on certain methods - Song, Gacha, Band. See below
Not all attributes available from the api are recorded when creating these objects. It's best to work with the data dict as it contains everything.
Some attributes may have a null value and not work with their intended functions. Check before using.
The bandori.party api is used for most classes. The Songs, Bands, and Gachas class make use of the bandori database api.
Parameters
-
data([dict]) - A python dictionary containing the data for the class
-
id_name(Optional[str]) - The string to use when searching for the id in the dict.
-
region(Optional[str]) - Region used for the bandori database api. Other options include 'jp/', 'tw/' (not tested), 'kr/' (not tested)
The following classes inherit from BandoriObject:
Card(BandoriObject)
Represents a Bang Dream card with the following attributes:
-
member - member id
-
rarity - card rarity
-
attribute - card attribute
-
id - The object's id
-
name - english name
-
japanese_name
-
skill_type
-
cameo - a list of cameo member ids
Functions
get_card_member()
Returns a Member
corresponding to the Card's member attribute.
get_cameo_members()
Returns a list of Member
corresponding to the Card's cameo attribute.
Member(BandoriObject)
Represents a Bang Dream member with the following attributes:
-
name
-
japanese_name
-
band - the band name that the member belongs to
-
school
-
year
-
romaji_cv
-
cv
-
birthday
-
food_likes
-
food_dislikes
-
astro - astrological sign
-
instrument
-
description
Event(BandoriObject)
Represents a bang dream event with the following attributes:
-
name
-
japanese_name
-
type
-
[english | jp | tw | kr]_[start | end]_date - start and end dates for the events, for different servers.
-
versions_available - versions of the game where the event is available
-
main_card - main card id
-
secondary_card - secondary card id
-
boost_attribute
-
boost_members - a list of member ids who are boosted during event
Functions
get_start_date(region = 'en')
Returns a datetime object of the start date of the event, depending on region (default en). If the date attribute is null, returns -1.
get_end_date(region = 'en')
See get_start_date
.
get_main_card()
Returns a Card
object corresponding to the Event's main_card id
get_secondary_card()
Returns a Card
object corresponding to the Event's secondary_card id
get_boost_members()
Returns a list of Member
corresponding to the Event's boost_members ids
Costume(BandoriObject)
Represents an in-game costume with the following attributes:
-
type
-
card - card id if applicable
-
member - member id
-
name
Functions
get_costume_member()
Returns a Member
object corresponding to the Costume's member attribute
get_costume_card()
Returns a Card
object corresponding to the Costume's card attribute
Item(BandoriObject)
Represents an in-game item with the following attributes:
-
name
-
type
-
description
AreaItem(BandoriObject)
Represents an in-game area item with the following attributes:
-
name
-
area - id for the area. Currently unusable.
-
type
-
instrument
-
attribute
-
stat
-
max_level
-
values - list of percentages that the item boosts at each level.
-
description
Asset(BandoriObject)
Represents a Bang Dream asset as defined by bandori.party. Every asset has a type. There are multiple types of Asset
from this:
Comic(Asset)
A bandori comic.
-
name
-
members - a list of member ids (that appear in the comic)
Functions
get_comic_members()
Returns a list of Member
object corresponding to the Comic's members attribute
Background(Asset)
A bandori background.
- name
Stamp(Asset)
A bandori stamp.
-
name
-
members - a list of member ids that appear in the stamp.
Functions
get_stamp_members()
Returns a list of Member
object corresponding to the Comic's members attribute
Title(Asset)
A bandori profile title.
-
event - the event id this title is from.
-
value - TOP {value} of the event.
Functions
title_event()
Returns an Event
object corresponding to the Title's event attribute.
Interface(Asset)
A bandori interface (mostly pictures).
- name
OfficialArt(Asset)
Bandori official art.
Band(BandoriObject)
This takes in a dict from the bandori database api (so it is by region). Represents a Bang Dream band with the following attributes:
-
name
-
introduction
-
members - The bandori.party member ids for the members in this band. Note that any bands past Roselia have wrong ids for some reason.
Functions
get_band_members()
Returns a list of Member
object corresponding to the Band's members attribute
Song(BandoriObject)
This takes in a dict from the bandori database api (so it is by region). Represents a Bang Dream in-game song with the following attributes:
-
title
-
bgm - link to song mp3.
-
thumb
-
jacket
-
band_name
-
band - the band id.
-
difficulty
-
how_to_get
-
composer
-
lyricist
Gacha(BandoriObject)
This takes in a dict from the bandori database api(so it is by region). Represents a Bang Dream gacha with the following attributes:
-
name
-
[start | end]_date - a timestamp in milliseconds for the start/end dates of the event.
-
description
-
period
-
type
Functions
get_start_date()
Returns a datetime object for the start date of the Gacha.
get_end_date()
See get_start_date()
BandoriLoader
pydori.bandori_loader.BandoriLoader(region = 'en/')
BandoriApi inherits from this class. It is only meant for internal use, and its purpose is to make api calls to bandori.party and bandori.database and return the result as dictionaries or lists. It should not be normally instantiated, but is useful sometimes for debugging.
Credits
This project is licensed under the MIT license.
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pydori-0.3.1.tar.gz
.
File metadata
- Download URL: pydori-0.3.1.tar.gz
- Upload date:
- Size: 13.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 45e813611a57a853427cec931dab8d047aba7d1ec1e147017ad2123f4845f998 |
|
MD5 | a270c5c1b4c64e04f69236ac5e88fc4c |
|
BLAKE2b-256 | 35fe637201ab99d903b9c5c0e16cf824f1365b93515c8a39e81af8ccd972fc78 |
File details
Details for the file pydori-0.3.1-py3-none-any.whl
.
File metadata
- Download URL: pydori-0.3.1-py3-none-any.whl
- Upload date:
- Size: 18.6 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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 693874063436e7d3c4be80c88c6a793519d8ff2788f0a20815258667d0a44653 |
|
MD5 | eaa562b65e57d3306c8d9194de766d5a |
|
BLAKE2b-256 | 5cbe64e3f248972f0de53048fe03098d5aeca5353ceb5a57d2c33a02c4572ebc |