Skip to content

Latest commit

 

History

History
executable file
·
25 lines (16 loc) · 568 Bytes

README.md

File metadata and controls

executable file
·
25 lines (16 loc) · 568 Bytes

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