Datasets:

Modalities:
Text
Formats:
text
Size:
< 1K
Libraries:
Datasets
License:
PyRs2 / python /api_request.py
khulnasoft's picture
Upload folder using huggingface_hub
998b6cc verified
raw
history blame contribute delete
223 Bytes
# This script requires the 'requests' library to be installed.
# You can install it with: pip install requests
import requests
response = requests.get('https://jsonplaceholder.typicode.com/todos/1')
print(response.json())