My script (created in 2017) requests a couple of URLs (response = requests.post(initial_url, data = data
) and parses the response content. A few days ago, the script started printing out status information from the requests
module:
Starting new HTTPS connection (1): url:443
url:443 "POST /login?url=https%3A//url HTTP/1.1" 302 202
Starting new HTTPS connection (1): second.url:443
second.url:443 "GET /path HTTP/1.1" 302 None
second.url:443 "GET /login?referer=path HTTP/1.1" 302 None
second.url:443 "GET /path HTTP/1.1" 200 None
I did not change anything in my code – why does requests
act so verbose?