Metadata-Version: 1.1
Name: pypcappy
Version: 0.0.3
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**
        
        [![Build Status](https://travis-ci.org/TheBiggerGuy/pypcappy.svg?branch=master)](https://travis-ci.org/TheBiggerGuy/pypcappy)
        [![Coverage Status](https://coveralls.io/repos/github/TheBiggerGuy/pypcappy/badge.svg?branch=master)](https://coveralls.io/github/TheBiggerGuy/pypcappy?branch=master)
        [![Requirements Status](https://requires.io/github/TheBiggerGuy/pypcappy/requirements.svg?branch=master)](https://requires.io/github/TheBiggerGuy/pypcappy/requirements/?branch=master)
        
        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
