抖音现在普及率几乎能追上微信,抖音支付的申请门槛也不高,参考微信支付的 wechatpayv3: ,搞了个抖音支付的 python sdk ,基础的支付、回调、转账、分账都有了。
https://github.com/minibear2021/douyinpay
pip install douyinpay 即可
from douyinpay import Config, AsyncDouyinPayClient
config = Config(...)
async def main():
async with AsyncDouyinPayClient(config) as client:
resp = await client.payments.app_prepay(...)