Send dingtalk webhook with simple interface and load balance
Project description
Install
pip3 install ccdingtalk --upgrade --user
Send Message using CCDingTalkWebhookMessage
from ccdingtalk import CCDingTalkWebhookMessage
chat_bot = CCDingTalkWebhookMessage(webhook_url)
r = chat_bot.send_text(msg=msg, at_mobiles=at_mobiles)
Send with several webhooks (auto load balance) using CCDingTalkWebhookMessageQueue
from ccdingtalk import CCDingTalkWebhookMessageQueue
def __webhook_urls() -> list:
api = 'https://oapi.dingtalk.com/robot/send?access_token='
tokens = [
'token1',
'token2',
'token3',
'token4',
'token5',
]
results = []
for token in tokens:
results.append(api + token)
return results
__shared_msg_queue = CCDingTalkWebhookMessageQueue(__webhook_urls())
def send_ding_msg(msg: str, at_mobile=''):
__shared_msg_queue.add_message(msg, [at_mobile])
Reply Message using CCDingTalkReply
from ccdingtalk import CCDingTalkReply
class DingBotRequestHandler(BaseHTTPRequestHandler):
def do_GET(self):
response = CCDingTalkReply.text_msg("This is GET request")
response_bytes = response.encode()
self.send_header("Content-Type", "text/html; charset=utf-8")
self.send_header("Content-Length", str(len(response_bytes)))
self.end_headers()
self.wfile.write(response_bytes)
def do_POST(self):
response = CCDingTalkReply.text_msg("This is POST request")
response_bytes = response.encode()
self.send_header("Content-Type", "text/html; charset=utf-8")
self.send_header("Content-Length", str(len(response_bytes)))
self.end_headers()
self.wfile.write(response_bytes)
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
ccdingtalk-1.5.tar.gz
(5.7 kB
view details)
File details
Details for the file ccdingtalk-1.5.tar.gz
.
File metadata
- Download URL: ccdingtalk-1.5.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 279716eb3c520356d06c92d326d6e2c64a06070175380ae3abe49ca6a79602b0 |
|
MD5 | 0d46168fc5483498f98614c67158f597 |
|
BLAKE2b-256 | a8c5e50a33c07c89cb2d42ba97671af267577b6634447a7d53b5bba262e09426 |