Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
gmshroff/gmserver
gmshroff
/
icapp_space
like
0
Running
App
Files
Files
Community
e252ad2
icapp_space
/
test_rest.py
gmshroff
added API doc
5f32ca7
about 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)