python打招呼的代码,Python项目:用微信自动给女朋友每天一句英语问候

 2023-09-26 阅读 15 评论 0

摘要:from __future__ import unicode_literals from threading import Timer from wxpy import * import requestsbot = Bot() #登陆微信# linux执行登陆请调用下面的这句 #bot = Bot(console_qr=2,cache_path="botoo.pkl")def get_English_news():"&
from __future__ import unicode_literals
from threading import Timer
from wxpy import *
import requestsbot = Bot() #登陆微信# linux执行登陆请调用下面的这句
#bot = Bot(console_qr=2,cache_path="botoo.pkl")def get_English_news():"""获取金山词霸每日一句,英文和翻译http://www.iciba.com/"""url = "http://open.iciba.com/dsapi/"r = requests.get(url)content = r.json()['content']note = r.json()['note']return content, notedef send_English_news():contents = get_English_news()# 你朋友的微信名称,就是你给朋友备注的名字my_friend = bot.friends().search(u'hxfrau')[0]my_friend.send(u'Learn English day by day')my_friend.send(contents[0])my_friend.send(contents[1])my_friend.send(u"from your boy")#my_friend.send(u"If I let you feel not good, please let me know. I will stop this action. Thx")# 每86400秒(1天),发送1次t = Timer(86400, send_English_news)t.start()if __name__ == "__main__":send_English_news()

版权声明:本站所有资料均为网友推荐收集整理而来,仅供学习和研究交流使用。

原文链接:https://hbdhgg.com/1/98050.html

发表评论:

本站为非赢利网站,部分文章来源或改编自互联网及其他公众平台,主要目的在于分享信息,版权归原作者所有,内容仅供读者参考,如有侵权请联系我们删除!

Copyright © 2022 匯編語言學習筆記 Inc. 保留所有权利。

底部版权信息