myungseokang / bser-python-client

A Python API Client for Black Survival: Eternal Return

Home Page:https://pypi.org/project/bser-python-client/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BSER Python API Client

블랙서바이벌: 영원회귀 openapi 를 위한 Python API Client 입니다.

A Python API Client for Black Survival: Eternal Return openapi.

Requirements

Installation

$ pip install bser-python-client

If you use pipenv,

$ pipenv install bser-python-client

Example

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'))

More examples

About

A Python API Client for Black Survival: Eternal Return

https://pypi.org/project/bser-python-client/

License:MIT License


Languages

Language:Python 100.0%