Python使用itchat模块实现简单的微信控制电脑功能示例
作者:zhizunyu2009 时间:2023-01-06 14:56:44
本文实例讲述了Python使用itchat模块实现简单的微信控制电脑功能。分享给大家供大家参考,具体如下:
#!/usr/bin/python
#coding=UTF-8
import requests, json
import itchat
import os,time,datetime
from PIL import ImageGrab
from itchat.content import *
app_dir = r''#打开一个程序,填写exe文件的绝对路径
imgdir = r'E:\test.jpg'
def file_edit(wr_str):
f1 = open(r'E:\downloadlog.txt','a')
f1.write(wr_str+'\n')
f1.close()
def pscr():#截取屏幕,保存图片到指定目录
im = ImageGrab.grab()
im.save(imgdir,'jpeg')
@itchat.msg_register([TEXT])
def text_reply(msg):
if u"开始" in msg['Content']:
itchat.send(u"收到开始指令,请稍等", msg['FromUserName'])
file_edit(str(datetime.datetime.now()))
time.sleep(3)
os.startfile(app_dir)
time.sleep(5)
itchat.send(u"已开始", msg['FromUserName'])
elif u'进度' in msg['Content']:
itchat.send(u"收到指令,请稍等", msg['FromUserName'])
pscr()
itchat.send(u"请接收图片", msg['FromUserName'])
itchat.send_image(imgdir.decode('utf-8'),msg['FromUserName'])
else:
pass
itchat.auto_login()
itchat.run()
发送其他消息
给自己发送消息只需要发出消息,不指定发送者,默认发给自己(登陆者)
itchat.send_msg('nice to meet you')
发送图片,ToUser不指定时发给自己
itchat.send_image(ImageName.decode('utf-8'),ToUser) # 发送图片
发送视频
itchat.send_video(VideoName.decode('utf-8'),ToUser) # 发送图片
发送文件
itchat.send_file(path.decode('utf-8')) # 图片(文件
希望本文所述对大家Python程序设计有所帮助。
来源:https://blog.csdn.net/zhizunyu2009/article/details/77932796
标签:Python,itchat,微信
0
投稿
猜你喜欢
Python中的二维数组实例(list与numpy.array)
2021-01-15 02:21:14
根据表中数据生成insert语句的存储过程
2008-11-10 12:13:00
win10从零安装配置pytorch全过程图文详解
2022-07-01 20:54:55
ASP怎么谈到应用到类的?
2008-03-10 11:21:00
Windows下MySQL8.0.11社区绿色版安装步骤图解
2024-01-14 23:02:34
python实现代码审查自动回复消息
2021-09-15 22:20:46
JS中如何实现点击a标签返回页面顶部的问题
2024-04-19 10:14:19
Python处理文本文件中控制字符的方法
2022-02-24 09:16:05
Pygame transform模块入门介绍
2023-11-27 11:31:03
python批量替换多文件字符串问题详解
2023-05-08 23:48:06
IP地址正则表达式匹配方法
2023-06-11 18:58:03
Python创建一个空的dataframe,并循环赋值的方法
2022-03-09 22:25:41
asp学习入门基本语法知识
2007-11-07 14:02:00
python贪吃蛇核心功能实现下
2021-08-23 00:32:37
Python缓存技术实现过程详解
2023-08-03 12:31:30
Python中__init__.py文件的作用详解
2021-12-22 13:04:05
python实现提取百度搜索结果的方法
2021-05-13 20:27:21
vue中使用ueditor富文本编辑器
2024-05-09 10:52:02
OpenCV学习之图像加噪与滤波的实现详解
2022-09-20 04:40:57
python处理xml文件的方法小结
2023-10-28 01:53:33