Skip to main content

pycxxfilt

Version Supported Versions OpenSSF Scorecard

Demangle C++ symbols using LLVM's IA-64 C++ ABI demangler.

pycxxfilt is a Python C extension that wraps the C++ name demangler from LLVM's libcxxabi. It handles the name mangling scheme defined by the Itanium C++ ABI, which is the standard used by GCC (3.0+), Clang (1.0+), and other compilers on most platforms. The demangler source is shipped directly, so no external C++ libraries are required at build time or runtime.

The bundled demangler is from LLVM release 23.1.0.

Installation

pip install pycxxfilt

Wheels are available for Linux (x86_64, aarch64, ppc64le, s390x), macOS (x86_64, arm64), and Windows (AMD64). The extension uses the Python stable ABI (abi3), so a single wheel works with Python 3.11 and later.

Usage

Python API

import pycxxfilt

pycxxfilt.demangle("_Z3fooi")          # 'foo(int)'
pycxxfilt.demangle("_ZN3Foo3barEv")    # 'Foo::bar()'
pycxxfilt.demangle("_ZSt4cout")        # 'std::cout'
pycxxfilt.demangle("not_mangled")      # None

demangle() returns the demangled name as a string, or None if the input is not a valid mangled symbol.

Command line

$ python -m pycxxfilt _Z3fooi _ZN3Foo3barEv _ZSt4cout not_mangled
foo(int)
Foo::bar()
std::cout
not_mangled

Symbols that are not valid mangled names are printed as-is.

Supported standards

The demangler decodes any symbol produced by a conforming Itanium C++ ABI compiler (GCC, Clang). Coverage tracks the bundled LLVM version and currently includes:

Standard Covered constructs
C++98/03 namespaces, templates, operator overloads, ctors/dtors, vtables/RTTI, dynamic exception specs
C++11 lambdas, variadic templates, rvalue references, decltype, user-defined literals, noexcept
C++14 decltype(auto), variable and generic-lambda templates
C++17 fold expressions, structured bindings, noexcept in the type system
C++20 concepts / requires, modules, coroutines, char8_t, <=>
C++23 explicit object parameter ("deducing this")
C++26 pack indexing (T...[N])

Beyond C++, it also handles C23 _BitInt(N) and extended floating-point types (_Float16, __float128), Objective-C++ protocol qualifiers, GNU/Clang vector types, ABI tags ([abi:...]), and GCC symbol suffixes (.cold, .clone).

Stability

The public API is pycxxfilt.demangle() and pycxxfilt.LLVM_VERSION. From 1.0 onward it follows semantic versioning: no breaking changes to these without a major version bump.

Comparison with cxxfilt

The cxxfilt package uses ctypes to call __cxa_demangle from the system's libstdc++.so. This means it depends on a C++ runtime library being installed and available at runtime, and it is not available on Windows.

pycxxfilt takes a different approach: it ships a vendored copy of LLVM's __cxa_demangle implementation and compiles it into a C extension module. This makes it self-contained with no runtime dependency on any system C++ library, and it works on Linux, macOS, and Windows.

License

The project code is licensed under the Apache License 2.0.

The vendored LLVM demangler is licensed under the Apache License 2.0 with LLVM Exceptions.

Release files for pycxxfilt 1.0.0

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

Source distribution (sdist)

Source distribution for pycxxfilt 1.0.0
File Size Uploaded
pycxxfilt-1.0.0.tar.gz 660.3 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pycxxfilt 1.0.0
File
pycxxfilt-1.0.0-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
pycxxfilt-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
pycxxfilt-1.0.0-cp314-cp314t-musllinux_1_2_s390x.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ IBM System/390x Details
pycxxfilt-1.0.0-cp314-cp314t-musllinux_1_2_ppc64le.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ PowerPC 64-le Details
pycxxfilt-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
pycxxfilt-1.0.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
pycxxfilt-1.0.0-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ IBM System/390x, Linux glibc 2.24+ IBM System/390x Details
pycxxfilt-1.0.0-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ PowerPC 64-le, Linux glibc 2.24+ PowerPC 64-le Details
pycxxfilt-1.0.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
pycxxfilt-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
pycxxfilt-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
pycxxfilt-1.0.0-cp311-abi3-win_amd64.whl CPython 3.11 abi3 Windows x86-64 Details
pycxxfilt-1.0.0-cp311-abi3-musllinux_1_2_x86_64.whl CPython 3.11 abi3 Linux musl 1.2+ x86-64 Details
pycxxfilt-1.0.0-cp311-abi3-musllinux_1_2_s390x.whl CPython 3.11 abi3 Linux musl 1.2+ IBM System/390x Details
pycxxfilt-1.0.0-cp311-abi3-musllinux_1_2_ppc64le.whl CPython 3.11 abi3 Linux musl 1.2+ PowerPC 64-le Details
pycxxfilt-1.0.0-cp311-abi3-musllinux_1_2_aarch64.whl CPython 3.11 abi3 Linux musl 1.2+ ARM64 Details
pycxxfilt-1.0.0-cp311-abi3-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 abi3 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
pycxxfilt-1.0.0-cp311-abi3-manylinux_2_24_s390x.manylinux_2_28_s390x.whl CPython 3.11 abi3 Linux glibc 2.24+ IBM System/390x, Linux glibc 2.28+ IBM System/390x Details
pycxxfilt-1.0.0-cp311-abi3-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl CPython 3.11 abi3 Linux glibc 2.28+ PowerPC 64-le, Linux glibc 2.24+ PowerPC 64-le Details
pycxxfilt-1.0.0-cp311-abi3-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 abi3 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
pycxxfilt-1.0.0-cp311-abi3-macosx_11_0_arm64.whl CPython 3.11 abi3 macOS 11.0+ ARM64 Details
pycxxfilt-1.0.0-cp311-abi3-macosx_10_9_x86_64.whl CPython 3.11 abi3 macOS 10.9+ x86-64 Details

Total release size: 10.9 MB

Release files / pycxxfilt-1.0.0.tar.gz

Download URL pycxxfilt-1.0.0.tar.gz
Size 660.3 kB
Tags Source
SHA-256 checksum
How to use checksums
e89dea4d20a3ec94d8cac3a746502154e7a62f2ddea3534c8dbf2fb9b1a37802
BLAKE2b-256 checksum
How to use checksums
e8595ccc3d649ca68e503e793c6d4be395b21fdd9e93b0bd59edc3f77eb43d0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp314-cp314t-win_amd64.whl

Download URL pycxxfilt-1.0.0-cp314-cp314t-win_amd64.whl
Size 63.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
ee54fc98fcd6f358b86d01a4e967c63c96a230111f32bfc475a5c17110179f9d
BLAKE2b-256 checksum
How to use checksums
6999e418e2584b03f88fe2498938d645ad754773e055754c94e076a7f0286139
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL pycxxfilt-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 1.1 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3eec659888534ce26958d89deb407561c28a2ae0bd3f29cb61945cc65254edc1
BLAKE2b-256 checksum
How to use checksums
fdde2db4c9f03b5f1bc47fb549b608fda6d85601a7eb4802201dc7de4b5ae849
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp314-cp314t-musllinux_1_2_s390x.whl

Download URL pycxxfilt-1.0.0-cp314-cp314t-musllinux_1_2_s390x.whl
Size 1.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
986ef32c717626f88381c16117cd02802aac0a72b743d035132d2c31594a8c09
BLAKE2b-256 checksum
How to use checksums
dd0d636707178d438c457c7a5e9c99b9f1c3e5353e041abd349eebbf30d2fb5c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp314-cp314t-musllinux_1_2_ppc64le.whl

