找传奇、传世资源到传世资源站!

FastAPI入门级实例

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

Fastapi实例 超星查题


pip3 install fastapi uvicorn  -i https://mirrors.aliyun.com/pypi/simple pip3 install fastapi   -i https://mirrors.aliyun.com/pypi/simple 然后运行此命令即可

uvicorn selectanswer:app --reload
配置截图如下:from clipboard 运行截图如下:from clipboard import requests from fastapi import FastAPI from pydantic import BaseModel from bs4 import BeautifulSoupapp = FastAPI()sAnswerApi="http://test.vcing.top:81/api.php?key=chaoxing&q=" @app.get("/answer/") async def read_item(ask: str): response = requests.request("get", sAnswerApi ask) response = BeautifulSoup(response.text,"html.parser") return {"response":response.text}

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复