Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
zeyadahmedd
/
test
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f9ccf6d
test
/
app.py
zeyadahmedd
Create app.py
31fc655
over 1 year ago
raw
Copy download link
history
blame
Safe
212 Bytes
from
flask
import
Flask ,json
test=[{
"string"
:
"testing ya client"
}]
api=Flask(__name__)
@api.route(
'/testing'
,methods=[
'GET'
]
)
def
testing
():
return
json.dumps(test)
if
__name__ ==
'__main__'
:
api.run(