Afdian SDK for Python
Project description
✨ 一个现代化的爱发电 Python SDK ✨
✨ 同时支持 同步 与 异步 调用 ✨
安装方式
pip install afdiankit
# or, use poetry
poetry add afdiankit
# or, use pdm
pdm add afdiankit
使用方法
使用爱发电网页端 API
获取网页端 auth_token
在爱发电网页端打开 F12 开发者工具,切换到 Console(控制台)标签页,输入以下 JavaScript 代码获取网页端 auth token
document.cookie.match(new RegExp("(^| )auth_token=([^;]+)"))[2];
调用 afdiankit
示例:
from afdiankit import Afdian, TokenAuthStrategy
afdian = Afdian("<auth_token>")
# 或者显式调用 TokenAuthStrategy
github = Afdian(TokenAuthStrategy("<auth_token>"))
使用开放平台 API
在开发者后台生成 webhook 的 token,复制 user_id
。
调用 afdiankit
示例:
from afdiankit import Afdian, TokenAuthStrategy
afdian = Afdian()
user_id = "<user_id>"
token = "<token>"
afdian.open.post_ping(
token=token,
user_id=user_id,
params={"a": "1"},
ts=int(time.time())
).json()
许可证
项目源代码使用 MIT 许可证授权,见 LICENSE。
鸣谢
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
afdiankit-0.1.1.tar.gz
(23.7 kB
view hashes)
Built Distribution
afdiankit-0.1.1-py3-none-any.whl
(40.1 kB
view hashes)
Close
Hashes for afdiankit-0.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55c5740fa4cefb446eed4f1ccff54ba41a88a710e2ae9920c9bf48f8724e105d |
|
MD5 | 13bf351cf8a6342c0d8ffc92078d4438 |
|
BLAKE2b-256 | 71d720cb236db592b2cba18068fe1d39a185e4baac3ecff4b7461552291e5c04 |