Skip to main content

Python bindings for the fpcap C++ packet capture reading library

Project description

FPCAP Python - Python bindings for the fpcap packet capture library

build GitHub release license Python 3.9 Python 3.10 Python 3.11 Python 3.12 Python 3.13 Python 3.14

Python bindings for the fpcap C++ library, a modern, simple and lightweight alternative to libpcap for reading packet capture files. Built with pybind11.

Features

  • Read packets from Pcap, PcapNG, and Modified Pcap files
  • Write packets to Pcap and PcapNG files
  • Memory-mapped I/O for efficient processing of large files
  • Zstd decompression support (.zst / .zstd files)
  • Pythonic iteration over packets
  • Access to PcapNG metadata (comments, OS, hardware, interfaces)
  • Cross-platform: Linux, macOS, Windows

Installation

pip install fpcap

From source

git clone https://github.com/fpcap/fpcap-python.git
cd fpcap-python
pip install .

Usage

Reading packets

Iterate over packets from a Pcap or PcapNG file:

import fpcap

reader = fpcap.PacketReader("capture.pcap")
for packet in reader:
    print(f"ts={packet.timestamp_seconds}.{packet.timestamp_microseconds} "
          f"len={packet.length} caplen={packet.capture_length}")
    raw_bytes = packet.data  # bytes object

Or using the explicit reading API:

import fpcap

reader = fpcap.PacketReader("capture.pcap")
while not reader.is_exhausted():
    packet = reader.next_packet()
    if packet is not None:
        # process packet
        pass

Packet Data Lifetime

Note: Accessing packet.data returns a copy of the raw packet bytes as a Python bytes object. The copy is made each time the property is accessed. Internally, the Packet holds a pointer into the PacketReader's file buffer, so always access .data while the reader is still alive:

# Safe: access .data while reader exists
reader = fpcap.PacketReader("capture.pcap")
for packet in reader:
    raw_bytes = packet.data  # copies bytes — safe to keep

# Unsafe: accessing .data after the reader is destroyed
reader = fpcap.PacketReader("capture.pcap")
packets = list(reader)
del reader
packets[0].data  # undefined behavior — reader's buffer is freed

Writing packets

Copy packets from one file to another:

import fpcap

reader = fpcap.PacketReader("input.pcap")
writer = fpcap.Writer.get_writer("output.pcap")

for packet in reader:
    writer.write(packet)

PcapNG metadata

Access file-level metadata from PcapNG files:

import fpcap

reader = fpcap.PacketReader("capture.pcapng")
print(reader.get_comment())
print(reader.get_os())
print(reader.get_hardware())
print(reader.get_user_application())

for iface in reader.get_trace_interfaces():
    print(f"{iface.name} (DLT={iface.data_link_type})")

API Reference

PacketReader

Method / Property Description
PacketReader(filepath, mmap=True) Open a capture file for reading
next_packet() Read the next packet, returns None if exhausted
is_exhausted() Check if all packets have been read
filepath Path of the opened file
get_comment() PcapNG section comment
get_os() PcapNG OS string
get_hardware() PcapNG hardware string
get_user_application() PcapNG user application string
get_trace_interfaces() List of TraceInterface objects

Packet

Property Type Description
timestamp_seconds int Capture timestamp (seconds)
timestamp_microseconds int Capture timestamp (microseconds)
capture_length int Number of captured bytes
length int Original packet length on the wire
data_link_type int Link-layer header type
interface_index int PcapNG interface index (-1 if N/A)
data bytes Raw packet bytes

Writer

Method Description
Writer.get_writer(filepath, append=False, format=WriterFormat.AUTO) Create a writer
write(packet) Write a packet to the output file

Build Requirements

  • Python 3.9 - 3.14
  • C++20 compatible compiler (GCC, Clang, MSVC)
  • CMake >= 3.16

The C++ dependencies (fpcap, pybind11, zstd) are fetched automatically during the build via CMake FetchContent.

Contributing

Contributions and feedback are welcome! Feel free to open an issue or a pull request.

License

