Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
apekshik
/
bart-test
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
bart-test
/
app
/
main.py
epochshik
.
becee40
about 2 years ago
raw
Copy download link
history
blame
contribute
delete
184 Bytes
print
(
"Hello"
)
from
fastapi
import
FastAPI
app = FastAPI()
from
app.test
import
test
@app.get(
"/"
)
async
def
read_root
():
result = test()
return
{
"Hello"
:
"World"
}