File size: 281 Bytes
ff98df2 |
1 2 3 4 5 6 7 8 9 10 |
import requests
org_or_user = "lvwerra"
space_name = "executor"
url = f"https://{org_or_user}-{space_name}.hf.space/health"
print(requests.get(url).json())
url = f"https://{org_or_user}-{space_name}.hf.space/execute"
print(requests.post(url, json={'code': 'print(1+1)'}).json()) |