Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
VelaTest
/
Look-A-Like_Image-Finder
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
df464b1
Look-A-Like_Image-Finder
/
src
/
api
/
main.py
Vela
Set up api
df464b1
5 months ago
raw
Copy download link
history
blame
Safe
166 Bytes
from
fastapi
import
FastAPI, HTTPException
from
routes
import
homepage_router
app = FastAPI()
app.include_router(homepage_router, prefix=
"/api"
, tags=[
"Home Page"
])