File size: 185 Bytes
5f32ca7
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import requests

response = requests.post("https://gmshroff-gmserver.hf.space/run/predict", json={
  "data": [
    "<some json string>",
]}).json()

data = response["data"]
print(data)