您好,登錄后才能下訂單哦!
itchat模塊怎么在python中使用?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
import requests import json import itchat from threading import Timer global CITY_NAME CITY_NAME = "北京" headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36' } def find_weather(): # 獲取天氣 weather_url = 'http://wthrcdn.etouch.cn/weather_mini?city={}'.format(CITY_NAME) city_response = requests.get(weather_url, headers=headers) return json.loads(city_response.text) def reform_fl(str_fl): new_str = str_fl.split("[")[2].split("]")[0] if new_str.startswith("<"): result = new_str.split("<")[1] else: result = new_str return result def send_news(str): itchat.auto_login() # 彈出一張圖片二維碼,掃描登錄網頁微信 person= itchat.search_friends(name='一只可愛的小奶貓') # 選擇給誰發送,name是他的備注 mylover = person[0]["UserName"] itchat.send(str, toUserName=mylover) Timer(86400, send_news).start() # 每隔86400秒發送一次,每天發一次 if __name__ == "__main__": weather_info = find_weather() forecast_weather = weather_info.get('data').get('forecast') ganmao = weather_info.get('data').get('ganmao') str_1 = '今天是:' + forecast_weather[0].get('date') + '\n' \ + '最高溫度:' + forecast_weather[0].get('high') + '\n' \ + '最低溫度:' + forecast_weather[0].get('low') + '\n' \ + '風向:' + forecast_weather[0].get('fengxiang') + '\n' \ + '風力:' + reform_fl(forecast_weather[0].get('fengli')) + '\n' \ + '天氣狀況:' + forecast_weather[0].get('type') + '\n' str_2 = "早安親愛滴:%s\n%s最近%s" % (str_1,CITY_NAME, ganmao) send_news(str_2)
關于itchat模塊怎么在python中使用問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。