Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 631 Bytes

README.rst

File metadata and controls

28 lines (20 loc) · 631 Bytes

yappcap

yappcap is a Pythonic wrapper for the libpcap library. It aims to support as much of the libpcap API as is practical to implement in Python with complete documentation and active support.

Installation

make && sudo make install

or

sudo python setup.py install

Getting started

Starting a capture on an interface and saving all packets on port 5060 to a save file:

>>> import yappcap
>>> p = PcapLive("eth0", timeout=1000)
>>> p.activate()
>>> p.filter = "port 5060"
>>> p.loop(-1, None)

Full documentation at http://otherwiseguy.github.com/yappcap/