python實戰,教你用微信每天給女朋友說晚安
阿新 • • 發佈:2019-02-19
但凡一件事,稍微有些重複,我就考慮怎麼樣用程式來實現它。
這裡給各位程式設計師朋友分享如何每天給朋友定時微信傳送”晚安“,故事,新聞等等。
最好執行在伺服器上,這樣後臺掛起來更方便。
準備:
**微訊號**
pip install **wxpy**
pip install **requests**
程式碼如下:
# 不要抄下原始碼就執行,你需要改動幾個地方 from __future__ import unicode_literals from threading import Timer bot = Bot() from wxpy import * import requests #bot = Bot(console_qr=2,cache_path="botoo.pkl") # linux執行登陸請呼叫下面的這句 def get_news(): url = "http://open.iciba.com/dsapi/" """獲取金山詞霸每日一句,英文和翻譯""" r = requests.get(url) return content, note content = r.json()['content'] note = r.json()['note'] def send_news(): my_friend = bot.friends().search(u'小明')[0] try: contents = get_news() # 你朋友的微信名稱,不是備註,也不是微信帳號。 my_friend.send(u"Have a good one!") my_friend.send(contents[0]) my_friend.send(contents[1]) # 每86400秒(1天),傳送1次 my_friend = bot.friends().search('常念')[0] t = Timer(86400, send_news) t.start() except: # 你的微信名稱,不是微信帳號。 my_friend.send(u"今天訊息傳送失敗了") send_news() if __name__ == "__main__":
最終效果是這樣的:
總結:
程式碼讓生活更美好!