Fix Python – How do I disable log messages from the Requests library?
By default, the Requests python library writes log messages to the console, along the lines of:
Starting new HTTP connection (1): example.com
http://example.com:80 “GET / HTTP/1.1” 200 606
I’m usually not interested in these messages, and would like to disable them. What would be the best way to silence those messages or decrease Requests’ verbos….