This project is released into the public domain under the Unlicense.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fpcap-0.2.0.tar.gz (6.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

fpcap-0.2.0-cp313-cp313-win_amd64.whl (167.7 kB view details)

Uploaded CPython 3.13Windows x86-64

fpcap-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (389.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fpcap-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (352.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fpcap-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (179.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fpcap-0.2.0-cp313-cp313-macosx_10_15_x86_64.whl (214.8 kB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

fpcap-0.2.0-cp312-cp312-win_amd64.whl (167.7 kB view details)

Uploaded CPython 3.12Windows x86-64

fpcap-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (389.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fpcap-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (352.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fpcap-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (179.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fpcap-0.2.0-cp312-cp312-macosx_10_15_x86_64.whl (214.7 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

fpcap-0.2.0-cp311-cp311-win_amd64.whl (166.3 kB view details)

Uploaded CPython 3.11Windows x86-64

fpcap-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (389.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fpcap-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (352.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fpcap-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (178.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fpcap-0.2.0-cp311-cp311-macosx_10_15_x86_64.whl (213.5 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

fpcap-0.2.0-cp310-cp310-win_amd64.whl (165.5 kB view details)

Uploaded CPython 3.10Windows x86-64

fpcap-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (387.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fpcap-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (350.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fpcap-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (177.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fpcap-0.2.0-cp310-cp310-macosx_10_15_x86_64.whl (212.2 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

fpcap-0.2.0-cp39-cp39-win_amd64.whl (168.7 kB view details)

Uploaded CPython 3.9Windows x86-64

fpcap-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (387.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fpcap-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (351.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fpcap-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (177.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fpcap-0.2.0-cp39-cp39-macosx_10_15_x86_64.whl (212.2 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

File details

Details for the file fpcap-0.2.0.tar.gz.

File metadata

  • Download URL: fpcap-0.2.0.tar.gz
  • Upload date:
  • Size: 6.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fpcap-0.2.0.tar.gz
Algorithm Hash digest
SHA256 0892a89615b3c65cb8b155dea1d4a07e005261ce5fa51a2225d656880261022b
MD5 a8dcdf22805b297113d00fa504b0a534
BLAKE2b-256 f9e70c38318ea668f0735910511b47b7230623c1b98d98e1159514589000c94c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0.tar.gz:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fpcap-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 167.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fpcap-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 052373e48609c854d627ae2249f5aa810c346a0aee79074ad6d1d96954c49c63
MD5 68db1bb74708603dbd48ae2c38f95fb1
BLAKE2b-256 40b7c897988279860cb69fdb86e318b218a1acdc3522f788e1c3b5ce18d6c9c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fpcap-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17ebbafae75f25dc615a9b5238d130ef4ef931f530bcf16f5891513646e8c25d
MD5 b104020eff5a39bc4e03aa254491627a
BLAKE2b-256 34cf34d19367eeff5007d95541626acaed8645abde5e56bc7457ede04e093848

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fpcap-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 823694de3b0dc76238ed39faa0b7aeaee11e9f85ca6e30c6c466afc04d2fcb54
MD5 4bcb2711bb16b95ad3f0fb33c578f3c8
BLAKE2b-256 20c07a1c235b8885bf3cc1e2ce9ad4c93d4ec8dd29973c16c300a4e98fe5f5be

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fpcap-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25bd9c8cc4181bf649bfb9742869a44cac8ed2a2cc24c502f4fd7f8c0a03696f
MD5 ca373fbe934efc0d3a51871a4fb4c0d5
BLAKE2b-256 9d94ed7e7d4a7d2260a34add5d3d6fd33f392eccfad8a75018f4d3fd5926e519

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fpcap-0.2.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0465079cbeddca89a0edf6c930503e30a13e2ccf7f89f3d889463f7edb4ce6a3
MD5 6a80250c1d4f7908f0888dc1f00839f6
BLAKE2b-256 183f3c04a83701fd8f359c79e68a3087e3391b7b760955dc1a3706029f415acb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp313-cp313-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fpcap-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 167.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fpcap-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4143b3ba3ab3ca63e212622e37374908f6b0dd6ecca485c2b4b88dc3b981401f
MD5 19fc076f721aa669f7b1217d33eaf17e
BLAKE2b-256 ee1817a158e1764d569d87c194d1b4f31384713bf01669aa6d395b5cec415f6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fpcap-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81a12d2832a8d8305e7647f7c5980116429d8d0b7cdb2eda7f603160a19fae72
MD5 cb1caacee55deb684799cede872d619e
BLAKE2b-256 a090242602cc9b2a1f8b31ed568b0ea22407bafe3a712330aa08bc7e88faed5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fpcap-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d7c327aef052c3ec660919b9844e8e89e9474f6dd7417a138889aa59dd9883c
MD5 07c72f67e2879508b36258767454fa42
BLAKE2b-256 812eb55afda2383abe16b6f8e1e4023e26cacd615898cfbd788baa7cda47d0ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fpcap-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50c055d982d7e24462f5996d90170646ea04d5ed33a99af1e891daf1ed5e4b5a
MD5 6d52f113b5eea0c26ba5830245fdc102
BLAKE2b-256 65a7ff20e24cbf9393f8b94b22cbbd122005e1592b7ca59bedb9a0fc8a7b2892

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fpcap-0.2.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 65fa7f032c0acbc5184a290f5e4e8ea378d6f65d5561b693fe0da53dc5f9374e
MD5 2584f8076078a2b8f2b11a1306596293
BLAKE2b-256 40ad516fa76b61d496bff06c3c600f69b927da54485ff9773a3da453c9c09c13

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp312-cp312-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fpcap-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 166.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fpcap-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9655e16806ba0bd0e52ca7b0e6685e5fe5f4a629dcd0eb8735c8fb22ced8ec45
MD5 e8c28c14c5a5c24f7b77f1e8d9fe5440
BLAKE2b-256 3d7038b239e14740ef2d0ff13a9a9ecd786af297c8def3273a0fcf061a96a6bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fpcap-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b38e5a9c0c9824d6139b6a8949f9d8af04b7bf6b9220d0af3a388994a446bf42
MD5 364cf5ec8157971edac8637e00892163
BLAKE2b-256 f1d92aea4f65920e4a00635cc72909c09c0614bcc0c1600738e6be13c8a657dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fpcap-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7af19b0fb223bcf298b60fb9af3568c72a5b7f420a5acbd3c9d1fc04e66bc356
MD5 7b5cf958ea7628063b55c364025ff52b
BLAKE2b-256 91af935ce3023e920f6f3135eba743edd649d9948234b2eeaf8677af29fbbe95

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fpcap-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23fae118d992e2f456b057a30afb1edf387f9e2e86f27e448980db65d3029e3a
MD5 afee5319b21fee3657b3219d05bfa809
BLAKE2b-256 ae8da84f9cf163a401ff5c0b46414d177a09000f872bfaca6341f3c5a5be57c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fpcap-0.2.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8cb506bb487a6c7845acc38998c1b386c452a71c25e126069eaf7ea77da5589b
MD5 fa42d5f1d3dbe6a40572867d4ae9deeb
BLAKE2b-256 a5851d5b6d9d19d036d3df8735136f81a7d863ce10076bcf58cae6d04ace45ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp311-cp311-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fpcap-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 165.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fpcap-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3cd95f5e6063e00056c0aa1664f6061019b3b9aecf61df891cc3271ed3967093
MD5 66dc45d85c84cc6a05fd0b3acdbe1094
BLAKE2b-256 afd1fb7f59dee38eb748bce69a7b169ed15995c11017da6d8bf405859b1a5d47

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fpcap-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d973c01a791b1e5ce564154727190a3614378a7847e011d7bda91e9583df4cc9
MD5 650cba9bb49457c5a282d7731996a50a
BLAKE2b-256 12cc43ee49b9e529f14fe8b60a124747d9daaed72c4fc0e28e2cc60b9638df22

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fpcap-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4fe662b8c83d23901ede8b8a0cc31d9b3666f8cb27401ebed986623ffe1a7c24
MD5 2d2659271408b50a17d5fe670b35c378
BLAKE2b-256 09d650e64e54a2834620c16139a4849b16609b9f74c696cd1ada613f1fd70eaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fpcap-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09f13918731a6414abcc1be18ccfa1ce851e7115c3db3ad0b0a8770231d09f4c
MD5 f85bb0993854c1db4ee5ec8f21212e93
BLAKE2b-256 44f441e56bce47f7684c36e731d78f4f22a50b0828efc97e1e6f0324efbc03c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fpcap-0.2.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 84a949ebbb5b81acf2288b88e47a5fd8da14750538c51fc4505a2753f10e6556
MD5 0d0782b218433383fb3cd405678ea79f
BLAKE2b-256 d6be9e385bd748ab6b0f2bd6d85a23a05b7bfdd31e04378cf6b2381c4923f301

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp310-cp310-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fpcap-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 168.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fpcap-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 46aaff73ecc076314c79d5b167903b041d71e7391ddab783f4cbcd2471fe5120
MD5 d88a2542b9219f07d8cb5af250948846
BLAKE2b-256 53092e7c59654d5ac4aea2185464d12d07f9b879821010173b93908a213b1080

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp39-cp39-win_amd64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fpcap-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48c7daa84de2ae26029cf425e2fdec0fb30a3b81da15d13a30ede5e72625749b
MD5 7ffe1f8344e5c633d5782847999e4a35
BLAKE2b-256 6975cddd516771f95fdbc1b959c581e60346586c82d68f4ce75ec0da925dbf72

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fpcap-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 666ade3b9b280b94276d7de13594158266e668dc90e5564b42e086dfb00e210d
MD5 a2054a32444acf63ca4e0e34e70cf441
BLAKE2b-256 1eb9f9c980e31f22cf2d80f949f63dfec4817f0fb08c5d68546d01a4c3b60a98

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: fpcap-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 177.5 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fpcap-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb601d3b977495e55cecc08e6186107b2da47951260bd258906075c1333924a4
MD5 68a0ac795faaded4f1aff4aa9f5838a1
BLAKE2b-256 e466d82c9878209816138193170918ea8fed4ee3143c59f9bac823f536288645

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fpcap-0.2.0-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fpcap-0.2.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b24d31654c63a14fee6769c9f957fbd66a3c6e75b85c32acab8b1eb24ec18b6e
MD5 e99463d71654054dc7d39362568a374d
BLAKE2b-256 4b7bb2734acf115ba05c754d168d67e792f7f2224a0adfde41e2cacf5f1e1ae0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fpcap-0.2.0-cp39-cp39-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on fpcap/fpcap-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page