Loading...
在办公自动化中有一个场景会经常用到,及时使用企业微信机器人发哦那个图片,这个我将范例分享给大家。import requests def send_image_to_wechat(image_path, robot_key, proxy_host, proxy_port): with open(image_path, 'rb') as file: data = fil...
如何监控网站状态群里有朋友问怎么样监控自己的网站运行情况,我这里把我用的分享给大家,使用Python运行哦。# -*- coding: utf8 -*- import sys import os sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)) + "/..") import logging i...