Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
gmshroff
/
gmserver
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
7f07db8
gmserver
/
test_rest.py
gmshroff
added API doc
5f32ca7
over 1 year ago
raw
Copy download link
history
blame
Safe
185 Bytes
import
requests
response = requests.post(
"https://gmshroff-gmserver.hf.space/run/predict"
, json={
"data"
: [
"<some json string>"
,
]}).json()
data = response[
"data"
]
print
(data)