Fast and memory-efficient PX to CSV converter
Project description
px2csv
Convert PX (PC-Axis) files to CSV fast and memory-efficiently in Python.
We currently support only UTF-8 encoded PX files.
Install from PyPI
pip install px2csv
Convert using file paths
from px2csv import convert
convert("examples/12b4.px", "examples/12b4.csv", include_codes=True, include_labels=True)
For large sparse PX files, skip missing values and avoid repeated label columns:
from px2csv import convert
convert(
"examples/132g.px",
"examples/132g.csv",
include_codes=True,
include_labels=False,
skip_empty=True,
)
Convert using file-like objects (streams)
import io
from px2csv import convert
with open("examples/12b4.px", "rb") as fin, open("examples/12b4.csv", "wb") as fout:
convert(fin, fout, include_codes=True, include_labels=True)
Filter rows while converting (select)
Pass select to keep only the rows you need. Filtering happens inside the C++
converter, so the discarded rows are never materialized.
from px2csv import convert
convert(
"examples/12b4.px",
"examples/12b4.csv",
include_codes=True,
include_labels=True,
select={
"Tiedot": ["arvogwh", "osuuskk"],
"Vuosi": ["2024", "2023"],
},
)
select maps a dimension name to the list of value codes to keep; Only rows that match every selected dimension are
emitted; dimensions omitted from select are kept in full.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file px2csv-1.1.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: px2csv-1.1.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 306.2 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
035163fdce1304466f392efab88a6f41e265195dfd2900dedd2d639965422c43
|
|
| MD5 |
4bcd2b03007fbea4a02d1ffebde0dc72
|
|
| BLAKE2b-256 |
d6e4302e98ca87dc06ac8b5fd43c86f1b36772aa88b15351aba6ea2ece0214d7
|
Provenance
The following attestation bundles were made for px2csv-1.1.0-cp314-cp314-win_amd64.whl:
Publisher:
publish.yml on kustij/px2csv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
px2csv-1.1.0-cp314-cp314-win_amd64.whl -
Subject digest:
035163fdce1304466f392efab88a6f41e265195dfd2900dedd2d639965422c43 - Sigstore transparency entry: 2012317951
- Sigstore integration time:
-
Permalink:
kustij/px2csv@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kustij
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file px2csv-1.1.0-cp314-cp314-win32.whl.
File metadata
- Download URL: px2csv-1.1.0-cp314-cp314-win32.whl
- Upload date:
- Size: 286.9 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
011f1375059ebab86e224b45630fb9656f95e82b75c07447dc6300fd428a5f57
|
|
| MD5 |
3fb4dc17bca53982ca78a6930b021292
|
|
| BLAKE2b-256 |
b96ce77adcec92926ad4f107d70f8d000ae86476557ab4908e89b31d25fab4d7
|
Provenance
The following attestation bundles were made for px2csv-1.1.0-cp314-cp314-win32.whl:
Publisher:
publish.yml on kustij/px2csv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
px2csv-1.1.0-cp314-cp314-win32.whl -
Subject digest:
011f1375059ebab86e224b45630fb9656f95e82b75c07447dc6300fd428a5f57 - Sigstore transparency entry: 2012317699
- Sigstore integration time:
-
Permalink:
kustij/px2csv@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kustij
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file px2csv-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: px2csv-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06e61ed2b3de2ded67b11085809342818359811c4a3d8df8be2a9c58036fc52f
|
|
| MD5 |
9b0ec0465f59a56f057779998039f523
|
|
| BLAKE2b-256 |
3d31800fe23249443eecf51986050d3dfa434654335209e03f12f7af9abf4aca
|
Provenance
The following attestation bundles were made for px2csv-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on kustij/px2csv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
px2csv-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
06e61ed2b3de2ded67b11085809342818359811c4a3d8df8be2a9c58036fc52f - Sigstore transparency entry: 2012317640
- Sigstore integration time:
-
Permalink:
kustij/px2csv@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kustij
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file px2csv-1.1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: px2csv-1.1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.14, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73c605800853217342ff03d7c7dcf0c076b844e916afac14dac62fd6875c36b6
|
|
| MD5 |
7e3aecceb7a607a027231aded64575bd
|
|
| BLAKE2b-256 |
d66f25c9cd71fd14223d009b4dd9032d191136a8cadaa5ca20ff95275ee9c3db
|
Provenance
The following attestation bundles were made for px2csv-1.1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on kustij/px2csv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
px2csv-1.1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
73c605800853217342ff03d7c7dcf0c076b844e916afac14dac62fd6875c36b6 - Sigstore transparency entry: 2012316250
- Sigstore integration time:
-
Permalink:
kustij/px2csv@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kustij
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file px2csv-1.1.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: px2csv-1.1.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 103.1 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a807c91176123b2ad12ba92a3e3818f60f59f208a8ef53a08ec7643d6584848a
|
|
| MD5 |
709d981acad7d12b1c177115bb03fad2
|
|
| BLAKE2b-256 |
caf834482ecc8af49776c5846466e893b5cecd69b26d105d9402bdabaf5ede32
|
Provenance
The following attestation bundles were made for px2csv-1.1.0-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
publish.yml on kustij/px2csv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
px2csv-1.1.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
a807c91176123b2ad12ba92a3e3818f60f59f208a8ef53a08ec7643d6584848a - Sigstore transparency entry: 2012316837
- Sigstore integration time:
-
Permalink:
kustij/px2csv@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kustij
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file px2csv-1.1.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: px2csv-1.1.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 297.0 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e79a997cc190f8e9a983bd8d308b389a56fa5b27854fad37752a399b3d02f98c
|
|
| MD5 |
632d9237ff361e26f3a65b44cf64400b
|
|
| BLAKE2b-256 |
a971af751005553816b0bed5372c993d76f56ed323185478e2f7a067209a3a3a
|
Provenance
The following attestation bundles were made for px2csv-1.1.0-cp313-cp313-win_amd64.whl:
Publisher:
publish.yml on kustij/px2csv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
px2csv-1.1.0-cp313-cp313-win_amd64.whl -
Subject digest:
e79a997cc190f8e9a983bd8d308b389a56fa5b27854fad37752a399b3d02f98c - Sigstore transparency entry: 2012317784
- Sigstore integration time:
-
Permalink:
kustij/px2csv@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kustij
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file px2csv-1.1.0-cp313-cp313-win32.whl.
File metadata
- Download URL: px2csv-1.1.0-cp313-cp313-win32.whl
- Upload date:
- Size: 279.2 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e8e627fcf8b2821d1ac9de175ce5f0b74641be18cc3dccd30cea1a724455f8b
|
|
| MD5 |
e6853d6cacafb1f14a6947c454359281
|
|
| BLAKE2b-256 |
29e8e734c30d9dfe147d07acb755f351016a8f60a6b810cef185495ef73fad76
|
Provenance
The following attestation bundles were made for px2csv-1.1.0-cp313-cp313-win32.whl:
Publisher:
publish.yml on kustij/px2csv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
px2csv-1.1.0-cp313-cp313-win32.whl -
Subject digest:
7e8e627fcf8b2821d1ac9de175ce5f0b74641be18cc3dccd30cea1a724455f8b - Sigstore transparency entry: 2012318093
- Sigstore integration time:
-
Permalink:
kustij/px2csv@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kustij
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file px2csv-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: px2csv-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d65517d655e2740641ae3e96244b08b40070e45768a22df970c1865c66f37b7f
|
|
| MD5 |
9ba041420faf2ef1a26c9d60a3ddc8b3
|
|
| BLAKE2b-256 |
19832f998f6ae7d589722338759c921cc4cb46ddaf366da1dd0efdee76f101a3
|
Provenance
The following attestation bundles were made for px2csv-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on kustij/px2csv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
px2csv-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
d65517d655e2740641ae3e96244b08b40070e45768a22df970c1865c66f37b7f - Sigstore transparency entry: 2012317747
- Sigstore integration time:
-
Permalink:
kustij/px2csv@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kustij
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file px2csv-1.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: px2csv-1.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b21170acdb90f45581072db5fa5b3cc1eed1f2036434e34ffa34f2a80d9a7d5b
|
|
| MD5 |
ff7427c5188121733b007d027db6a69c
|
|
| BLAKE2b-256 |
780161a762678b8b3b7356c8a174a9e612658fd605799528003809c79380b910
|
Provenance
The following attestation bundles were made for px2csv-1.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on kustij/px2csv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
px2csv-1.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
b21170acdb90f45581072db5fa5b3cc1eed1f2036434e34ffa34f2a80d9a7d5b - Sigstore transparency entry: 2012317299
- Sigstore integration time:
-
Permalink:
kustij/px2csv@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kustij
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file px2csv-1.1.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: px2csv-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 105.1 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a400126853fad2860ab26cdd1b0d35ebb1abe35e926f8a4d7ec96618e6759098
|
|
| MD5 |
751c9d4810dac11e234e3b0a5fd924b6
|
|
| BLAKE2b-256 |
9508e5ed0b5b273a9bd7406fe1e443572ab23755f538d1f985157ff0648835c5
|
Provenance
The following attestation bundles were made for px2csv-1.1.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
publish.yml on kustij/px2csv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
px2csv-1.1.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
a400126853fad2860ab26cdd1b0d35ebb1abe35e926f8a4d7ec96618e6759098 - Sigstore transparency entry: 2012316455
- Sigstore integration time:
-
Permalink:
kustij/px2csv@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kustij
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file px2csv-1.1.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: px2csv-1.1.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 297.0 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df1ccc1418ec06c61f4c97f7289ac9df2d41182a0da99629a98cbe993e6ae905
|
|
| MD5 |
abfcb3ea71ae7d7fcecd606ba70e86cb
|
|
| BLAKE2b-256 |
4c628b033eafdd073e9115a91725825b183d9601814e5b76cf2b1f20135603ec
|
Provenance
The following attestation bundles were made for px2csv-1.1.0-cp312-cp312-win_amd64.whl:
Publisher:
publish.yml on kustij/px2csv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
px2csv-1.1.0-cp312-cp312-win_amd64.whl -
Subject digest:
df1ccc1418ec06c61f4c97f7289ac9df2d41182a0da99629a98cbe993e6ae905 - Sigstore transparency entry: 2012317199
- Sigstore integration time:
-
Permalink:
kustij/px2csv@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kustij
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file px2csv-1.1.0-cp312-cp312-win32.whl.
File metadata
- Download URL: px2csv-1.1.0-cp312-cp312-win32.whl
- Upload date:
- Size: 279.2 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ba33cbd1e3c5413e9f434440f195059fed6fd76ee52fadf42f1290df211bb52
|
|
| MD5 |
4648a53f677680a9f44a77c16ecb754a
|
|
| BLAKE2b-256 |
8d4f66fdedcaa3e79b701e9d5170528df5a276d577a771105b78b72ab0df6790
|
Provenance
The following attestation bundles were made for px2csv-1.1.0-cp312-cp312-win32.whl:
Publisher:
publish.yml on kustij/px2csv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
px2csv-1.1.0-cp312-cp312-win32.whl -
Subject digest:
0ba33cbd1e3c5413e9f434440f195059fed6fd76ee52fadf42f1290df211bb52 - Sigstore transparency entry: 2012317834
- Sigstore integration time:
-
Permalink:
kustij/px2csv@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kustij
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file px2csv-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: px2csv-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27fd4c9a728952987dc8cfca1baf0a364fb5324d504a6719f205300ecba85945
|
|
| MD5 |
e0f643a50df4f4b464b9c0e3cf906175
|
|
| BLAKE2b-256 |
9aa97095f5fe46005810890be7dc547c3619fc31ab8e1ba0a901b9733322677a
|
Provenance
The following attestation bundles were made for px2csv-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on kustij/px2csv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
px2csv-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
27fd4c9a728952987dc8cfca1baf0a364fb5324d504a6719f205300ecba85945 - Sigstore transparency entry: 2012316980
- Sigstore integration time:
-
Permalink:
kustij/px2csv@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kustij
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file px2csv-1.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: px2csv-1.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
985700a04a9f9b8e4d524b864cb9474563f8cb2402cb23a2897343702b32f4f7
|
|
| MD5 |
793eabcb360de580024b2f3eeb13bcb8
|
|
| BLAKE2b-256 |
e10ee524866c312062fc56fd8c0fd6f1b87c6b4a86fdc81a22a859f13504fb30
|
Provenance
The following attestation bundles were made for px2csv-1.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on kustij/px2csv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
px2csv-1.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
985700a04a9f9b8e4d524b864cb9474563f8cb2402cb23a2897343702b32f4f7 - Sigstore transparency entry: 2012316666
- Sigstore integration time:
-
Permalink:
kustij/px2csv@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kustij
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file px2csv-1.1.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: px2csv-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 102.9 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db71bf34e039cf50f9d66a510abf972d668086d4f107852e1049a18f3ceec205
|
|
| MD5 |
f22c25798aa6086a6f1319d0cf487356
|
|
| BLAKE2b-256 |
6a4c40411c5c70b0134ed7ea9613ad4143c20cfc8c8adea92635bee6a400de1c
|
Provenance
The following attestation bundles were made for px2csv-1.1.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
publish.yml on kustij/px2csv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
px2csv-1.1.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
db71bf34e039cf50f9d66a510abf972d668086d4f107852e1049a18f3ceec205 - Sigstore transparency entry: 2012318017
- Sigstore integration time:
-
Permalink:
kustij/px2csv@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kustij
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file px2csv-1.1.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: px2csv-1.1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 296.1 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f416e559fc7e4dd6faae8e3457727bd166ab39755e67a33e678b047fdae9834d
|
|
| MD5 |
6e68f166c498aa09da57f86b08896979
|
|
| BLAKE2b-256 |
f114abe9e6f3ed942adef601ab3759a0ef1b593d5657e443519e6afc5c160df2
|
Provenance
The following attestation bundles were made for px2csv-1.1.0-cp311-cp311-win_amd64.whl:
Publisher:
publish.yml on kustij/px2csv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
px2csv-1.1.0-cp311-cp311-win_amd64.whl -
Subject digest:
f416e559fc7e4dd6faae8e3457727bd166ab39755e67a33e678b047fdae9834d - Sigstore transparency entry: 2012317889
- Sigstore integration time:
-
Permalink:
kustij/px2csv@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kustij
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file px2csv-1.1.0-cp311-cp311-win32.whl.
File metadata
- Download URL: px2csv-1.1.0-cp311-cp311-win32.whl
- Upload date:
- Size: 279.0 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35237d0936874b1cd8d03c5755ae1f9fffbd8071347c1b0572386024dbff78aa
|
|
| MD5 |
6630ddb205ee338414c6316e79bd13ee
|
|
| BLAKE2b-256 |
419bd21e1f72e77592049c36b9458e75f53f9ee68b8d9a2b3ccfc2c3a07c2bfa
|
Provenance
The following attestation bundles were made for px2csv-1.1.0-cp311-cp311-win32.whl:
Publisher:
publish.yml on kustij/px2csv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
px2csv-1.1.0-cp311-cp311-win32.whl -
Subject digest:
35237d0936874b1cd8d03c5755ae1f9fffbd8071347c1b0572386024dbff78aa - Sigstore transparency entry: 2012317494
- Sigstore integration time:
-
Permalink:
kustij/px2csv@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kustij
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file px2csv-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: px2csv-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b82fe95dba2eacd393f7b37834f3aca657ba3a6836a83e82a9586aa70415433
|
|
| MD5 |
6ad03d41e6ca8c332f2cf099ee078841
|
|
| BLAKE2b-256 |
383b94ae6f809514b7b467a9e0dd7942f27532d39ece9e9ecf13c9c76e5fd7f7
|
Provenance
The following attestation bundles were made for px2csv-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on kustij/px2csv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
px2csv-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
7b82fe95dba2eacd393f7b37834f3aca657ba3a6836a83e82a9586aa70415433 - Sigstore transparency entry: 2012317569
- Sigstore integration time:
-
Permalink:
kustij/px2csv@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kustij
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file px2csv-1.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: px2csv-1.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5c3848b6c128ac8d561be7bff1c840474232dff26ca78a102498166dac088bb
|
|
| MD5 |
06602d3058c246ca0e41492330f71370
|
|
| BLAKE2b-256 |
bfc19615605b2360172ac47ecdc79f63662b9128e8f86b532218b7bac1482c8e
|
Provenance
The following attestation bundles were made for px2csv-1.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on kustij/px2csv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
px2csv-1.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
a5c3848b6c128ac8d561be7bff1c840474232dff26ca78a102498166dac088bb - Sigstore transparency entry: 2012317090
- Sigstore integration time:
-
Permalink:
kustij/px2csv@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kustij
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file px2csv-1.1.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: px2csv-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 102.5 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7dc4e3d478c862843b82e4ecfbe1f0f34a64e02bce354b376a06d85c8655f0ac
|
|
| MD5 |
33b971eb22a7ef88ecf2964c08e9b489
|
|
| BLAKE2b-256 |
65562d16acf06203552d842c28086d807f03cfa9176e4826024bc958edbcf92f
|
Provenance
The following attestation bundles were made for px2csv-1.1.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
publish.yml on kustij/px2csv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
px2csv-1.1.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
7dc4e3d478c862843b82e4ecfbe1f0f34a64e02bce354b376a06d85c8655f0ac - Sigstore transparency entry: 2012317386
- Sigstore integration time:
-
Permalink:
kustij/px2csv@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kustij
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a184f556aadf472d28d0b1fb17bdf75cb0e3fd4f -
Trigger Event:
workflow_dispatch
-
Statement type: