Skip to content

requests

Requests is an elegant and simple HTTP library for Python, built for human beings.

Usage

Make a request

import requests
r = requests.get('https://api.github.com/events')
r.text
r.json()