icapp_space / test_rest.py
gmshroff's picture
added API doc
5f32ca7
raw
history blame
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)