• 大小: 1.76KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签: python  微信  机器人  

资源简介

Python使用微信实现两个机器人的聊天

资源截图

代码片段和文件信息

import urllib.requesturllib.parse
import requests
#http://api.qingyunke.com/api.php?key=free&appid=0&msg=
#http://www.tuling123.com/openapi/api?key=7403046cfcc8423db07e52b4745db18e&info=%E4%BD%A0%E5%A5%BD
class Qyk_robot:
    def __call__(selfstr):
        query = {
            ‘key‘: ‘free‘
            ‘appid‘: ‘0‘
            ‘msg‘: str
        }
        req_str = ‘http://api.qingyunke.com/api.php?‘ + urllib.parse.urlencode(query)
        req = urllib.request.Request(req_str)
        response = urllib.request.urlopen(req)
        content = self.splite(response.read().decode(‘utf-8‘))
        return content
    def splite(selfstr):
        str_list=str.split(‘:‘)
        return  str_list[2][1:-2]
class Tul_robot:
    def __call__(selfstr):
        query = {
   

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

     文件       2554  2017-12-06 21:42  itchat_test.py

     文件       1210  2017-12-06 21:42  http_request.py

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

                 3764                    2


评论

共有 条评论