/aikabu

A Python 3 library for interacting with the AiKaBu private API

Primary LanguagePythonMIT LicenseMIT

Aikabu

A Python 3 library for interacting with the AiKaBu private API.

Obtaining your account_token

I found mine by using Fiddler.
mitmproxy is also useful for this.

Dependencies

Requests

pip install -r requirements.txt

Example API usage

from aikabu import Aikabu

account_token = "abc123"
platform = "android"  # or "iphone"
akb = Aikabu(account_token, platform)
print(akb.stock_summaries())