使用python給女朋友自動發晚安
阿新 • • 發佈:2019-02-12
最近看到一篇微信推文,是關於python小程式的,就自己動手實現了一遍,在此記錄一下:
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"Fantasy")[0] # 你朋友的微信暱稱,不是備註,也不是微信帳號。
my_friend.send(get_news1()[0 ]) # 此處獲取的是get_news1()方法返回列表的第一部分內容
my_friend.send(get_news1()[1][5:]) #詞霸小編:野草遮不住太陽的光芒,……,即去掉詞霸小編:
my_friend.send(u"I Love You!")
t = Timer(10, send_news) # 每86400秒(1天),傳送1次,不用linux的定時任務是因為每次登陸都需要掃描二維碼登陸,很麻煩的一件事,就讓他一直掛著吧
t.start()
except:
my_friend = bot.friends().search("Blueberry" )[0] # 你的微信暱稱,不是微信帳號。
my_friend.send(u"今天訊息傳送失敗了")
if __name__ == "__main__":
send_news()
首先需要安裝一個wxpy包,使用pip install wxpy 命令即可,然後更改你的微信暱稱和接收資訊方的微信暱稱。