Home > OS >  Where has 'verbose' mode gone in Python requests?
Where has 'verbose' mode gone in Python requests?

Time:11-03

Where is the 'verbose' mode of Requests documented ?

In earlier versions of the Python requests library a 'verbose' mode was documented.

I can no longer find this functionality in the documentation. There is this approach in a previous question which relies on using the logging put out by urllib3 (which underlies requests) but it seems very odd that the 'verbose' mode from Requests has just disappeared.

CodePudding user response:

It was removed. From the release history:

1.0.0 (2012-12-17)

...

  • Removal of all configuration
  • Standard library logging
  • Related