摘要: app.run(host='127.0.0.1',port=8000,debug=True) 参考: 打开官网地址:https://flask.palletsprojects.com/en/3.0.x/quickstart/#a-minimal-application 找到以下位置: 进入页面:ht 阅读全文
posted @ 2023-11-16 13:58 远洪 阅读(26) 评论(0) 推荐(0) 编辑
摘要: import uvicorn from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} # 注意其中 main:app 中的main为你的文件名,否则会报错 阅读全文
posted @ 2023-11-16 10:23 远洪 阅读(107) 评论(0) 推荐(0) 编辑