PyPCAPKit - Comprehensive Network Packet Analysis Library¶
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.
Important
The whole project supports Python 3.6 or later; CI covers 3.10 to 3.14, and 3.15 as an allowed-to-fail leg.
- Customisation & Extensions
- How to …
- Testing
- Help Wanted
- Changelog
- 1.5.0 – unreleased
- 1.4.1 – 2026-08-22
- 1.4.0 – 2026-08-21
- 1.3.5 – 2024-11-16
- 1.3.4 – 2024-11-14
- 1.3.3 – 2024-11-03
- 1.3.1 – 2023-12-21
- 1.3.0 – 2023-10-04
- 1.2.2 – 2023-09-14
- 1.2.1 – 2023-08-27
- 1.2.0 – 2023-08-26
- 1.1.1 – 2023-08-15
- 1.1.0 – 2023-07-09
- 1.0.3 – 2023-06-29
- 1.0.2 – 2023-06-05
- 1.0.1 – 2023-05-14
- 1.0.0 – 2023-05-09
- 0.16.3 – 2022-10-31
- 0.16.2 – 2022-08-03
- 0.16.1 – 2022-06-07
- 0.16.0 – 2022-05-31
- 0.15.5 – 2020-10-11
- 0.15.4 – 2020-08-28
- 0.15.3 – 2020-08-17
- 0.15.2 – 2020-06-27
- 0.15.1 – 2020-06-18
- 0.15.0 – 2020-06-07
- 0.14.5 – 2019-10-24
- 0.14.4 – 2019-09-01
- 0.14.3 – 2019-08-08
- 0.14.2 – 2019-03-28
- 0.14.1 – 2019-03-07
- 0.14.0 – 2019-03-02
- 0.13.3 – 2019-02-26
- 0.13.2 – 2019-01-24
- 0.13.1 – 2019-01-23
- 0.13.0 – 2018-12-08
About¶
PyPCAPKit is an independent open source library, with
DictDumper as its formatted output dumper.
Note
There is a project called jspcapy works on pcapkit, which is a
command line tool for PCAP extraction.
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
pcapkitlibrary, 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
pcapkitimplementation, mainly for internal data structure and processing.ToolKit (
pcapkit.toolkit)Auxiliary tools for
pcapkitto support the multiple extraction engines with a unified interface.DumpKit (
pcapkit.dumpkit)File output formatters for
pcapkit.Constants (
pcapkit.const)Constant enumerations used in
pcapkitfor 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 extraction engines available on the market, given the
fact that pcapkit is a comprehensive packet processing module.
Additionally, pcapkit introduced alternative extraction engines to
accelerate this procedure. By now pcapkit supports Scapy, DPKT,
PyShark, PyPCAP, pcap-ct and PyPCAPFile, selected through
engine='scapy', 'dpkt', 'pyshark', 'pypcap', 'pcap_ct' and
'pypcapfile' respectively; engine='default' (also spelled 'pcapkit')
is pcapkit’s own parser and the only one with no third-party requirement.
PyPCAP and pcap-ct are two independent distributions of the same
libpcap(3) interface and both install a top-level pcap module,
so they are two engines rather than one: upstream PyPCAP stops at Python 3.11,
pcap-ct covers 3.10 and newer. Install exactly one of them – with both
present, pcap-ct wins the import and the other becomes unselectable.
Speed is not free. Every third-party engine supports less than the
default one, and the newest ones support markedly less –
PyPCAP and
PCAP_CT perform no protocol
dissection at all, so they offer neither reassembly nor flow tracing, and
PyPCAPFile has no IPv6 decoder,
so IPv6 reassembly is unavailable. Each gap is announced with a warning or an
exception rather than silently returning nothing;
Engine Support tabulates them.
Every engine also answers a preflight check –
unsupported_reason(), which
Extractor.run consults
before anything is imported – so asking for one that cannot run in the current
environment gives a single warning naming the actual cause (a Python version, a
missing tshark, a missing libpcap(3), the wrong pcap
distribution) and a clean fall back, rather than an error from inside the
third-party package.
Engine support by Python version¶
Which engines can run at all, by interpreter. Verified by installing each engine and extracting a capture on 3.10 through 3.14; 3.15 remains inferred.
Engine |
3.10 |
3.11 |
3.12 |
3.13 |
3.14 |
3.15 [*] |
|---|---|---|---|---|---|---|
|
yes |
yes |
yes |
yes |
yes |
yes |
|
yes |
yes |
yes |
yes |
yes |
yes |
|
yes |
yes |
yes |
yes |
yes |
yes |
|
yes |
yes |
yes |
yes |
yes |
yes |
|
yes |
yes |
no |
no |
no |
no |
|
yes |
yes |
no |
no |
no |
no |
|
yes |
yes |
yes |
yes |
no |
no |
pypcap and pypcapfile stop at 3.11, and pyshark at 3.13, for the
reasons under Engine prerequisites. Python 3.11 is the last version on which
every engine can run – and even there pypcap and pcap_ct are mutually
exclusive, since both provide the pcap module, so no single environment ever
has all seven at once.
Test Environment¶
Operating System |
macOS 26.6.2 |
Chip |
Apple M2 Pro |
Memory |
16 GB |
Test Results¶
Measured with examples/legacy_smoke/test_time.py: 1,000 timed
extractions of examples/captures/in.pcap per engine and Python version. The
first extraction is discarded as a warm-up. Values are milliseconds per packet.
Engine |
3.10 |
3.11 |
3.12 |
3.13 |
3.14 |
|---|---|---|---|---|---|
|
0.0133 |
0.0093 |
– |
– |
– |
|
0.0163 |
0.0113 |
0.0118 |
0.0117 |
0.0125 |
|
0.0289 |
0.0212 |
– |
– |
– |
|
0.0364 |
0.0320 |
0.0366 |
0.0322 |
0.0396 |
|
0.1082 |
0.0822 |
0.0877 |
0.0832 |
0.0967 |
|
0.2342 |
0.1906 |
0.1985 |
0.1920 |
0.2392 |
|
18.8158 |
18.7852 |
19.2694 |
20.3751 |
– |
The unavailable cells were attempted. They are not zeroes and must not be compared with a measured row.
PyShark 0.6 cannot create the implicit event loop it expects on Python 3.14; it ran on 3.10–3.13.
PyPCAPFile 0.12.0 imports imp, which Python removed in 3.12.
PyPCAP 1.3.0 could not be built here: its build does not search Homebrew’s libpcap library prefix. It is also unsupported on Python 3.12+.
The prerelease pcap-ct / libpcap wheels currently load Linux
libc.so.6 on this macOS host, so their engine could not be preflighted.
Installation¶
Note
pcapkit declares support for Python 3.6 and later, and CI verifies
3.10 through 3.14, plus 3.15 as an allowed-to-fail leg.
The sources themselves use 3.8 syntax; the bpc-walrus/bpc-poseur
backport tools in setup.py convert it at install time, which is what
makes the lower bound possible. Measured: 3.9 and 3.8 import and extract
straight from source with no conversion needed, and 3.7 needs the conversion.
Warning
The conversion is currently blocked by an upstream bug, so below 3.8 the
declaration is intent rather than something that works today. bpc-poseur
0.4.3.post1 crashes on positional-only parameters declared on a method
rather than a plain function, and exits 0 so the build does not notice; the 12
such parameters in pcapkit.corekit.io then survive into the installed
package and import pcapkit fails with SyntaxError.
It is a one-line fix upstream – poseur.py:744 passes cls_ctx=name.name
where name is already a parso Name and wants .value – and with it
applied, walrus then poseur produce a file Python 3.7 parses cleanly.
Note
3.8 and 3.9 are end-of-life and best-effort. Individual engines also stop earlier than the library does; see Engine prerequisites.
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]
# for PyPCAPFile only
pip install pypcapkit[PyPCAPFile]
# for PyPCAP only -- see the note below, this one builds from source
pip install pypcapkit[PyPCAP]
# for pcap-ct only -- the pure-Python alternative to PyPCAP, and the one that
# works on Python 3.12+; do not install it alongside PyPCAP
pip install pypcapkit[PCAP_CT]
# for ESP payload decryption
pip install pypcapkit[crypto]
# and to install the optional packages -- note this excludes PyPCAP and pcap-ct
pip install pypcapkit[all]
# or to do this explicitly
pip install pypcapkit dpkt scapy pyshark pypcapfile
Important
The all extra deliberately excludes both pypcap and pcap-ct, for
different reasons. Everything
else in all is a pure-Python wheel, whereas pypcap compiles a C
extension; pulling it into all would demand a working compiler and the
libpcap development files from everyone installing pypcapkit[all].
pcap-ct needs no compiler, but it and its libpcap dependency are
published only as pre-releases (1.3.0b3 and 1.11.0b29), and all should
not be how somebody ends up with a beta they did not ask for. Install either
explicitly: pip install pypcapkit[PyPCAP] or
pip install pypcapkit[PCAP_CT].
Warning
Install only one of ``pypcap`` and ``pcap-ct``. Both own the top-level
pcap module, and pip will install both without complaint. With both
present the pcap-ct package wins the import and pypcap’s extension
module is shadowed and unreachable, so engine='pypcap' stops working –
measured on Python 3.10. pcapkit detects that state and warns with an
EngineWarning naming both distributions
and which one won, but it cannot undo it.
Engine prerequisites¶
Four of the engines need something beyond a pip install. Each constraint is
also enforced in code, through the engine’s
unsupported_reason(), so
hitting one produces a warning naming the cause and a fall back to
pcapkit’s own parser rather than an error from inside the third-party
package.
PySharkTwo requirements, and neither is visible to an import: the package imports cleanly and then fails when used.
Drives Wireshark’s tshark binary. It need not be on
PATH:pysharklooks attshark_pathin itsconfig.inifirst, thenPATHon POSIX, both Program Files directories on Windows, and/Applications/Wireshark.appon macOS. Install Wireshark (or just tshark) from your platform’s package manager.Requires Python 3.13 or older.
pyshark0.6 builds its event loop withasyncio.get_event_loop_policy().get_event_loop(), and from Python 3.14asyncio.get_event_loop()raisesRuntimeErrorwhen there is no current event loop instead of quietly creating one. Measured: a loop is returned silently on 3.10 and 3.11, returned with aDeprecationWarningon 3.12, and refused on 3.14. (3.13 was not available to test and is expected to work, being on the deprecated-but-functional side of that change.)
PyPCAPPyPCAP ships no wheels – only an sdist – so pip compiles it, and the build needs both libpcap’s headers (
pcap.h) and its shared or static library:# Debian/Ubuntu sudo apt-get install libpcap-dev # RHEL/Fedora/Amazon Linux sudo dnf install libpcap-devel # macOS brew install libpcap
Two caveats, both upstream packaging problems rather than
pcapkitones:pypcap1.3.0 ships a pre-generatedpcap.cproduced by Cython 0.29.x, which does not compile against the Python 3.12+ C API. Having libpcap installed is therefore necessary but not sufficient: on 3.12 or newer the build fails whatever else is present. Use Python 3.11 or older for this engine, or regeneratepcap.cwith Cython 3 yourself.Its
setup.pydoes not consultCFLAGS/LDFLAGSor pkg-config. It searches a fixed list of prefixes –/usr,sys.prefix,/opt/libpcap*,../libpcap*,../wpdpack*and the macOS SDKs – so a libpcap installed anywhere else, notably Homebrew’s keg-only prefix on Apple Silicon (/opt/homebrew/opt/libpcap), is not found even though it is installed. Installing intosys.prefix, or into/opt/libpcap, is what that search will pick up.
PCAP_CTThe way to drive the same libpcap interface on Python 3.12 and newer, where
pypcapcannot be built. Nothing to compile and nopcap.hneeded: pcap-ct is actypesreimplementation, and both it and itslibpcapdependency shippy3-none-anywheels. Verified reading a capture on Python 3.10 and 3.14.Two caveats:
A system libpcap(3) is still required at run time. The
libpcapdistribution ships a vendoredlibpcap.soand, as published, does not use it: itslibpcap.cfgsaysLIBPCAP = None, which sends its loader toctypes.util.find_library(). So the library actually loaded is the host’slibpcap.so.1, and with none presentimport pcapraisesOSErrorrather thanImportError. SetLIBPCAP = tcpdumpinlibpcap.cfgto use the vendored copy instead.Both distributions are pre-releases, and
pcap-ctdocuments itself as tracking thepypcap1.2.3 interface. Every attribute the engine uses was measured behaving identically topypcap1.3.0, but that is a statement about the versions tested.
PyPCAPFilePyPCAPFile 0.12.0 imports the
impmodule, which was removed in Python 3.12, sopcapfile.savefile– the module needed to read a capture – cannot be imported at all on 3.12 or newer. Upstreammasterhas fixed this but no release carries the fix yet, so this engine also requires Python 3.11 or older until 0.12.1 is published.
Note
pcapkit itself, and its default, dpkt and scapy engines,
work fine on current Python versions – dpkt 1.9.8 and scapy 2.7.0 were
both measured reading a capture on Python 3.14. Only the four engines above
carry extra constraints, and asking for an engine that cannot run in the
current environment emits an
EngineWarning naming the reason and falls
back to pcapkit’s own parser rather than failing outright.
For CLI usage, you will need to install the optional packages:
pip install pypcapkit[cli]
# or explicitly...
pip install pypcapkit emoji