资源简介
基于python;
每天可以给指定人发消息;
可以每天整点定时;
代码片段和文件信息
from __future__ import unicode_literals
from threading import Timer
from wxpy import *
import requests
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 translation
def send_news():
try:
my_friend = bot.friends().search(‘dumpling‘)[0]
my_friend.send(get_news1()[0])
my_friend.send(get_news1()[1][5:])
my_friend.send(“Cxs!“)
t = Timer(86400send_news) # 每86400秒(1天),发送1次,不用linux的定时任务是因为每次登陆都需要扫描二维码登陆,很麻烦的一件事,就让他一直挂着吧
t.start()
except:
my_friend = bot.friends().search(‘O_o‘)[0] # 你的微信名称,不是微信帐号。
my_friend.send(u“今天消息发送失败了“)
if __name__ == “__main__“:
send_news()
#https://www.cnblogs.com/jaycekon/archive/2017/07/17/WxpyRedis.html
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1018 2018-04-11 22:31 python每天发消息\Send_Friends.py
目录 0 2018-04-12 00:11 python每天发消息
----------- --------- ---------- ----- ----
1018 2
- 上一篇:实现火车票查询python.zip
- 下一篇:python 打砖块源代码
相关资源
- python 打砖块源代码
- 实现火车票查询python.zip
- python SVM算法
- 基于python的人脸检测
-
li
nk Prediction相似性计算方法.rar - 利用Python创建ArcGis批量输出地图影工
- 利用Python创建ArcGis批量裁剪栅格工具
- 利用Python创建ArcGis裁剪工具
- PSO算法Python实现自定义函数
- Python的Nmap模块
- 教务管理系统
- python实现Apriori算法apriori.py和数据
- opc python 读取代码
- Python+Flask+sqlite实现的选课系统
- wxpython使用matplotlib的简单教程
- geoserver-rest-python-1.1
- leetcode python题解
- 基于SVM的手写字体识别Python版本
- Python RWR 可重启随机游走代码
- Python→Transorflow猫狗识别完整代码,附
- RPi.GPIO-0.6.3.tar
- python+rabird.winio实现驱动级模拟按键
- 基于wxPython和PySerial实现的串口助手
- Python Keras库 安装包
- python实现网络爬虫 爬取北上广深的天
- 正确可用的基于python实现的贝塞尔曲
- python3抓取头条新闻源码
- python.txt
- python版本selenium webdriver api
- _bz2.cpython-37m-x86_64-linux-gnu.so
评论
共有 条评论