Paulo
Paulo

Reputation: 7342

Python analyze requests

I'm interested in building an app that lets developers see http/https requests from their machine real time. Something like firebug, but it catches requests made not only from a browser but also a shell. My question is, is there any python packages that allow me to tap into the module that makes each request ? I'm not very clear as to what this is called but its basically like firebug or wireshark.

Upvotes: 1

Views: 534

Answers (1)

vossad01
vossad01

Reputation: 11948

Such activities are often referred to as packet sniffing. See Packet sniffing in Python (Windows)

Upvotes: 2

Related Questions