Is it possible to use Python to set up a "listener" service to inspect outgoing HTTP requests on a machine and their incoming responses and return their contents (URL, headers, etc) in an easily readable format? Do any good libraries exist for this purpose? The ideal application should be able to capture requests made by browsers and applications to web sites or web services (SOAP, REST, etc).
相关问题
- Angular RxJS mergeMap types
- how to define constructor for Python's new Nam
- streaming md5sum of contents of a large remote tar
- How to get the background from multiple images by
- Evil ctypes hack in python
Network sniffers like wireshark using libpcap to sniff traffic from network interfaces. There is a python module for this: pylibpcap