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.2.0.tar.gz
(24.3 kB
view hashes)
Built Distribution
afdiankit-0.2.0-py3-none-any.whl
(40.7 kB
view hashes)
Close
Hashes for afdiankit-0.2.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e580b89dd966c9826d5e6cd2c1a11314cc626834cd4f8961ffa533950aee953b |
|
MD5 | e6cbfacb6f8f85ec0261ac05c01de16a |
|
BLAKE2b-256 | b2a96175031a83d5b71d7010302e407de77ab1a15c2bafd287711afb0dc560b7 |