Python: Basics about requests
Last updated: October 3, 2021
Background
requests
is one of the simplest modules in Python that allows you to send HTTP/1.1 requests very easily.
It is often used in conjunction with beautifulsoup4
for web scraping.
Topics covered
- Creating a
Response
object