CoolFace
Apppublic

dotku/fastapi-demo

sourceHugging Faceupdated 3y agoView on Hugging Face
1likes
main.py17 linesDownload Raw Back to root
1from fastapi import FastAPI2from fastapi.middleware.cors import CORSMiddleware3 4app = FastAPI()5 6app.add_middleware(7    CORSMiddleware,8    allow_origins=['*']9)10 11@app.get("/")12def read_root():13    return {"message": "Hello World"}14    15@app.get("/api/python")16def hello_python():17    return {"message": "Hello Python"}