Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wnma3mz/wechat_msg
https://github.com/wnma3mz/wechat_msg
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/wnma3mz/wechat_msg
- Owner: wnma3mz
- License: mit
- Created: 2020-06-09T14:19:14.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-15T05:16:26.000Z (over 3 years ago)
- Last Synced: 2024-10-14T13:18:14.185Z (3 months ago)
- Language: Python
- Size: 11.7 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Wechat_msg
企业微信发送消息接口,Python
```python
from wechat_msg.WeChat import Authorize, Send, Uploadcorpid = ''
corpsecret = ''
agentid = ''a = Authorize(corpid, corpsecret)
token = a.get_token()s = Send(agentid, token)
s.send_msg("TEST", name="username")
s.send_img("img_path", name="username")
```