python實戰 教你用微信每天給女朋友說晚安

2022-08-31 03:48:06 字數 2343 閱讀 5797

但凡一件事,稍微有些重複。我就考慮怎麼樣用程式來實現它。

準備:pip installwxpy

pip installrequests

**如下:

#不要抄下原始碼就執行,你需要改動幾個地方

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 = ""

r = requests.get(url)

contents = r.json()['content']

translation= r.json()['translation']

return contents,translation

def send_news():

try:

my_friend.send(get_news1()[0])

my_friend.send(get_news1()[1][5:])

my_friend.send(u"來自爸爸的心靈雞湯!")

t.start()

except:

my_friend.send(u"今天訊息傳送失敗了")

if __name__ == "__main__":

send_news()

最終效果是這樣的:

總結:**讓生活更美好!

但凡一件事,稍微有些重複。我就考慮怎麼樣用程式來實現它。

準備:pip installwxpy

pip installrequests

**如下:

#不要抄下原始碼就執行,你需要改動幾個地方

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 = ""

r = requests.get(url)

contents = r.json()['content']

translation= r.json()['translation']

return contents,translation

def send_news():

try:

my_friend.send(get_news1()[0])

my_friend.send(get_news1()[1][5:])

my_friend.send(u"來自爸爸的心靈雞湯!")

t.start()

except:

my_friend.send(u"今天訊息傳送失敗了")

if __name__ == "__main__":

send_news()

最終效果是這樣的:

總結:**讓生活更美好!

python實戰,教你用微信每天給女朋友說晚安

但凡一件事,稍微有些重複,我就考慮怎麼樣用程式來實現它。最好執行在伺服器上,這樣後台掛起來更方便。準備 pip installwxpy pip installrequests 如下 fromfutureimport unicode literals from threading import tim...

520表白神器 教你用微信每天給TA說晚安

又是一年虐狗日,有男票或女票的,禮物準備好沒?今天大家準備了乙份520專屬告白文案,可以用在戀情繼續的告白上 也可以用在脫單告白上哦!拿去吧,不用謝,誰讓你是我的小可愛呢!每天傳送的訊息格式如下 message 親愛的 早上好,今天是你和 koc 相戀的第 天 今天他想對你說的話是 最後也是最重要的...

手把手教你用Python分析微信聊天內容

在開始之前,先簡單說下我為何會寫這篇文章?所以我向領導提議,用 來實現這個工作.目前,上面的這個流程我已經用 實現了,為了記錄實現的過程,就有了這篇文章.希望對遇到類似需求的您,能夠有所幫助.本文目錄 介紹需要用到的工具 用python讀取聊天資料 總結俗話說,工欲善其事,必先利其器.合適的工具,往...