Skip to main content

For any technical and/or maintenance information, please kindly refer to the Official Documentation.

The PyPCAPKit project is an open source Python program focus on network packet parsing and analysis, which works as a comprehensive PCAP file extraction, construction and analysis library.

The whole project supports Python 3.6 or later.

About

PyPCAPKit is a comprehensive Python-native network packet analysis library, with DictDumper as its formatted output dumper.

Unlike popular PCAP file extractors, such as Scapy, DPKT, PyShark, and etc, pcapkit is designed to be much more comprehensive, which means it is able to provide more detailed information about the packet, as well as a more Pythonic interface for users to interact with.

Module Structure

In pcapkit, all files can be described as following eight parts.

  • Interface (pcapkit.interface)

    User interface for the pcapkit library, which standardises and simplifies the usage of this library.

  • Foundation (pcapkit.foundation)

    Synthesises file I/O and protocol analysis, coordinates information exchange in all network layers, as well as provides the foundamental functions for pcapkit.

  • Protocols (pcapkit.protocols)

    Collection of all protocol family, with detailed implementation and methods.

  • Utilities (pcapkit.utilities)

    Auxiliary functions and tools for pcapkit.

  • CoreKit (pcapkit.corekit)

    Core utilities for pcapkit implementation, mainly for internal data structure and processing.

  • ToolKit (pcapkit.toolkit)

    Auxiliary tools for pcapkit to support the multiple extraction engines with a unified interface.

  • DumpKit (pcapkit.dumpkit)

    File output formatters for pcapkit.

  • Constants (pcapkit.const)

    Constant enumerations used in pcapkit for protocol family extraction and representation.

Engine Comparison

Due to the general overhead of pcapkit, its extraction procedure takes around 0.2 milliseconds per packet, which is already impressive but not enough comparing to other popular extration engines availbale on the market, given the fact that pcapkit is a comprehensive packet processing module.

Additionally, pcapkit introduced alternative extractionengines to accelerate this procedure. By now pcapkit supports Scapy, DPKT, and PyShark.

Test Environment

Operating System

macOS Ventura 13.4.1

Chip

Apple M2 Pro

Memory

16 GB

Test Results

Engine

Performance (ms per packet)

dpkt

0.010390_056723

scapy

0.091690_233567

pcapkit

0.200390_390390

pyshark

24.682185_018351

Installation

Simply run the following to install the current version from PyPI:

pip install pypcapkit

Or install the latest version from the gi repository:

git clone https://github.com/JarryShaw/PyPCAPKit.git
cd pypcapkit
pip install -e .
# and to update at any time
git pull

For local development with pipenv, the repository already includes a Pipfile and Makefile targets that keep both the virtualenv and the package caches inside the project directory:

make setup

This resolves two common local setup issues on macOS/Homebrew installations: pipenv cache permission errors under ~/Library/Caches and lxml builds failing to locate Homebrew’s libxml2/libxslt headers.

If you prefer to run pipenv directly, use the same local cache layout and skip any stale, user-local Pipfile.lock:

PIPENV_VENV_IN_PROJECT=1 \
PIPENV_CACHE_DIR=$PWD/.pipenv-cache \
PIP_CACHE_DIR=$PWD/.pip-cache \
pipenv install --skip-lock --dev

And since pcapkit supports various extraction engines, and extensive plug-in functions, you may want to install the optional ones:

# for DPKT only
pip install pypcapkit[DPKT]
# for Scapy only
pip install pypcapkit[Scapy]
# for PyShark only
pip install pypcapkit[PyShark]
# and to install all the optional packages
pip install pypcapkit[all]
# or to do this explicitly
pip install pypcapkit dpkt scapy pyshark

For CLI usage, you will need to install the optional packages:

pip install pypcapkit[cli]
# or explicitly...
pip install pypcapkit emoji

Release files for pypcapkit 1.4.1.post2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pypcapkit 1.4.1.post2
File Size Uploaded
pypcapkit-1.4.1.post2.tar.gz 801.6 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pypcapkit 1.4.1.post2
File
pypcapkit-1.4.1.post2-pp311-none-any.whl PyPy 3.11 none any Details
pypcapkit-1.4.1.post2-pp310-none-any.whl PyPy 3.10 none any Details
pypcapkit-1.4.1.post2-cp314-none-any.whl CPython 3.14 none any Details
pypcapkit-1.4.1.post2-cp313-none-any.whl CPython 3.13 none any Details
pypcapkit-1.4.1.post2-cp312-none-any.whl CPython 3.12 none any Details
pypcapkit-1.4.1.post2-cp311-none-any.whl CPython 3.11 none any Details

Total release size: 6.7 MB

Release files / pypcapkit-1.4.1.post2.tar.gz

Download URL pypcapkit-1.4.1.post2.tar.gz
Size 801.6 kB
Tags Source
SHA-256 checksum
How to use checksums
bab1d53b6cee5d53b5b4f13477cf6f12689406f01c234f8e18fbf0f8349bab7c
BLAKE2b-256 checksum
How to use checksums
3eecab78989a02603117a07337e0da9ec33064489505c56397a24b4fee7fac41
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pypcapkit-1.4.1.post2-pp311-none-any.whl

Download URL pypcapkit-1.4.1.post2-pp311-none-any.whl
Size 976.4 kB
Tags PyPy 3.11
SHA-256 checksum
How to use checksums
d157c0fcc5ee3268c111efe8f7cc267e7c623840b22343fc1148ae10c10d655b
BLAKE2b-256 checksum
How to use checksums
d64b49c03b115a17f2de3a8aea7bec69d75fadd3983d536024de205cac573b62
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pypcapkit-1.4.1.post2-pp310-none-any.whl

Download URL pypcapkit-1.4.1.post2-pp310-none-any.whl
Size 976.4 kB
Tags PyPy 3.10
SHA-256 checksum
How to use checksums
826d667f84c35a62623cd3a1f9683fb1c545e4f787aecfd8a83286d933902960
BLAKE2b-256 checksum
How to use checksums
dc89597283f6a8674c64614425831af6b428e35bce3d04b6621dd371b6be6f7b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pypcapkit-1.4.1.post2-cp314-none-any.whl

Download URL pypcapkit-1.4.1.post2-cp314-none-any.whl
Size 976.4 kB
Tags CPython 3.14
SHA-256 checksum
How to use checksums
362a6f8debd46e54bbdc3713c55b639797975be320259cf33c4a1b9e8bd520db
BLAKE2b-256 checksum
How to use checksums
3efa7dd9335bcca796b213ed20184ff4f5d721b3dc93984c55dcbc304fad7640
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pypcapkit-1.4.1.post2-cp313-none-any.whl

Download URL pypcapkit-1.4.1.post2-cp313-none-any.whl
Size 976.4 kB
Tags CPython 3.13
SHA-256 checksum
How to use checksums
126e854e34b688fe20f9e7e90d9643feae199b186666ecb0b77e469cc36ca931
BLAKE2b-256 checksum
How to use checksums
722c89af72ab760213eb237e6e2bd8d26bf5d5b20c03bae7c9032ba562f06886
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pypcapkit-1.4.1.post2-cp312-none-any.whl

Download URL pypcapkit-1.4.1.post2-cp312-none-any.whl
Size 976.4 kB
Tags CPython 3.12
SHA-256 checksum
How to use checksums
406a7f8d7cc2b013e61650022cc1b581583158356f96a5e4b26edc5c19b0544e
BLAKE2b-256 checksum
How to use checksums
9a4b059fa5cf91c9fc91afd374d1e22bc7a1533e35765313f1d83f2ee893313a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pypcapkit-1.4.1.post2-cp311-none-any.whl

Download URL pypcapkit-1.4.1.post2-cp311-none-any.whl
Size 976.4 kB
Tags CPython 3.11
SHA-256 checksum
How to use checksums
1620787ab83cb79f89b39e40fe1c682b89c4edb1359d0c5495531b08e4aa42c4
BLAKE2b-256 checksum
How to use checksums
6cd5cb24e686ee4cee2c613e1a9c9aebe095444127926b29f5402c6568393fa8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release history Release notifications | RSS feed

This release

1.4.1.post2 This release

7 release files

1.4.1

8 release files

1.4.0

8 release files

1.3.5

8 release files

1.3.4

9 release files

1.3.3

7 release files

1.3.1

6 release files

1.3.0

7 release files

1.2.2

6 release files

1.2.1

7 release files

1.2.0

7 release files

1.1.1

7 release files

1.1.0

7 release files

1.0.3

6 release files

1.0.2

5 release files

1.0.1

2 release files

1.0.0

2 release files

0.16.2

1 release file

0.16.1

1 release file

0.16.0

1 release file

0.15.5

2 release files

0.15.4

2 release files

0.15.3

2 release files

0.15.2

2 release files

0.15.1

2 release files

0.12.9

3 release files

0.12.8

3 release files

0.12.7

3 release files

0.12.6

3 release files

0.12.5

2 release files

0.12.2

2 release files

0.12.1

2 release files

0.12.0

2 release files

0.11.3

2 release files

0.11.2

2 release files

0.10.2

2 release files

0.10.1

2 release files

0.10.0

2 release files

0.9.10

2 release files

0.9.9

2 release files

0.9.8

2 release files

0.9.7

2 release files

0.9.6

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page