No project description provided
Project description
candfans-client
非公式のCandfansのAPI Clientです。なんの保証もありません。
install
https://pypi.org/project/candfans-client/
pip
pip install candfans-client
poetry
poetry add candfans-client
example
init and login
初期化時にログインを行います。
from candfans_client.client import CandFansClient
client = CandFansClient(
email='YOUR_EMAIL',
password='YOUR_PASSWORD',
)
get_sales
指定月の売上のサマリーを取得します。
sales = client.get_sales('2023-11')
print(sales[0].subscribe_sum)
get_sales_history
指定月の売上の履歴を取得します。
histories = client.get_sales_history('2023-11')
print(len(histories))
print(histories[0])
get_sales_purchase_post
指定月の単体販売の詳細を取得します。
purchase = client.get_sales_purchase_post('2023-11')
print(purchase.total_price, len(purchase.sales))
get_sales_subscribe
指定月のサブスクの詳細を取得します。
subscribe = client.get_sales_subscribe('2023-11')
print(subscribe.total_price, len(subscribe.sales))
get_sales_chip
指定月のチップの詳細を取得します。
chip = client.get_sales_chip('2023-11')
print(chip.total_price, len(chip.sales))
get_sales_backnumber
指定月のバックナンバーの売上の詳細を取得します。
backnumber = client.get_sales_backnumber('2023-11')
print(backnumber.total_price, len(backnumber.sales))
contribution
test
poetry run python -m unittest discover -s tests/
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
candfans_client-1.0.2.tar.gz
(7.9 kB
view hashes)
Built Distribution
Close
Hashes for candfans_client-1.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 62531ecf2644426b9662fc381d772c87626e52194a9c4c60373b4fd7b44688b0 |
|
MD5 | 96b534e80c477e38f9bcaf23ab6e0435 |
|
BLAKE2b-256 | 8e31490e2f0ab50f26476f637e4222a3c329c2df81242c4be7bda699e4d73171 |