本文主要是介绍使用python给女朋友自动发晚安,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
最近看到一篇微信推文,是关于python小程序的,就自己动手实现了一遍,在此记录一下:
from __future__ import unicode_literalsfrom threading import Timerfrom wxpy import *import requestsbot = Bot()# bot = Bot(console_qr=2, cache_path='botoo.pkl') #这里的二维码是用像素的形式打印出来!,如果你在win环境上运行,替换为bot=Bot()def get_news1():# 获取金山词霸每日一句,英文和翻译url = "http://open.iciba.com/dsapi/"r = requests.get(url)contents = r.json()['content']translation= r.json()['translation']return contents, translationdef send_news():try:my_friend = bot.friends().search(u"Fantasy")[0] # 你朋友的微信昵称,不是备注,也不是微信帐号。my_friend.send(get_news1()[0]) # 此处获取的是get_news1()方法返回列表的第一部分内容my_friend.send(get_news1()[1][5:]) #词霸小编:野草遮不住太阳的光芒,……,即去掉词霸小编:my_friend.send(u"I Love You!")t = Timer(10, send_news) # 每86400秒(1天),发送1次,不用linux的定时任务是因为每次登陆都需要扫描二维码登陆,很麻烦的一件事,就让他一直挂着吧t.start()except:my_friend = bot.friends().search("Blueberry")[0] # 你的微信昵称,不是微信帐号。my_friend.send(u"今天消息发送失败了")if __name__ == "__main__":send_news()
首先需要安装一个wxpy包,使用pip install wxpy 命令即可,然后更改你的微信昵称和接收信息方的微信昵称。
这篇关于使用python给女朋友自动发晚安的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!