python编写自动发送微信信息(python实现向微信用户发送每日一句 python实现微信聊天机器人)
类别:脚本大全 浏览量:1794
时间:2021-10-28 10:47:45 python编写自动发送微信信息
python实现向微信用户发送每日一句 python实现微信聊天机器人分享几个python针对微信的小工具,供大家参考,具体内容如下
用python实现向微信用户发送每日一句
|
# -*- coding:utf-8 -*- from __future__ import unicode_literals from threading import timer from wxpy import * import requests #bot = bot() #bot = bot(console_qr=2,cache_path="botoo.pkl")#这里的二维码是用像素的形式打印出来!,如果你在win环境上运行,替换为 bot=bot() bot = bot(cache_path = true) 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(u '浩' )[ 0 ] #你朋友的微信名称,不是备注,也不是微信帐号。 my_friend.send(get_news1()[ 0 ]) my_friend.send(get_news1()[ 1 ][ 5 :]) my_friend.send(u "以上是金山词霸每日一句,http://www.qq.com\" data-miniprogram-appid=\"wxae430cc3e778834b\" data-miniprogram-path=\"pages/gologin/gologin\"" ) t = timer( 10 , send_news) #每86400秒(1天),发送1次,不用linux的定时任务是因为每次登陆都需要扫描二维码登陆,很麻烦的一件事,就让他一直挂着吧 t.start() except : my_friend = bot.friends().search( '回憶總是如此伤' )[ 0 ] #你的微信名称,不是微信帐号。 my_friend.send(u "今天消息发送失败了" ) if __name__ = = "__main__" : send_news() |
用python调用图灵机器人接口实现微信聊天机器人
|
import kivy kivy.require( '1.9.1' ) from kivy.app import app from kivy.uix.button import button import itchat import requests class test(app): def get_response(msg): apiurl = 'http://www.tuling123.com/openapi/api' data = { 'key' : '0646d90819004f2fa565852c0fe3c3af' , # tuling key 'info' : msg, # 这是我们发出去的消息 'userid' : '123' , # 这里你想改什么都可以 } # 我们通过如下命令发送一个post请求 r = requests.post(apiurl, data = data).json() return r.get( 'text' ) @itchat .msg_register(itchat.content.text) def print_content(msg): return get_response(msg[ 'text' ]) @itchat .msg_register([itchat.content.text], isgroupchat = true) def print_content(msg): return get_response(msg[ 'text' ]) itchat.auto_login(true) itchat.run() if __name__ = = '__main__' : test().run() |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持开心学习网。
原文链接:https://blog.csdn.net/qq_34956264/article/details/88662503
您可能感兴趣
- 2021-10-23 10:04:24
- python语言的读取图像(详解python读取image)
- python面向对象练习方法(Python面向对象实现一个对象调用另一个对象操作示例)
- flask项目微信小程序(Python Flask 搭建微信小程序后台详解)
- python语言翻译中文(浅析Python 实现一个自动化翻译和替换的工具)
- python3简单编程(Python3.5面向对象编程图文与实例详解)
- python读取和写入数据excel(Python向excel中写入数据的方法)
- python redis锁的使用(Python操作redis实例小结String、Hash、List、Set等)
- python注册码实现(python实现Virginia无密钥解密)
- python开发的独立商城(python实现电子产品商店)
- 12步轻松搞定python装饰器(Python3.5装饰器典型案例分析)
- python3.7.0使用方法(Python3.5模块的定义、导入、优化操作图文详解)
- python基本数据结构(浅谈Python编程中3个常用的数据结构和算法)
- python发送微信消息脚本(python实现给微信指定好友定时发送消息)
- python如何将运行结果存入txt中(详解python读取和输出到txt)
- python人脸识别库(python3人脸识别的两种方法)
- 高中数学题(高中数学题型总结及解题方法)
- 冰岛旅游攻略(冰岛旅游攻略及花费)
- 为什么现在年轻人越来越喜欢买衣服(为什么现在年轻人越来越喜欢买衣服穿)
- 怎么做好SEO(怎么做好seo内容优化)
- 冬季钓鱼子线用 长 还是 短(冬季钓鱼子线用)
- 鱼竿 夏钓短,冬钓长 ,一定是这样 认清优缺点在选竿(鱼竿夏钓短冬钓长)
热门推荐
- laravel判断变量为空(关于laravel 数据库迁移中integer类型是无法指定长度的问题)
- pythonmatplotlib散点图怎么画(python使用matplotlib画柱状图、散点图)
- python中return 类的实例(Python实现Event回调机制的方法)
- web服务器主要有哪些(浅谈Web服务器和应用服务器的区别)
- css style常用属性(CSS中的content属性使用教程)
- dedecms列表分页无法显示(dedecms 5.6 分页样式代码修改方法)
- python爬虫request方法介绍(详解Python3网络爬虫二:利用urllib.urlopen向有道翻译发送数据获得翻译结果)
- vmware虚拟linux无法配置ip(在VMware虚拟机中查看Linux的IP地址的方法)
- harborjob设置(harbor修改配置文件后重启操作)
- vmware虚拟机上建立http服务步骤(VMWare网络适配器三种模式实现过程解析)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9