您好,登錄后才能下訂單哦!
本文為大家分享了教你用微信每天給女朋友說(shuō)晚安的python實(shí)戰(zhàn),供大家參考,具體內(nèi)容如下
但凡一件事,稍微有些重復(fù)。我就考慮怎么樣用程序來(lái)實(shí)現(xiàn)它。
這里給各位程序員朋友分享如何每天給朋友定時(shí)微信發(fā)送”晚安“,故事,新聞,等等··· ···
最好運(yùn)行在服務(wù)器上,這樣后臺(tái)掛起來(lái)更方便。
準(zhǔn)備:
微信號(hào)
pip install wxpy
pip install wechat_sender
pip install requests
代碼如下:
#不要抄下源碼就運(yùn)行,你需要改動(dòng)幾個(gè)地方 from __future__ import unicode_literals from threading import Timer from wxpy import * import requests from wechat_sender import Sender #bot = Bot() bot = Bot(console_qr=2,cache_path="botoo.pkl") #這里的二維碼是用像素的形式打印出來(lái)!,如果你在win環(huán)境上運(yùn)行,替換為 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] #你朋友的微信名稱,不是備注,也不是微信帳號(hào)。 my_friend.send(get_news1()[0]) my_friend.send(get_news1()[1][5:]) my_friend.send(u"來(lái)自爸爸的心靈雞湯!") t = Timer(86400, send_news) #每86400秒(1天),發(fā)送1次,不用linux的定時(shí)任務(wù)是因?yàn)槊看蔚顷懚夹枰獟呙瓒S碼登陸,很麻煩的一件事,就讓他一直掛著吧 t.start() except: my_friend = bot.friends().search('常念')[0] #你的微信名稱,不是微信帳號(hào)。 my_friend.send(u"今天消息發(fā)送失敗了") if __name__ == "__main__": send_news()
最終效果是這樣的:
總結(jié):
代碼讓生活更美好!
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。