Python API Request Example
Description
Python API request example using requests library.
Python API Request Example.py
import requests
r=requests.get('https://api.github.com')
print(r.json())
Comments (0)
Add CommentNo comments yet. Be the first to comment!