serverchan

unofficial sdk for serverchan by anysoft.


License
MIT
Install
pip install serverchan==0.1.1

Documentation

📦 serverchain (for ftqq)

简单封装ftqq提供的api,仓库地址 serverchain

非官方版本,具体可以查看仓库源码

参考具体用法官方API

目的在于方便脚本调用,减少重复代码

Check out the example!

Installation

pip install serverchain

demo

from serverchain import ServerChian
from serverchain.channel import Channels

# secret = 'SCU114xxxxx'
secret = 'SCTxxxx'
serverchain = ServerChian(secret)
response = serverchain.push(title="test", desp='just for test')
print(response.text)
print(response.text.encode().decode('unicode_escape'))

response = serverchain.push(title="test1", desp='just for test1', channel='{}|{}'.format(Channels.WECHAT_SERVICE_ACCOUNT, Channels.PUSHDEER))
print(response.text)
print(response.text.encode().decode('unicode_escape'))

To Do

  • Tests via $ setup.py test (if it's concise).

Pull requests are encouraged!

More Resources

License

agpl-3.0

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.