python:第三方模块的使用(以微信为例)

在添加第三方库(itchat)的基础上做以下操作。(详见上一篇博客点击可查看)
1.通过python给微信助手发消息

import itchat

itchat.auto_login()	#生成认证二维码

itchat.send('AAA', toUserName='filehelper')

运行后会生成一个二维码,扫码后,文件传输助手会接收到信息‘AAA‘。
2.查看微信好友信息

import itchat

itchat.auto_login()
	
friends = itchat.get_friends()
print(friends)

3.统计微信好友性别

import itchat
info = {}

for friend in friends[1:]:
    if friend['Sex'] == 1:
        info['male'] = info.get('male',0) + 1
    elif friend['Sex'] == 2:
        info['female'] = info.get('female',0) + 1
    else:
        info['other'] = info.get('other',0) + 1

print(info)

练习:
给文件助手发送消息,执行发送的内容
1.如果执行成功,显示执行结果
2.如果执行失败,显示执行失败

import itchat
import os

@itchat.msg_register(itchat.content.TEXT)
def text_reply(msg):
    if msg['ToUserName'] == 'filehelper':
        #获取要执行命令的内容
        command = msg['Content']
        print(command)
        #让电脑执行命令代码
        #如果执行成功,返回值为0
        if os.system(command) == 0:
            res = os.popen(command).read()
            result = '【返回值】 - 命令执行成功,执行结果:\n' + res
            itchat.send(result,'filehelper')
        #命令执行失败,请重新输入命令
        else:
            result = '【返回值】 - 命令%s执行失败,请重试' %command
            itchat.send(result,'filehelper')

itchat.auto_login()
itchat.run()

你可能感兴趣的:(python)