Metadata-Version: 1.1
Name: pypcappy
Version: 0.0.1b
Summary: Pure Python3 PcapNg reader
Home-page: https://github.com/TheBiggerGuy/pypcappy
Author: Guy Taylor
Author-email: thebigguy.co.uk@gmail.com
License: MIT
Description: PyPcapPy
        ========
        **A Pure Python3 PcapNg reader**
        
        Use
        ===
        ```python
        with PcapNgFile('file_name.pcapng.gz') as pcap_file:
          for packet in pcap_file.packets:
            print(packet)
        ```
        
        Why not pypcap or pypcapfile?
        =============================
        * Pure python
         * Will work on CPython, PyPy, Jpython or whatever
        * Python 3
         * No legacy packet data as strings
        * PcapNG
         * Only support for the new *next gen* format
        * Gzip
         * Build in support for both *.pcapng and *.pcapng.gz files
        
Keywords: pcap
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
