pycxxfilt
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.
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.
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 0.2.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pycxxfilt-0.2.0.tar.gz | 658.2 kB | Details |
Built distributions (wheels)
| File | Reset | |||
|---|---|---|---|---|
| pycxxfilt-0.2.0-cp314-cp314t-win_amd64.whl | CPython 3.14 | CPython 3.14 free-threading | Windows x86-64 | Details |
| pycxxfilt-0.2.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-0.2.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-0.2.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-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl | CPython 3.14 | CPython 3.14 free-threading | Linux musl 1.2+ ARM64 | Details |
| pycxxfilt-0.2.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.24+ x86-64, Linux glibc 2.28+ x86-64 | Details |
| pycxxfilt-0.2.0-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl | CPython 3.14 | CPython 3.14 free-threading | Linux glibc 2.24+ IBM System/390x, Linux glibc 2.28+ IBM System/390x | Details |
| pycxxfilt-0.2.0-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl | CPython 3.14 | CPython 3.14 free-threading | Linux glibc 2.24+ PowerPC 64-le, Linux glibc 2.28+ PowerPC 64-le | Details |
| pycxxfilt-0.2.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl | CPython 3.14 | CPython 3.14 free-threading | Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 | Details |
| pycxxfilt-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl | CPython 3.14 | CPython 3.14 free-threading | macOS 11.0+ ARM64 | Details |
| pycxxfilt-0.2.0-cp314-cp314t-macosx_10_15_x86_64.whl | CPython 3.14 | CPython 3.14 free-threading | macOS 10.15+ x86-64 | Details |
| pycxxfilt-0.2.0-cp311-abi3-win_amd64.whl | CPython 3.11 | abi3 | Windows x86-64 | Details |
| pycxxfilt-0.2.0-cp311-abi3-musllinux_1_2_x86_64.whl | CPython 3.11 | abi3 | Linux musl 1.2+ x86-64 | Details |
| pycxxfilt-0.2.0-cp311-abi3-musllinux_1_2_s390x.whl | CPython 3.11 | abi3 | Linux musl 1.2+ IBM System/390x | Details |
| pycxxfilt-0.2.0-cp311-abi3-musllinux_1_2_ppc64le.whl | CPython 3.11 | abi3 | Linux musl 1.2+ PowerPC 64-le | Details |
| pycxxfilt-0.2.0-cp311-abi3-musllinux_1_2_aarch64.whl | CPython 3.11 | abi3 | Linux musl 1.2+ ARM64 | Details |
| pycxxfilt-0.2.0-cp311-abi3-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl | CPython 3.11 | abi3 | Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 | Details |
| pycxxfilt-0.2.0-cp311-abi3-manylinux_2_24_s390x.manylinux_2_28_s390x.whl | CPython 3.11 | abi3 | Linux glibc 2.28+ IBM System/390x, Linux glibc 2.24+ IBM System/390x | Details |
| pycxxfilt-0.2.0-cp311-abi3-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl | CPython 3.11 | abi3 | Linux glibc 2.24+ PowerPC 64-le, Linux glibc 2.28+ PowerPC 64-le | Details |
| pycxxfilt-0.2.0-cp311-abi3-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl | CPython 3.11 | abi3 | Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 | Details |
| pycxxfilt-0.2.0-cp311-abi3-macosx_11_0_arm64.whl | CPython 3.11 | abi3 | macOS 11.0+ ARM64 | Details |
| pycxxfilt-0.2.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-0.2.0.tar.gz
| Download URL | pycxxfilt-0.2.0.tar.gz |
|---|---|
| Size | 658.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
142df4d78c4e9bcfc7d685576ae4adb6efff25073b2a758cff2dfcadf52e3a04
|
|
BLAKE2b-256 checksum How to use checksums |
a70eca37fa85aa179bebc13f37db8dd0528f622ab9610c885c898e3f50f00e31
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp314-cp314t-win_amd64.whl
| Download URL | pycxxfilt-0.2.0-cp314-cp314t-win_amd64.whl |
|---|---|
| Size | 62.6 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows x86-64 |
|
SHA-256 checksum How to use checksums |
7e9f437bdd8251e9eaafff942ffa51de49332e9a83c00d6dc8cd84f0fa5c6427
|
|
BLAKE2b-256 checksum How to use checksums |
91ef34a86636beabfefc778ad8adc40f0f6c8e1d90255500961ecfc205e714b9
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
| Download URL | pycxxfilt-0.2.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 |
9c9777351d810c2ed2870839494cd66fefd18448916c69175f4504243dac9e9d
|
|
BLAKE2b-256 checksum How to use checksums |
d0f2e21379b234b661183e92a6078b0ca3ca1ec42297ae0a4e7361a2ff9502b1
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp314-cp314t-musllinux_1_2_s390x.whl
| Download URL | pycxxfilt-0.2.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 |
464ba013e38b392521e0a5d5768c8e2f07670333c9f41c172b916f9bc3778576
|
|
BLAKE2b-256 checksum How to use checksums |
55b61fd7127be8a0bad51ed251fa6f3d95b1c944d51719a96d92fa42c12a7e12
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
| Download URL | pycxxfilt-0.2.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 |
57c11f1fcbb835bfbabedbe04357af8499942a3bb82a75d94ee26f8ba0c12265
|
|
BLAKE2b-256 checksum How to use checksums |
2c1cc697e4a7ea1a34aa4bc18f363b45d41210f823c2c99496351ea80fe60943
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
| Download URL | pycxxfilt-0.2.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 |
71c21c73ccac0ccc0296973ce32cc9fa8bd5ed337ec508df6619b7fd61d7e41c
|
|
BLAKE2b-256 checksum How to use checksums |
073a8a3b8f7abb20519460502996f4bbd65ea8846dbe03e93dd67f0a276928e7
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
| Download URL | pycxxfilt-0.2.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 81.1 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 |
6b02c40324a08d0f89479a7d054de6164f586f54e48f040676800c9443b6018b
|
|
BLAKE2b-256 checksum How to use checksums |
c3d3ca33316eb09150ec3bf1358258236b510c4c602eadc5b6fab4f2ff0bf038
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl
| Download URL | pycxxfilt-0.2.0-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl |
|---|---|
| Size | 86.8 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 |
517017288e1b6ad19388ff0267618f164dd5ae60e1b91904911a618399cd99d9
|
|
BLAKE2b-256 checksum How to use checksums |
21a85bdda31b5ca55cf068907cfcfdc726c76b6fdf4507bd9fa19f2a4e34fdd8
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
| Download URL | pycxxfilt-0.2.0-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 86.5 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 |
bf303a56f91810654c6622c61ae0f2d4b1045be360d8f1c207165428e2ace5e0
|
|
BLAKE2b-256 checksum How to use checksums |
9dc1f7e61dc2d5abfbc3ccf214dfcc54500e24e3663e8f9933b7a79e89ec0eee
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
| Download URL | pycxxfilt-0.2.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 79.1 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 |
1998a92967f1f1085584231e0c9b02c6acdf300a53208bd2931cdc6a75a14185
|
|
BLAKE2b-256 checksum How to use checksums |
68545a1a2195d0d12853c4ef7cd8a76bd836943b989831f4aeda1da3f48ca8b9
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl
| Download URL | pycxxfilt-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl |
|---|---|
| Size | 69.6 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
b486305baffaa010e2820d80b0e114f2c13b2cd516a926d9b9ffabcebd2f557c
|
|
BLAKE2b-256 checksum How to use checksums |
17da689361026a57ce814f567dedf2ad63295b29e6cb326dec7559c93636b58e
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp314-cp314t-macosx_10_15_x86_64.whl
| Download URL | pycxxfilt-0.2.0-cp314-cp314t-macosx_10_15_x86_64.whl |
|---|---|
| Size | 71.3 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
7d8abb2fc5f24c74069bc52425a0c30e87cebf388ac844ba9934d56e43062aa7
|
|
BLAKE2b-256 checksum How to use checksums |
b316be3b33a2da9dc28eafc12f95641248f5414ed33bbf93b0fb18d7be47fd65
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp311-abi3-win_amd64.whl
| Download URL | pycxxfilt-0.2.0-cp311-abi3-win_amd64.whl |
|---|---|
| Size | 61.4 kB |
| Tags | CPython 3.11 Windows x86-64 abi3 |
|
SHA-256 checksum How to use checksums |
599562bee215bde779a8f974a65b3d3b5958d101559aff71472e13bfb9fe10d0
|
|
BLAKE2b-256 checksum How to use checksums |
9bb44d499cf5666cbb261959993a7004ad2e14d36b04a91884a391b1bbf6ddd8
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp311-abi3-musllinux_1_2_x86_64.whl
| Download URL | pycxxfilt-0.2.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 |
4adb6777a91087901f551541b4a677bb22bf2b66c57ba23844c355ec550eefa8
|
|
BLAKE2b-256 checksum How to use checksums |
1b58f92f3ed4a607ddaa2b47aa290ed534bad0086c3316d8a46bb237efda1363
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp311-abi3-musllinux_1_2_s390x.whl
| Download URL | pycxxfilt-0.2.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 |
778aa11f50cb211b1f08c4fe6fe87e931ddc35ebdd08ffccbff1017794e4320a
|
|
BLAKE2b-256 checksum How to use checksums |
616d284996acf0d8a3cf632fe6a8341254c4692ab3196e630f332f071ec76617
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp311-abi3-musllinux_1_2_ppc64le.whl
| Download URL | pycxxfilt-0.2.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 |
cf8fb4b0a2e1594382e4bbe4f6f2c4d90ce6ce297268e53324cec58b11abf91a
|
|
BLAKE2b-256 checksum How to use checksums |
aa9346ff80bf41c37bb115d2be6fbe592a4a11ec6d32ed464c11982d14717797
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp311-abi3-musllinux_1_2_aarch64.whl
| Download URL | pycxxfilt-0.2.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 |
feaf583dc932c2b43a98f8460a7e40d0fbd930a56e1441a055474abc0e3c263c
|
|
BLAKE2b-256 checksum How to use checksums |
52d4c50f4f4ee784c539e15a475bd978d2113c4bf014b581595f5a8bafc442ab
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp311-abi3-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
| Download URL | pycxxfilt-0.2.0-cp311-abi3-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 80.9 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 |
5d4ed705be6b8b7c13d3155b6c8f7dc0e9e23c5ef99fbf18acbee90e779b33d0
|
|
BLAKE2b-256 checksum How to use checksums |
baa8ba71cc38ee47b026a7c37794428a202532fa700bcf7abc70c5829594945d
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp311-abi3-manylinux_2_24_s390x.manylinux_2_28_s390x.whl
| Download URL | pycxxfilt-0.2.0-cp311-abi3-manylinux_2_24_s390x.manylinux_2_28_s390x.whl |
|---|---|
| Size | 86.7 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 |
ff7be66862c470782144c965566501d8ace7cf8b1af1292b927e58b622719ff3
|
|
BLAKE2b-256 checksum How to use checksums |
b59d989bb93198ef7ff510509e4d8bcb62ec1bd25c8b387f74492008ccd85e3a
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp311-abi3-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
| Download URL | pycxxfilt-0.2.0-cp311-abi3-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 86.2 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 |
9731c8a3100c6cf8ff6d29a85b8427b1396f7ef2be33d1647fb42341f4ce67c4
|
|
BLAKE2b-256 checksum How to use checksums |
38be83672e04bb336bc3347026bcc22042ccc92b9b0f2533189c1ff910517fb1
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp311-abi3-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
| Download URL | pycxxfilt-0.2.0-cp311-abi3-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 79.0 kB |
| Tags | CPython 3.11 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64 abi3 |
|
SHA-256 checksum How to use checksums |
125d6d40ac4a45bcadfa9f6f678b4169e94aa3c0276e28011b6d10918ec2d7ab
|
|
BLAKE2b-256 checksum How to use checksums |
5bb26425772fa5d879019396b2d669e63399eb677bbefd5fabe829ebb372e190
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp311-abi3-macosx_11_0_arm64.whl
| Download URL | pycxxfilt-0.2.0-cp311-abi3-macosx_11_0_arm64.whl |
|---|---|
| Size | 69.5 kB |
| Tags | CPython 3.11 abi3 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
c6e286ebb205a22e46979f1afcb26a6a813ef53f2532fee5f51cf331696d6357
|
|
BLAKE2b-256 checksum How to use checksums |
f6faad0e4e3bf464be9d29469a7fa69d176e9c13aab3f0afba326596e4cb5357
|
| 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 Aug 31, 2026.
Transparency logRelease files / pycxxfilt-0.2.0-cp311-abi3-macosx_10_9_x86_64.whl
| Download URL | pycxxfilt-0.2.0-cp311-abi3-macosx_10_9_x86_64.whl |
|---|---|
| Size | 71.0 kB |
| Tags | CPython 3.11 abi3 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
8366750a92d7177da97f977146f0ee1f0a9b6d24ab7cf1183db1faf6dc7b2e50
|
|
BLAKE2b-256 checksum How to use checksums |
983457ec23a5d13d54ec3a40792ebcfae283a723692f4c83e8d261f3333495c0
|
| 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 Aug 31, 2026.
Transparency log