from typing import Optional from fastapi import FastAPI from pydantic import BaseModel app = FastAPI() class WeatherItem(BaseModel): ...
確定! 回上一頁