Python下發送定時消息給微信好友


 1 """
 2 Description:時間可以改長一點  一分鍾一個
 3 Author:Nod
 4 Date:
 5 Record:
 6 #---------------------------------v1-----------------------------------#
 7 """
 8 
 9 
10 
11 from __future__ import unicode_literals
12 from threading import Timer
13 from wxpy import *
14 import requests
15 
16 bot = Bot()
17 
18 # linux執行登陸請調用下面的這句
19  #bot = Bot(console_qr=2,cache_path="botoo.pkl")
20 #獲取金山詞霸每日一句,英文和翻譯
21 def get_news():
22     url = "http://open.iciba.com/dsapi/"
23     r = requests.get(url)
24     content = r.json()['content']
25     note = r.json()['note']
26     return content, note
27 
28 def send_news():
29    try:
30      contents = get_news()
31 
32    # 你朋友的微信備注,請注意最好你的好友備注只有1個
33 
34      my_friend = bot.friends().search(u'季學遠')[0]
35      my_friend.send(contents[0])
36      my_friend.send(contents[1])
37      my_friend.send(u"Have a good one!")
38      # 每86400秒(1天),發送1次
39      t = Timer(86400, send_news)
40      t.start()
41    except:
42 
43 
44 
45        # 你的微信名稱,不是微信帳號。
46 
47         my_friend = bot.friends().search('季學遠')[0]
48         my_friend.send(u"今天消息發送失敗了")
49 
50 if __name__ == "__main__":
51     send_news()

 

 

pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple requests
pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple wxpy


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM