Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
gitdeem
/
dt
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
62ee99b
dt
/
app
/
resources
/
hello.py
gitdeem
Upload 96 files
4e9efe9
verified
4 months ago
raw
Copy download link
history
blame
Safe
139 Bytes
from
flask_restful
import
Resource
class
HelloWorldResource
(
Resource
):
def
get
(
self
):
return
{
'message'
:
'Hello World!'
}