当前位置:网站首页>免费的聊天机器人API
免费的聊天机器人API
2022-07-06 00:22:00 【Channing Lewis】
1 青云客
http://api.qingyunke.com/
调用方法:
def qingyunke(self, msg):
url = 'http://api.qingyunke.com/api.php?key=free&appid=0&msg={}'.format(urllib.parse.quote(msg))
html = requests.get(url)
return html.json()["content"]
效果还不错,只是返回有点慢。
2 思知
https://www.ownthink.com
调用方法:
def ownthink(self, msg):
url = 'https://api.ownthink.com/bot?spoken={}'.format(urllib.parse.quote(msg))
html = requests.get(url)
return html.json()["data"]['info']['text']
边栏推荐
- AtCoder Beginner Contest 258【比赛记录】
- NSSA area where OSPF is configured for Huawei equipment
- 《编程之美》读书笔记
- Classical concurrency problem: the dining problem of philosophers
- uniapp开发,打包成H5部署到服务器
- Hardware and interface learning summary
- Hudi of data Lake (2): Hudi compilation
- Recognize the small experiment of extracting and displaying Mel spectrum (observe the difference between different y_axis and x_axis)
- Location based mobile terminal network video exploration app system documents + foreign language translation and original text + guidance records (8 weeks) + PPT + review + project source code
- Codeforces Round #804 (Div. 2)【比赛记录】
猜你喜欢
Room cannot create an SQLite connection to verify the queries
Extracting profile data from profile measurement
Yunna | what are the main operating processes of the fixed assets management system
2022-02-13 work record -- PHP parsing rich text
wx. Getlocation (object object) application method, latest version
FFmpeg学习——核心模块
LeetCode 1189. Maximum number of "balloons"
Date类中日期转成指定字符串出现的问题及解决方法
选择致敬持续奋斗背后的精神——对话威尔价值观【第四期】
Classic CTF topic about FTP protocol
随机推荐
云呐|固定资产管理系统主要操作流程有哪些
【DesignMode】装饰者模式(Decorator pattern)
Pointer pointer array, array pointer
如何利用Flutter框架开发运行小程序
uniapp开发,打包成H5部署到服务器
Basic introduction and source code analysis of webrtc threads
单商户V4.4,初心未变,实力依旧!
Key structure of ffmpeg - avframe
Chapter 16 oauth2authorizationrequestredirectwebfilter source code analysis
Room cannot create an SQLite connection to verify the queries
数据分析思维分析方法和业务知识——分析方法(二)
7.5模拟赛总结
Leetcode:20220213 week race (less bugs, top 10% 555)
[designmode] Decorator Pattern
Notepad++ regular expression replacement string
[designmode] adapter pattern
Atcoder beginer contest 258 [competition record]
云呐|公司固定资产管理系统有哪些?
多线程与高并发(8)—— 从CountDownLatch总结AQS共享锁(三周年打卡)
State mode design procedure: Heroes in the game can rest, defend, attack normally and attack skills according to different physical strength values.