#!/usr/bin/python3 #-*-coding: utf-8-*- # by QianFeng.newrain # ''' Welcome QianFeng cloud computing ''' import requests import json import sys import os import datetime import sys headers = {'Content-Type': 'application/json;charset=utf-8'}4 # 需要修改,钉钉群助手中获取 api_url = "" def msg(text): json_text= { "msgtype": "text", "at": { "atMobiles": [ "all" ], "isAtAll": False }, "text": { "content": text } } print(requests.post(api_url,json.dumps(json_text),headers=headers).content) msg("报警"+'\n'+sys.argv[1])