但凡一件事,稍微有些重複,我就考慮怎麼樣用程式來實現它。
最好執行在伺服器上,這樣後台掛起來更方便。
準備:
pip installwxpy
pip installrequests
**如下:
fromfutureimport unicode_literals
from threading import timer
bot = bot()
from wxpy import *
import requests
#bot = bot(console_qr=2,cache_path=」botoo.pkl」)
def get_news():
url = 「
「」「獲取金山詞霸每日一句,英文和翻譯」「」
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(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()
ifname== 「main「:
最終效果是這樣的:
python實戰 教你用微信每天給女朋友說晚安
但凡一件事,稍微有些重複。我就考慮怎麼樣用程式來實現它。準備 pip installwxpy pip installrequests 如下 不要抄下原始碼就執行,你需要改動幾個地方 from future import unicode literals from threading import t...
520表白神器 教你用微信每天給TA說晚安
又是一年虐狗日,有男票或女票的,禮物準備好沒?今天大家準備了乙份520專屬告白文案,可以用在戀情繼續的告白上 也可以用在脫單告白上哦!拿去吧,不用謝,誰讓你是我的小可愛呢!每天傳送的訊息格式如下 message 親愛的 早上好,今天是你和 koc 相戀的第 天 今天他想對你說的話是 最後也是最重要的...
手把手教你用Python分析微信聊天內容
在開始之前,先簡單說下我為何會寫這篇文章?所以我向領導提議,用 來實現這個工作.目前,上面的這個流程我已經用 實現了,為了記錄實現的過程,就有了這篇文章.希望對遇到類似需求的您,能夠有所幫助.本文目錄 介紹需要用到的工具 用python讀取聊天資料 總結俗話說,工欲善其事,必先利其器.合適的工具,往...