1.Python——給你最愛的心靈雞湯
阿新 • • 發佈:2019-02-11
1.安裝wxpy requests
sudo pip install requestssudo pip install wxpy
1.2 wxpy 登陸
wxpy 使用起來非常簡單,我們只需要建立一個bot 物件,程式執行後,會彈出二維碼,掃描二維碼後顯示登陸成功。
下述程式碼在登陸完成後,會向我們的檔案傳輸助手傳送一個“hello world!”。(每個程式都需要一個hello world)
from wxpy import*bot = Bot()bot.file_helper.send('hello world!')
print("end")
1.3 你的雞湯
from__future__import
defget_news(): url ="http://open.iciba.com/dsapi" r = requests.get(url) contents = r.json()['content'] translation = r.json()['translation']return contents, translation
defsend_news():try:# 登陸你的微信賬號,會彈出網頁二維碼,掃描即可 itchat.auto_login(
defmain(): send_news()
if__name__=='__main__':main()