I know of the library requests, and urllib, and logging. However, from the examples I've perused, I can only seem to find the example where you specify a specific example - e.g. - requests.get('https://httpbin.org/headers')
. Is there any way to continuously and actively monitor all incoming/outgoing connections, regardless of HTTP verb?
(I believe wireshark or fiddler can do this, but I am writing a program in Python and do not want any sort of wireshark or fiddler python extension.)