当前位置:   article > 正文

qq机器人智能聊天插件源码_byqqmango机器人源码

byqqmango机器人源码

效果展示

在这里插入图片描述

源码

from nonebot import on_keyword,on_command
from nonebot.permission import *
from nonebot.rule import to_me
import requests
from nonebot . adapters .cqhttp import Bot,Event,Message
liaotian=on_command('',rule=to_me(),priority=7)
@liaotian.handle()
async def handle_first_receive(bot: Bot, event: Event, state: dict):
    args = str(event.get_message()).strip()  # 首次发送命令时跟随的参数,例:/天气 上海,则args为上海
    if args:
        state["city"] = args  # 如果用户发送了参数则直接赋值


@liaotian.got("city", prompt="你想问我什么?我是万能的哦!我会同时回答两句提供参考哟")
async def handle_city(bot: Bot, event: Event, state: dict):
    city = state["city"]
    if city=='结束':
        await liaotian.finish('下次继续聊哦')
    city1=await chat(city)
    await liaotian.send(message=city1)
    await liaotian.reject()

async def chat(city: str):
    cityname = city
    url_api = "http://api.qingyunke.com/api.php?key=free&appid=0&msg=" + cityname
    r = requests.get(url_api).json()
    # print(r)
    data = r['content']
    # str=await eval(r.text)['content']
    return str(data)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30

声明:使用本专栏源码不得对外人开放,或者表明出处

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/592630
推荐阅读
相关标签
  

闽ICP备14008679号