加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
hello_world.py 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
紫陌翌晨 提交于 2021-07-07 17:24 . 'fastapi初体验'
#!/usr/bin/env python
# -*- coding:utf-8 -*-
# @Time :2021/7/7 16:21
# @Author :cjw
from typing import Optional
from fastapi import FastAPI
from pydantic import BaseModel
app = FastAPI()
# 启动命令 uvicorn hello_world:app --reload
class CityInfo(BaseModel):
province: str # 省
country: str # 市
is_affected: Optional[bool] = None # 是否有感染
# @app.get('/')
# def hello_world():
# return {'hello': 'world!'}
#
#
# @app.get('/city/{city}')
# def result(city: str, query_string: Optional[str] = None):
# return {'city': city, 'query_string': query_string}
#
#
# @app.put('/city/{city}')
# def result_put(city: str, city_info: CityInfo):
# return {'city': city, 'country': city_info.country, 'is_affected': city_info.is_affected}
@app.get('/')
async def hello_world():
return {'hello': 'world!'}
@app.get('/city/{city}')
async def result(city: str, query_string: Optional[str] = None):
return {'city': city, 'query_string': query_string}
@app.put('/city/{city}')
async def result_put(city: str, city_info: CityInfo):
return {'city': city, 'country': city_info.country, 'is_affected': city_info.is_affected}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化