Requests

Overview

Requests is a Python library for making HTTP requests, simplifying the process of sending HTTP requests and handling responses. It supports various HTTP methods and provides features like SSL certificate verification, sessions, and authentication, making it popular for web scraping, API consumption, and general HTTP interactions in Python applications.

pipy package → requests

r = requests.get(your url here).json()
r = requests.post(your url here, data=json.dumps(your dict)).json()
r = requests.put(your url here, data=json.dumps(your dict)).json()

Easy for Jira - Python Automations, 2023