Is requests a built-in Python library?

Requests is not a built-in Python library. It is available on PyPI and can be installed using the typical PIP command like this:

$ python -m pip install requests

It officially supports Python 3.7+ so you need to make sure your project is either using Python 3.7 or above in order to use Requests.

You can learn more about this library on the official website or GitHub page.

Related Requests web scraping questions: