Does the requests package of Python cache data by default?
requests
For example,
import requests resp = requests.get(\'https://some website\')
Python-requests doesn't have any caching features.
However, if you need them you can look at requests-cache, although I never used it.
Its last release was in Aug 2019.