I am working on a Python script that utilizes the 'requests' module to make HTTP requests. However, I am encountering an ImportError. Here are the details:
code:
import requests url = 'https://example.com' response = requests.get(url) print(response.text)
I have checked that the 'requests' module is installed using pip install requests.I've also confirmed that I'm using the correct virtual environment.