Skip to main content

A package to make dingbot easily to use

Project description

pydingbot

Build Status PyPI version contributions welcome

pydingbot 是一个让钉钉机器人更好用的包。

安装

你可以用 pip 来安装pydingbot

$ pip install pydingbot

使用

在使用pydingbot之前,首先你需要在钉钉群里添加你的自定义机器人,安全设置选择加签,然后点开“机器人设置”找到 webhooksecret(秘钥),这些是使用机器人所必须的信息,webhook和secret的来源如图所示:

config

简单示例

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pydingbot-0.0.3.tar.gz (4.3 kB view hashes)

Uploaded Source

Built Distribution

pydingbot-0.0.3-py3-none-any.whl (4.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page