Python API Request Example

PYTHON 2 weeks ago 626 views
S

sujeetkumar713

21 public snippets
626 Views
0 Comments
0 Saves

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 Comment

No comments yet. Be the first to comment!