Download URL pycxxfilt-1.0.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Size 1.1 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
ca3fed552744277f22462e750667e8f6635353642784c47c5d850d96829dacfe
BLAKE2b-256 checksum
How to use checksums
bab3906d3ab7134d5716bafacec3bab33375edc3ec907c22e4a1d8dc5914e9b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL pycxxfilt-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 1.1 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
50c5da69f498bcf1215957699b9b0fb54e735473b316e23fc39d6b13921745c8
BLAKE2b-256 checksum
How to use checksums
3a91fe99f87544635909019cfec6739cf6acef982920d83d5e2df52bb0eb749f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL pycxxfilt-1.0.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 82.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e69dac7a0edd804846af9ba6b5ce46ddb96dcfecff8ea0d58efe2969b6714ac9
BLAKE2b-256 checksum
How to use checksums
1a5599b439da51686a798cfb2687e53654ba77e2ab2b7f75b108939f02fe6f65
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl

Download URL pycxxfilt-1.0.0-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl
Size 87.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ IBM System/390x Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
8ef4029a962c538e706813175b7f28ba993fc4cb48a9a28872993051f7d35108
BLAKE2b-256 checksum
How to use checksums
9d7456a0292f79f74d424015e7d182279313c0b852d858d66c7ecfcc956d93be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl

Download URL pycxxfilt-1.0.0-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Size 87.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
64530313a7182471f5895aa7459b5f953ccb593b2c7731103aa8ee3f609f6021
BLAKE2b-256 checksum
How to use checksums
3108019770792e3ea5a29ea2223608cbdda3785ca4dced758ad72b0ff89cc012
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL pycxxfilt-1.0.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 80.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e7e55a5ee0fca9f360328f2aac417c69be39b2cf9fcb152f6616493ab8be6f5a
BLAKE2b-256 checksum
How to use checksums
a9f3b6a485cc08fbaf68a1ddb475f9acd326727c67acbfdc05feda0afcf0753c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl

Download URL pycxxfilt-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Size 70.5 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
34311ea8969ab875889208e0b8ee536bde5bfb4de5c46ab465b9f6474ae82392
BLAKE2b-256 checksum
How to use checksums
a9fe225a54fcb937088b07906e6555e417dda73069de71ebc208a5f7d4e48c6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL pycxxfilt-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Size 72.2 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
5de0fc8295e1d66f7808b51fa5b8065ff6f750f82d9591ad3eb053b13c61c4d4
BLAKE2b-256 checksum
How to use checksums
35c45e93ceb1f18b31c26e3cd84e886995f2c63ca375161b9e2b41f096be9427
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp311-abi3-win_amd64.whl

Download URL pycxxfilt-1.0.0-cp311-abi3-win_amd64.whl
Size 62.2 kB
Tags CPython 3.11 Windows x86-64 abi3
SHA-256 checksum
How to use checksums
8106d3b4fcdcb49f1b0dc15d58f3841ddc22d5cf77a2a88913306d2d348db1b1
BLAKE2b-256 checksum
How to use checksums
dd4ba438d75b8a930c48ab325eb5f4c4d8da04e3d17a353a335765269a9bcd83
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp311-abi3-musllinux_1_2_x86_64.whl

Download URL pycxxfilt-1.0.0-cp311-abi3-musllinux_1_2_x86_64.whl
Size 1.1 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64 abi3
SHA-256 checksum
How to use checksums
79aa774d0094ec36a788d89b509bb9384d7804c87cc7dea7fefbeb27f1d586fc
BLAKE2b-256 checksum
How to use checksums
1aa2f1f1be8ac923f4dfe78a25543d88d45f4d40746da31e6dffbb6821061f21
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp311-abi3-musllinux_1_2_s390x.whl

Download URL pycxxfilt-1.0.0-cp311-abi3-musllinux_1_2_s390x.whl
Size 1.3 MB
Tags CPython 3.11 Linux musl 1.2+ IBM System/390x abi3
SHA-256 checksum
How to use checksums
d5ab185bc22d348c4f5f33ba4acdfafe7df172cff375806cc386a70290e0f53d
BLAKE2b-256 checksum
How to use checksums
302b09b4f5f3eb239d53024189dc68cddf5d5952651a8681dc76dd4850ed77e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp311-abi3-musllinux_1_2_ppc64le.whl

