python教你用微信每天給女朋友說晚安
阿新 • • 發佈:2018-05-01
threading 每次 r.js 圖片 return AC code on() pre
但凡一件事,稍微有些重復。我就考慮怎麽樣用程序來實現它。
這裏給各位程序員朋友分享如何每天給朋友定時微信發送”晚安“,故事,新聞,等等··· ···
最好運行在服務器上,這樣後臺掛起來更方便。
準備:
微信號
pip install wxpy
pip install requests
代碼如下:
# 不要抄下源碼就運行,你需要改動幾個地方
from __future__ import unicode_literals
from threading import Timer
from wxpy import *
import requests
# bot = Bot()
# 這裏的二維碼是用像素的形式打印出來!,如果你在win環境上運行,替換為 bot=Bot()
bot = Bot(console_qr=2, cache_path="botoo.pkl")
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"來自周小董的心靈雞湯!")
# 每86400秒(1天),發送1次,不用linux的定時任務是因為每次登陸都需要掃描二維碼登陸,很麻煩的一件事,就讓他一直掛著吧
t = Timer(86400,send_news)
t.start()
except:
my_friend = bot.friends().search(‘天馬行空@2‘)[0]# 你的微信名稱,不是微信帳號。
my_friend.send(u"今天消息發送失敗了")
if __name__ == "__main__":
send_news()
最終效果是這樣的:
總結:
代碼讓生活更美好!
python教你用微信每天給女朋友說晚安