블랙서바이벌: 영원회귀 openapi 를 위한 Python API Client 입니다.
A Python API Client for Black Survival: Eternal Return openapi.
- Python 3.6 or higher
- requests
$ pip install bser-python-client
If you use pipenv,
$ pipenv install bser-python-client
Before run examples,
$ python setup.py develop
And then,
from bser_client import BserAPIClient
api_client = BserAPIClient(api_key='your_token', version='v1')
characters = api_client.fetch_meta_data(meta_type='Character')
for character in characters:
print(character.get('name'))