python實戰===教你用微信每天給女朋友說晚安
但凡一件事,稍微有些重復。我就考慮怎么樣用程序來實現它。
這里給各位程序員朋友分享如何每天給朋友定時微信發送”晚安“,故事,新聞,等等··· ···
最好運行在服務器上,這樣后台掛起來更方便。
准備:
微信號
pip install wxpy
pip install requests
代碼如下:
#不要抄下源碼就運行,你需要改動幾個地方 from __future__ import unicode_literals from threading import Timer from wxpy import *
import requests
#bot = Bot() bot = Bot(console_qr=2,cache_path="botoo.pkl") #這里的二維碼是用像素的形式打印出來!,如果你在win環境上運行,替換為 bot=Bot() def get_news1(): #獲取金山詞霸每日一句,英文和翻譯 url = "http://open.iciba.com/dsapi/" r = requests.get(url) contents = r.json()['content'] translation= r.json()['translation'] return contents,translation
def send_news(): try: my_friend = bot.friends().search(u'徒手敬歲月')[0] #你朋友的微信名稱,不是備注,也不是微信帳號。 my_friend.send(get_news1()[0]) my_friend.send(get_news1()[1][5:]) my_friend.send(u"來自爸爸的心靈雞湯!") t = Timer(86400, send_news) #每86400秒(1天),發送1次,不用linux的定時任務是因為每次登陸都需要掃描二維碼登陸,很麻煩的一件事,就讓他一直掛着吧 t.start() except: my_friend = bot.friends().search('常念')[0] #你的微信名稱,不是微信帳號。 my_friend.send(u"今天消息發送失敗了") if __name__ == "__main__": send_news()
最終效果是這樣的:
總結:
代碼讓生活更美好!