溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用wxpy怎么自動發(fā)送微信消息

發(fā)布時間:2021-03-20 16:33:36 來源:億速云 閱讀:187 作者:Leah 欄目:開發(fā)技術(shù)

使用wxpy怎么自動發(fā)送微信消息?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

思路整理:1、進入心靈雞湯網(wǎng)頁,使用python獲取心靈雞湯內(nèi)容

     2、登陸微信,找到需要發(fā)送的朋友

     3、發(fā)送獲取的內(nèi)容

實現(xiàn)如下:

使用wxpy怎么自動發(fā)送微信消息

2、登陸微信,搜索朋友,進行發(fā)送

import requests
import wxpy
from bs4 import BeautifulSoup

# 微信網(wǎng)頁登陸
bot = wxpy.Bot(console_qr=2,cache_path='botoo.pkl')

# 獲取心靈雞湯中的最新內(nèi)容,可以參考其他爬蟲隨便查看怎么爬蟲
def get_msg():
  url = 'http://www.59xihuan.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

# 給朋友發(fā)送消息
def send_msg():
  try:
    # 添加朋友微信昵稱
    friend = bot.friends().search(u'xxxxx')[0]
    friend.send(get_msg())
    29   except:pass
if __name__ == '__main__':
  send_msg()

其他發(fā)送類型格式:

  •   發(fā)送文本消息:friend.send('文本消息')

  •   發(fā)送圖片消息:friend.send_image('圖片消息.jpg')

  •   發(fā)送視頻消息:friend.send_video('視頻消息.mov')

  •   發(fā)送文件消息:friend.send_file('文件消息.zip')

  •   以動態(tài)的方式發(fā)送圖片:friend.send('@img@圖片消息.jpg')

看完上述內(nèi)容,你們掌握使用wxpy怎么自動發(fā)送微信消息的方法了嗎?如果還想學到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI