Metadata-Version: 2.1
Name: PcapAnalyzeHelper
Version: 0.1.4
Summary: A python package for quick analysis on pcap file
Home-page: UNKNOWN
Author: wenjwang
Author-email: wenjade91@gmail.com
License: MIT
Description: ### PcapAnalyzeHelper
        PcapAnalyzeHelper is a package offers a statistics summary of pcap file with specified destination IP. It offers statistics summary of distribution of protocol, source port, source IP, destination port, IP length, IP flags, checksum, ttl, udp payload, TCP flags, window scale.
        
        #### To use (with causion), please do 
        ```
        import PcapAnalyzeHelper
        from os import listdir
        ### need a folder which contains all the pcap file you need to parse ###
        folder = <folder name>
        print("Opening {}...".format(folder))
        files = [folder + file for file in listdir(folder)]
        PcapAnalyzeHelper.pcap_stat(files)
        
        ```
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
