内容类指令

class mini.apis.api_content.QueryWiKi(is_serial: bool = True, query: str | None = None)[源代码]

基类:BaseApi

百科api

默认腾讯百科

参数:
  • is_serial (bool) – 是否等待回复,默认True

  • query (str) – 查询的内容,不能为空或None

#WikiResponse.isSuccess : 是否成功

#WikiResponse.resultCode : 返回码

async execute()[源代码]

执行百科指令

返回:

WikiResponse

class mini.apis.api_content.StartTranslate(is_serial: bool = True, query: str | None = None, from_lan: LanType = LanType.CN, to_lan: LanType = LanType.EN, platform: ServicePlatform = ServicePlatform.BAIDU)[源代码]

基类:BaseApi

翻译api

默认百度翻译

参数:
  • is_serial (bool) – 是否等待回复,默认True

  • query (str) – 翻译的内容,不能为空或None

  • from_lan (LanType) – 翻译的原文语言,默认CN,中文

  • to_lan (LanType) – 翻译的目标语言,默认EN,英文

  • platform (ServicePlatform) – 翻译平台,默认BAIDU,使用百度翻译

#TranslateResponse.isSuccess : 是否成功

#TranslateResponse.resultCode : 返回码

async execute()[源代码]

执行翻译指令

返回:

TranslateResponse