您好,登錄后才能下訂單哦!
小編給大家分享一下如何使用python實現微信定時每天和女友發送消息,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
準備:
pip install wxpy pip install requests
實現代碼:
from __future__ import unicode_literals from threading import Timer from wxpy import * import requests import random bot = Bot() # linux執行登陸請調用下面的這句 #bot = Bot(console_qr=2,cache_path="botoo.pkl") def get_news(): """獲取金山詞霸每日一句,英文和翻譯""" url = "http://open.iciba.com/dsapi/" r = requests.get(url) content = r.json()['content'] note = r.json()['note'] return content, note def send_news(): try: contents = get_news() # 你朋友的微信名稱,不是備注,也不是微信帳號。 my_friend = bot.friends().search('fairy')[0] my_friend.send(contents[0]) my_friend.send(contents[1]) my_friend.send(u"晚安") # 每86400秒(1天),發送1次 t = Timer(86400, send_news) # 為了防止時間太固定,于是決定對其加上隨機數 ran_int = random.randint(0,100) t = Timer(86400+ran_int,send_news) t.start() except: # 你的微信名稱,不是微信帳號。 my_friend = bot.friends().search('威風大俠')[0] my_friend.send(u"今天消息發送失敗了") if __name__ == "__main__": send_news()
效果截圖:
看完了這篇文章,相信你對“如何使用python實現微信定時每天和女友發送消息”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。