• 大小: 123KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-03
  • 语言: Python
  • 标签: python  

资源简介

用python实现微信自动回复

资源截图

代码片段和文件信息

#coding=utf8
import requests
import itchat

KEY = ‘c8c1504ad70848cbaf564ef89bc62216‘
“““
在图灵机器人网站注册,创建一个机器人就会自动生成一个唯一的APIkey
“““



“““
此函数与图灵机器人进行API接口连接
“““
def get_response(msg):

    apiUrl = ‘http://www.tuling123.com/openapi/api‘
    data = {
        ‘key‘    : KEY
        ‘info‘   : msg
    }
    try:
        r = requests.post(apiUrl data=data).json()
        return r.get(‘text‘)
    except:
        return

@itchat.msg_register(itchat.content.TEXT)
def tuling_reply(msg):
    defaultReply = ‘I received: ‘ + msg[‘Text‘]
    reply = get_response(msg[‘Text‘])
    return reply or defaultReply

itchat.auto_login(enableCmdQR=True)
“““
itchat会生成二维码,扫描登录
“““
itchat.run()

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        828  2017-04-26 15:29  微信自动回复\NewTur.py

     文件        211  2017-04-26 15:02  微信自动回复\test.py

     文件     126635  2017-04-27 11:00  微信自动回复\演示效果.gif

     目录          0  2017-04-27 11:00  微信自动回复

----------- ---------  ---------- -----  ----

               127674                    4


评论

共有 条评论