Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
AZILS
/
Selenium-Script
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
3b401c5
Selenium-Script
/
app.py
Container
Update app.py
8b554df
verified
10 months ago
raw
Copy download link
history
blame
Safe
229 Bytes
from
fastapi
import
FastAPI, Request
import
uvicorn
app = FastAPI()
@app.get(
"/"
)
def
main
():
return
{
"code"
:
200
,
"msg"
:
"Success"
}
if
__name__ ==
'__main__'
:
uvicorn.run(app=
'app:app'
, host=
"0.0.0.0"
, port=
7860
)