py-web

Installation
SKILL.md

Python Web 開發(FastAPI + Pydantic v2 + SQLAlchemy 2.0)

Quick Start(30 秒上手)

# pip install "fastapi[standard]"
from fastapi import FastAPI
from pydantic import BaseModel

app = FastAPI()


class Item(BaseModel):
    name: str
    price: float
    in_stock: bool = True
Installs
1
GitHub Stars
1
First Seen
May 8, 2026
py-web — stevenke1981/python_skills