1

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.

glaucon
  • 7,508
  • 9
  • 38
  • 59
  • While it's not verbose mode, you can log the pieces of the request you want to log. An answer on how to do this can be found here: https://stackoverflow.com/questions/20658572/python-requests-print-entire-http-request-raw – michael shomsky Nov 03 '21 at 00:19

1 Answers1

2

It was removed. From the release history:

1.0.0 (2012-12-17)

...

  • Removal of all configuration
  • Standard library logging
wjandrea
  • 23,210
  • 7
  • 49
  • 68