A package to make dingbot easily to use
Project description
pydingbot
pydingbot 是一个让钉钉机器人更好用的包。
安装
你可以用 pip 来安装pydingbot
$ pip install pydingbot
使用
在使用pydingbot之前,首先你需要在钉钉群里添加你的自定义机器人,安全设置选择加签,然后点开“机器人设置”找到 webhook 和 secret(秘钥),这些是使用机器人所必须的信息,webhook和secret的来源如图所示:
简单示例
from pydingbot import inform
WEBHOOK = 'https://oapi.dingtalk.com/robot/send?access_token=170d919d864e90502b48603ecbcd7646701bd66cc590f495bac1b7c5049e171e'
SECRET = 'SEC474937571de1506cdd724af0d5866f4fa2788968032a2d6d982da988bea4e5de'
inform(webhook=WEBHOOK, secret=SECRET, title='My Title', text='My Text')
如果你的配置正确,那么消息应该就已经发送到你的钉钉群里了。
使用@功能
@指定人员需要向at_mobiles参数传入指定@人员的手机号列表,例如:
inform(webhook=webhook, secret=secret, title='My Title', text='My Text', at_mobiles=['15811112009', '15822222009'])
@所有人需要向at_all参数传入True,例如:
inform(webhook=webhook, secret=secret, title='My Title', text='My Text', at_all=True)
还可以同时使用@指定人和@所有人的功能,例如:
inform(webhook=webhook, secret=secret, title='My Title', text='My Text', at_mobiles=['15811112009', '15822222009'], at_all=True)
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pydingbot-0.0.3.tar.gz.
File metadata
- Download URL: pydingbot-0.0.3.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.25.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bcd8a86c037a4123addb221f044252c0e7f46d92a897f4b737d1f66f9d1f4d17
|
|
| MD5 |
8187d4794d154c5de41415af128fca07
|
|
| BLAKE2b-256 |
80f9706143294654052cd57e21b36523f6c66f7837bc71c11183077c6c94d1bd
|
File details
Details for the file pydingbot-0.0.3-py3-none-any.whl.
File metadata
- Download URL: pydingbot-0.0.3-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.25.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5610152832eb5b74754976296977c7e40c59cba5fc6fe228cc6d1fe0112bd629
|
|
| MD5 |
b1edda94e206cd95ff53725279097507
|
|
| BLAKE2b-256 |
d935fcacb330557d55b585739b71768331008372ab70f95297447d7f84cbf4c0
|