使用wxpy實現自動傳送微信訊息功能

2022-09-26 20:21:12 字數 983 閱讀 8086

思路整理:1、進入心靈雞湯網頁,使用python獲取心靈雞湯內容

2、登陸微信,找到需要傳送的朋友

3、傳送獲取的內容

1、獲取心靈雞湯的內容

如下圖,獲取第一條雞湯

實現如下:

2、登陸微信,搜尋朋友,進行傳送

import requests

impor程式設計客棧t wxpy

from bs4 import beautifulsoup

# 微信網頁登陸

bot = wxpy.bot(console_qr=2,cache_path='botoo.pkl')

# 獲取心靈雞湯中的最新內容,可以參考其他爬蟲隨便檢視怎麼爬蟲

def get_msg():

url = '程式設計客棧.cn/index_1.html'

h = requests.get(url)

html = h.text

news_bf = beautifulsoup(html,程式設計客棧"html.parser")

msg = news_bf.find('div', class_='pic_text1')

news = msg.text

# print(msg)

# print(news)

return news

# 給朋友傳送訊息

def send_msg():

try:

# 新增朋友微信暱稱

friend = bot.friends().search(u'***xx')[0]

friend.send(get_msg())

29 except:pass

if __name__ == '__main__':

send_msg()

其他傳送型別格式:

朋友收到的訊息:

本文標題: 使用wxpy實現自動傳送微信訊息功能

本文位址: /jiaoben/python/301760.html

python使用 wxpy 簡簡單單實現微信防撤回

import re from wxpy import bot bot cache path xiaohao.pkl bot.register def handlereceivemsg msg raw msg.raw if raw status 4 獲取被撤回訊息的id oldmsgid re.sea...

python使用wxpy輕鬆實現微信防撤回的方法

最近比較閒就隨便瞎看,看到了微信防撤回就順便跟著學著實現一下 使用的是wxpy,安裝方法pip install wxpy 我使用的是python2.7 這樣實現起來比較快,反正也只是練手 首現看了兩個別人實現的 然後看了看wxpy的文件 萌新,順便鍛鍊下看文件 我實現的 import wxpy im...

半自動微信訊息定時傳送

自定義了三個函式,主函式中所使用的 演算法很簡單,如下 至於自動傳送訊息的時間控制,直接使用while迴圈,間隔一定時間檢測一下系統時間,檢測頻率自定 優缺點 優點主要是程式簡單粗暴,原理簡單。缺點就是程式的靈活性差,要更換傳送內容需要需改源 復用性較差。如果進一步優化,有圖形化介面就更好了。請大佬...