Reputation: 25
I need a way of monitoring all the incoming and outgoing data of the computer I'm using. This could be a way of showing all the POST and GET methods used when loading a web page (like when you click inspect element and the network tab). Is there a python library I could use for this?
Upvotes: 1
Views: 1881
Reputation: 312
You could use pyshark! It's like wireshark but it's made for python! Check the github docs
Upvotes: 1