摘要:
schedule模块用法 1 import schedule 2 import time 3 4 def test(): 5 print("I'm working...") 6 def test2(): 7 print("I'm working... in job2") 8 9 # 每10分钟执行一 阅读全文
摘要:
pip install wxpy pip install schedule Timer实现定时 wxpy是专门用于python处理个人用户微信的相关模块,这个模块可以查看朋友、查看群组、发信息、公众号操作等等,功能非常强大。 阅读全文
摘要:
对方发送过来的消息,我们通过dict进行保存,记录消息id和对应的消息内容,当对方撤回消息的时候,我们根据检测到的消息id,找到对应的dict中的消息内容,实现撤回的消息精准复原。 撤回的消息发送到文件传输助手 撤回的消息发送到原处 阅读全文
摘要:
schedule实现定时 1 import requests 2 from requests import exceptions 3 from urllib.request import urlopen 4 from bs4 import BeautifulSoup 5 import re 6 from wxpy import * 7 import schedule 8... 阅读全文
摘要:
利用微信官方提供的开放API itchat库制作的微信聊天机器人 安装itchat,request模块,利用图灵接口 阅读全文