You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import requests
|
|
import json
|
|
|
|
|
|
while True:
|
|
msg = input('我:')
|
|
sess = requests.get(
|
|
('https://open.drea.cc/bbsapi/chat/get?keyWord=' + msg + '&userName=type%3Dbbs'))
|
|
js = sess.text
|
|
js = json.loads(js)
|
|
print('微梦机器人:', js['data']['reply'])
|