Download URL pycxxfilt-1.0.0-cp311-abi3-musllinux_1_2_ppc64le.whl
Size 1.1 MB
Tags CPython 3.11 Linux musl 1.2+ PowerPC 64-le abi3
SHA-256 checksum
How to use checksums
7ad266a932097ad9910d2a72f58d16e6c5bca9a0442dfcc93712d36755c3af50
BLAKE2b-256 checksum
How to use checksums
a046000b25a58971a494123a3f25c7064a75254bafc75595c76a162c85196016
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp311-abi3-musllinux_1_2_aarch64.whl

Download URL pycxxfilt-1.0.0-cp311-abi3-musllinux_1_2_aarch64.whl
Size 1.1 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64 abi3
SHA-256 checksum
How to use checksums
ac173845384dbb66a9af4c2b69f6d01331980b0e5d6e132269bbd802f98150f3
BLAKE2b-256 checksum
How to use checksums
1ff6db054674aae71105d4503570fc0d54e4e8d31105b5c565f2d06d45db46d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp311-abi3-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL pycxxfilt-1.0.0-cp311-abi3-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 81.8 kB
Tags CPython 3.11 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64 abi3
SHA-256 checksum
How to use checksums
6311cedbf2194077abccaf3ce7ab2d6e13b32833f0bbb7542dd5a8809141e8c0
BLAKE2b-256 checksum
How to use checksums
64aa52f305616680599d69d489361cbaa82f9f70daae55f7265f872df44c7af5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp311-abi3-manylinux_2_24_s390x.manylinux_2_28_s390x.whl

Download URL pycxxfilt-1.0.0-cp311-abi3-manylinux_2_24_s390x.manylinux_2_28_s390x.whl
Size 87.4 kB
Tags CPython 3.11 Linux glibc 2.24+ IBM System/390x Linux glibc 2.28+ IBM System/390x abi3
SHA-256 checksum
How to use checksums
c7e6ecc9adfbae79e268375570fd2214b060c4c6cadbe835b1da1580bb4aae91
BLAKE2b-256 checksum
How to use checksums
b8b3878d46adf8206c09a89ff2747493c24cfcc0f061362e6b278a227b87cd4f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp311-abi3-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl

Download URL pycxxfilt-1.0.0-cp311-abi3-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Size 87.1 kB
Tags CPython 3.11 Linux glibc 2.24+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le abi3
SHA-256 checksum
How to use checksums
cc3c3aa9564e043541f19ce7e5d0611b62ff61a5cb694aede9242ae55c18b098
BLAKE2b-256 checksum
How to use checksums
3e905c0bf0c86aba08243769b6eec8ffc9c84df9bede92e8770af43361e3ea4b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp311-abi3-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL pycxxfilt-1.0.0-cp311-abi3-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 79.9 kB
Tags CPython 3.11 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64 abi3
SHA-256 checksum
How to use checksums
b963f5c21da0b238f8b470564e4b246b77c83ed93f18d4ce00b89e2ed1480358
BLAKE2b-256 checksum
How to use checksums
dfbb1d359da60c7b4162f1ad423cde149980e949699fc1caa5f0bf7c5d676bbd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp311-abi3-macosx_11_0_arm64.whl

Download URL pycxxfilt-1.0.0-cp311-abi3-macosx_11_0_arm64.whl
Size 70.4 kB
Tags CPython 3.11 abi3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1e810681a36852de4272bdbe9b512443473898f37e0838584b746b44a0f7c735
BLAKE2b-256 checksum
How to use checksums
d6b35e54c07e667bc96193181d0089fbd209415a1c4cf4bbaa6c36a4a5e33ed5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / pycxxfilt-1.0.0-cp311-abi3-macosx_10_9_x86_64.whl

Download URL pycxxfilt-1.0.0-cp311-abi3-macosx_10_9_x86_64.whl
Size 71.8 kB
Tags CPython 3.11 abi3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
719300aa6e9bcd5c61f2773dcb47dd99a1e850130d877ef04e7e67ab53acd9ed
BLAKE2b-256 checksum
How to use checksums
bc45b8605ef120995ba89debe932eb7edcc0b8c2da294e15382ec7301d0de0e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release history Release notifications | RSS feed

1.1.0

23 release files

This release

1.0.0 This release

23 release files

0.2.0

23 release files

0.1.0

12 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