File size: 286 Bytes
22c7090 |
1 2 3 4 5 6 7 8 9 10 |
import requests
import json
DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
questions_url = f"{DEFAULT_API_URL}/questions"
response = requests.get(questions_url)
print(response.json())
with open("questions.json", "w") as f:
json.dump(response.json(), f, indent=4)
|