Python之微信-微信機器人

一 簡介

wxpy基於itchat,使用了 Web 微信的通信協議,,經過大量接口優化提高了模塊的易用性,並進行豐富的功能擴展。實現了微信登陸、收發消息、搜索好友、數據統計等功能。

總而言之,可用來實現各類微信我的號的自動化操做。(http://wxpy.readthedocs.io/zh/latest/bot.html)

安裝:wxpy模塊(支持 Python 3.4-3.+ 以及 2.7 版本):pip3 install wxpy html

安裝 pillow模塊:pip3 install pillowweb

安裝 pyecharts模塊:pip3 install pyecharts==0.5.1json

二 登陸微信

1 、 掃碼登陸微信api

from wxpy import *

bot = Bot()

二、cache_path=True緩存

運行上面的程序,會彈出二維碼,用手機微信掃一掃便可實現登陸。

但上面的程序有一個缺點,每次運行都要掃二維碼。不過wxpy很是貼心地提供了緩存的選項,用於將登陸信息保存下來,就不用每次都掃二維碼,以下微信

bot = Bot(cache_path=True) # 必須先登陸過一次之後纔可使用緩存

三 微信好友男女比例

from wxpy import Bot
from pyecharts import Pie
import webbrowser

# 實例化一個微信機器人對象
bot = Bot()

# 獲取到微信的全部好友
friends = bot.friends()

# 設定男性\女性\位置性別好友名稱
attr = ['男友', '女友', '人妖']

# 初始化對應好友數量
value = [0, 0, 0]

# 遍歷全部的好友,判斷這個好友是男性仍是女性
for friend in friends:
    if friend.sex == 1:
        value[0] += 1
    elif friend.sex == 2:
        value[1] += 1
    else:
        value[2] += 1

# 實例化一個餅狀圖對象
pie = Pie('nick的好友們!')

# 圖表名稱str,屬性名稱list,屬性所對應的值list,is_label_show是否如今標籤
pie.add('', attr, value, is_label_show=True)

# 生成一個html文件
pie.render('friends.html')

# 打開html文件
webbrowser.open('friends.html')

四 微信好友地域分佈

顯示中國地圖,須要裝中國地圖模塊:echarts

全球國家地圖: echarts-countries-pypkg (1.9MB): 世界地圖和 213 個國家,包括中國地圖
中國省級地圖: echarts-china-provinces-pypkg (730KB):23 個省,5 個自治區
中國市級地圖: echarts-china-cities-pypkg (3.8MB):370 箇中國城市
中國縣區級地圖: echarts-china-counties-pypkg (4.1MB):2882 箇中國縣·區
中國區域地圖: echarts-china-misc-pypkg (148KB):11 箇中國區域地圖,好比華南、華北。

特別註明,中國地圖在 echarts-countries-pypkg 裏。須要這些地圖的朋友,能夠安裝如下軟件:
pip3 install echarts-countries-pypk
pip3 install echarts-china-provinces-pypkg
pip3 install echarts-china-cities-pypkg
pip3 install echarts-china-counties-pypkg
pip3 install echarts-china-misc-pypkg
post

 
from wxpy import *
from pyecharts import Map
import webbrowser
bot=Bot(cache_path=True)

friends=bot.friends()

area_dic={}#定義一個字典,用來存放省市以及省市人數
for friend in friends:
    if friend.province not in area_dic:
        area_dic[friend.province]=1
    else:
        area_dic[friend.province]+=1

attr = area_dic.keys()
value = area_dic.values()

map = Map("好朋友們的地域分佈", width=1200, height=600)
map.add(
    "好友地域分佈",
    attr,
    value,
    maptype='china',
    is_visualmap=True, #結合體VisualMap

)
#is_visualmap -> bool 是否使用視覺映射組件
#
map.render('area.html')

webbrowser.open("area.html")
 

五 微信聊天機器人

一、爲微信傳輸助手傳送消息測試

這裏的file_helper就是微信的文件傳輸助手,咱們給文件傳輸助手發送一條消息,能夠在手機端的文件傳輸助手中收到括號內的消息優化

bot.file_helper.send('nick say hello')

二、收發消息@bot.register()

 
from wxpy import *
bot=Bot(cache_path=True)

@bot.register()
def recv_send_msg(recv_msg):
    print('收到的消息:',recv_msg.text) # recv_msg.text取得文本
    return '自動回覆:%s' %recv_msg.text

# 進入Python命令行,讓程序保持運行
embed()
 

三、自動給老婆回覆信息

當你在網吧吃着雞,操做騷出天際時,你老婆打電話讓你回家吃飯,此時你怎麼辦。。。

 
from wxpy import *
bot=Bot(cache_path=True)

girl_friend=bot.search('女友的備註名稱')[0]
print(girl_friend)

@bot.register() # 接收從指定好友發來的消息,發送者即recv_msg.sender爲指定好友girl_friend
def recv_send_msg(recv_msg):
    print('收到的消息:',recv_msg.text) # recv_msg.text取得文本
    if recv_msg.sender == girl_friend:
        recv_msg.forward(bot.file_helper,prefix='老婆留言: ') #在文件傳輸助手裏留一份,方便本身忙完了回頭查看
        ms='老婆最美麗,我對老婆的愛如滔滔江水,連綿不絕'
        print('>>>給老婆回覆的:', ms)
        return  ms#給老婆回一份

embed()
 

四、從微信羣裏定位好友之拍老闆馬屁

 
from wxpy import *
bot=Bot(cache_path=True)

company_group=bot.groups().search('羣名字')[0]

boss=company_group.search('老闆名字')[0]


@bot.register(chats=company_group) #接收從指定羣發來的消息,發送者即recv_msg.sender爲組
def recv_send_msg(recv_msg):
    print('收到的消息:',recv_msg.text)
    if recv_msg.member == boss:
        #這裏不用recv_msg.render 由於render是羣的名字
        recv_msg.forward(bot.file_helper,prefix='老闆發言: ')
        return '老闆說的好有道理,深受啓發'

embed()
 

五、聊天機器人

給全部人自動回覆

 
import json
import requests
from wxpy import *
bot = Bot(cache_path=True)

# 調用圖靈機器人API,發送消息並得到機器人的回覆
def auto_reply(text):
    url = "http://www.tuling123.com/openapi/api"
    api_key = "9df516a74fc443769b233b01e8536a42"
    payload = {
        "key": api_key,
        "info": text,
    }
    r = requests.post(url, data=json.dumps(payload))
    result = json.loads(r.content)
    return "[來自智能機器人] " + result["text"]


@bot.register()
def forward_message(msg):
    return auto_reply(msg.text)

embed()
 

給指定的羣回覆

 
import json
import requests
from wxpy import *
bot = Bot(cache_path=False)

group=bot.groups().search('羣名字')[0]
print(group)

# 調用圖靈機器人API,發送消息並得到機器人的回覆
def auto_reply(text):
    url = "http://www.tuling123.com/openapi/api"
    api_key = "9d602fe417464cd18beb2083d064bee6"
    payload = {
        "key": api_key,
        "info": text,
    }
    r = requests.post(url, data=json.dumps(payload))
    result = json.loads(r.content)
    return "[來自智能機器人] " + result["text"]


@bot.register(chats=group)
def forward_message(msg):
    return auto_reply(msg.text)

embed()
 

給指定的人回覆

 
import requests
from wxpy import *
bot = Bot( cache_path=True)

girl_friend=bot.search('名字r')[0]

# 調用圖靈機器人API,發送消息並得到機器人的回覆
def auto_reply(text):
    url = "http://www.tuling123.com/openapi/api"
    api_key = "申請圖靈機器人獲取key值放到這裏"
    payload = {
        "key": api_key,
        "info": text,
    }
    r = requests.post(url, data=json.dumps(payload))
    result = json.loads(r.content)
    return "[微信測試,請忽略] " + result["text"]


@bot.register()
def forward_message(msg):
    if msg.sender == girl_friend:
        return auto_reply(msg.text)

embed()
相關文章
相關標籤/搜索