JSON <-> Parquet encode/decode engine (Arrow + Parquet, in Rust)
Project description
parquet-engine
A small, fast JSON ⇄ Parquet encode/decode engine written in Rust (Arrow +
Parquet via PyO3), distributed as a portable abi3 wheel — no PyArrow / pandas
dependency.
It exists so projects can read and write Parquet (with column-aware encoding for float-heavy data) without pulling the large PyArrow wheel.
Install
pip install parquet-engine
The published wheels are abi3 (built once per platform, work on CPython ≥ 3.10).
Usage
The engine speaks newline-delimited JSON (one JSON object per line):
import json
import parquet_engine as pe
rows = [{"x": 0.1, "y": 1.5, "g": 0}, {"x": 0.2, "y": 1.6, "g": 1}]
ndjson = ("\n".join(json.dumps(r) for r in rows) + "\n").encode()
parquet_bytes = pe.encode(ndjson) # NDJSON -> Parquet (bytes)
ndjson_back = pe.decode(parquet_bytes) # Parquet -> NDJSON (str)
API
encode(data: bytes, encodings: dict[str, str] | None = None,
compression_level: int = 3) -> bytes
decode(data: bytes) -> str
encodeinfers a schema from the NDJSON, writes Parquet with ZSTD compression (compression_level, default 3), and chooses a per-column encoding.decodereads Parquet bytes back into newline-delimited JSON.
Column encoding
By default the encoding is inferred per column:
| Column type | Encoding |
|---|---|
floating point (f16/f32/f64) |
BYTE_STREAM_SPLIT (dictionary off) |
| everything else | dictionary |
This matches the empirical result that byte-stream-split beats dictionary on full-precision floats, while dictionary wins on low-cardinality columns.
Override per column with the encodings map:
pe.encode(ndjson, {"x": "bss", "y": "byte_stream_split",
"g": "dictionary", "id": "plain"})
Accepted values: "bss" / "byte_stream_split", "dictionary" / "dict",
"plain". Unknown values raise ValueError. Columns absent from the map fall
back to inference.
Building from source
maturin develop # build + install into the active venv
maturin build --release # produce a wheel
Windows + MSVC note: if your shell sets
CC/CXXto MinGW (e.g. msys2), the bundledzstdC build will mismatch the MSVC linker. Build with those unset so thecccrate auto-detectscl.exe:env -u CC -u CXX maturin develop.
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
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 parquet_engine-0.1.1.tar.gz.
File metadata
- Download URL: parquet_engine-0.1.1.tar.gz
- Upload date:
- Size: 25.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f7aacfd9d9317241bf6d7e9446fd2b1e661dfe26d68f20d86583aec26ce2b84
|
|
| MD5 |
061b3dd9cae75dca4bfa9b980e8233b9
|
|
| BLAKE2b-256 |
826d604388cdf53245f57d3e2469aa23096b2e953a1408e08f6728d7a18985c6
|
File details
Details for the file parquet_engine-0.1.1-cp314-cp314t-win_arm64.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp314-cp314t-win_arm64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.14t, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22c6a23e1b988f442fa2f9596011e064aae5f049c06f9bc53868b59dc9d9fbca
|
|
| MD5 |
c9cc752e69d78c04ce583845e4b290eb
|
|
| BLAKE2b-256 |
6e22a4b69f33338bd29e891f5de965961c372258e600a558c3b8392620a17c8f
|
File details
Details for the file parquet_engine-0.1.1-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e9ef8bc693ef43c6c118359ae632f4818493ec99b0f9e438096665aec29b668
|
|
| MD5 |
8dfc040970d69f981b1ba27811b9b706
|
|
| BLAKE2b-256 |
ec7a6ae1c9151ed433f04578507fca621b938a5207e116ada6a8f0ca95c7abbb
|
File details
Details for the file parquet_engine-0.1.1-cp314-cp314t-win32.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp314-cp314t-win32.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.14t, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f81ab2d7edd8b7cde126fc8271df4401b488853e38b5d594dc9f27110d19f6f5
|
|
| MD5 |
64083752a8f650400f3614db89f4eafb
|
|
| BLAKE2b-256 |
8f538915104d600185caef63afaa5a0efba7d9e3bcf7d95557f12f9cd2b2d3f9
|
File details
Details for the file parquet_engine-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9eda1b866118f423ac8093150d2722d5f470e91ffc2cf55c799d3250dfbc1b68
|
|
| MD5 |
0874121d84f1391b58262776f4950223
|
|
| BLAKE2b-256 |
9de4a8181f7b1fd83d3369c2767cc7d9d356405927934f7596e29dd199fc9f07
|
File details
Details for the file parquet_engine-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53c66bf61c8bf839c5e18a65e8afa5e3305fc96cdf0b582e2ddaf8c036f9e787
|
|
| MD5 |
909f4cbb45df18075bedb31c863b13df
|
|
| BLAKE2b-256 |
f54495d26e64236c17ab461f0a498abe9648fe224d0fa452b721f63ea9b614e5
|
File details
Details for the file parquet_engine-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c9d1890f1c9e2e1bfe81adce111a28519eef1feebe207ca9993d58941ad935e
|
|
| MD5 |
3e45c2d4f17b18e36682f308f72781ec
|
|
| BLAKE2b-256 |
dfc5e1fade4688cb7f04c6ea370396b780eca84a2a02636f3f273a336c3f0458
|
File details
Details for the file parquet_engine-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43481e83362c37b2d3793bbc88f86cb8a759ce8807032675db5c64dce22f0d1a
|
|
| MD5 |
73087d58bbe7867b14afa960f13dd6f6
|
|
| BLAKE2b-256 |
232dc3da1922e38c63106e69a8ed438882bda653bdd4473954a933467ccce114
|
File details
Details for the file parquet_engine-0.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
643923f45e5bf4366859574daa32d62b47caeea4c6951d68ca05872fe1c2528b
|
|
| MD5 |
c519e19ec60908b02b68a8ecf867b47a
|
|
| BLAKE2b-256 |
4fc49064324626deefbcc62b634efd5968ec6ab8b80d3a44dac847c3713ded82
|
File details
Details for the file parquet_engine-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e8629ad96f923b370a3b0fb3487594c58786c3d5beef62381388f50765369bd
|
|
| MD5 |
ac3c82dc7af0486a2f0be05d20b0ba08
|
|
| BLAKE2b-256 |
9efd2d24a386d5bf216a9039c43abb21103b22d381829940f38bbf9e71ae47cd
|
File details
Details for the file parquet_engine-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f1860ac22889da183765ed713e669f6a08aa6d660611f9187bbd001b54beb7d
|
|
| MD5 |
fddb3a9fe87bc1f3ad5c2a23de894d36
|
|
| BLAKE2b-256 |
61d78335f6445beacf719bb2812b5beda938c8dface0efa7b957e455e601bc5c
|
File details
Details for the file parquet_engine-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef53257345b656edb29b85162aef777ec220dd9bb864d8187f7b3a2d8938db58
|
|
| MD5 |
1dc2170956a9bac4280acb0aced2d9a2
|
|
| BLAKE2b-256 |
01c17a67e362753e021b285053644eeb600544ccbe142d9da2a6679d44d2fbfc
|
File details
Details for the file parquet_engine-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9eb66b79e9eae679735a527624a1590e1634dcb7de60abaa1bf34843889da62
|
|
| MD5 |
41c0ae9b49ebc6e2328939cb8988cabb
|
|
| BLAKE2b-256 |
431d34fc0a32fdbfdd3b73dc9b76ac65daf874e494d2910bac0c0f85df5f9c71
|
File details
Details for the file parquet_engine-0.1.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de1887e1b218e6d148bc8eadc99a405c2f60e7da4e440f408c3a7b890ddb671b
|
|
| MD5 |
611e68b2b5719c182103c70b7c07f2da
|
|
| BLAKE2b-256 |
e500e508c15a5c848c230f47406906daa0715a8447d5f9e0b13c6c48e3763ebe
|
File details
Details for the file parquet_engine-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
680eca0016f424c059604a96f34db03b0cf6f26d2009e2192ec53f31243e9b74
|
|
| MD5 |
3625f7ba67c4d53325c544fbab79853d
|
|
| BLAKE2b-256 |
b003fd23f8d611d9abae33fd860c2ed076906fcac328f80844b33f449d976d2a
|
File details
Details for the file parquet_engine-0.1.1-cp314-cp314t-macosx_10_12_x86_64.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp314-cp314t-macosx_10_12_x86_64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.14t, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdc5cf871110f81d7479cfa44fbf86f6895848a204c727d83e3a67029f86eb6f
|
|
| MD5 |
49ae32be0ff69b068ac435baf50bbce6
|
|
| BLAKE2b-256 |
af925c25f6132f84016fa561ba5bf97258ca1ec74308abc907b4351f9518e97b
|
File details
Details for the file parquet_engine-0.1.1-cp310-abi3-win_arm64.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp310-abi3-win_arm64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.10+, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73b2928d08d14b3a16375fa0019360c1bc22eed5da3f3f1f1ad8a885210cb5cc
|
|
| MD5 |
4b4891152543270634088673443d76f2
|
|
| BLAKE2b-256 |
8ca787e4ecb62e6c856d92e3c0f51fc55210dac615603c070df3a0a8e0093d74
|
File details
Details for the file parquet_engine-0.1.1-cp310-abi3-win_amd64.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp310-abi3-win_amd64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.10+, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a7906db15b1c171f68c0562682474372222d757c1db6e81974a730fee31c4b7
|
|
| MD5 |
ec57d59c25dedf03de81542bbb6caeff
|
|
| BLAKE2b-256 |
bd14af531ed2b8eb05ea0df4970560a0dd366183c6968e6477c8f34b39b30e5b
|
File details
Details for the file parquet_engine-0.1.1-cp310-abi3-win32.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp310-abi3-win32.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.10+, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe0d83c41502f6e74a8970bd76d9bc328c9b47ddc43c51286b9ecbc2b2cd39e5
|
|
| MD5 |
416468ac0dfed008d4f449334b4160c9
|
|
| BLAKE2b-256 |
9dd33e75d2c40a67b8b49e1c1876ceb2916623627e6c07882b91214f5df7fc82
|
File details
Details for the file parquet_engine-0.1.1-cp310-abi3-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp310-abi3-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.10+, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
073656fcf57814657792902f4e56e6473eb6ea04203747ec37bec241057637dc
|
|
| MD5 |
69531f4ff370fd22fd450d7d1d2f6e67
|
|
| BLAKE2b-256 |
cf442dfb69d4392effa63616a596ca424943ab6e9931dd40619627e4eb52b463
|
File details
Details for the file parquet_engine-0.1.1-cp310-abi3-musllinux_1_2_i686.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp310-abi3-musllinux_1_2_i686.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.10+, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80213b5c3671ea71b3700ab4a7286694f3b1813f1217ae51c0db9ad0a2b82594
|
|
| MD5 |
04e9fd8664884ed0c9e962c1b8cf8a30
|
|
| BLAKE2b-256 |
a4fd827a062996e812352f90134b6f781a6cec35dac6e42ff212957172ffd686
|
File details
Details for the file parquet_engine-0.1.1-cp310-abi3-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp310-abi3-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.10+, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1e42fa16f317fb1c45766b9de9f58f80dd5321f15cfe4dc56097686ebeab1a7
|
|
| MD5 |
ae9c7572cc11b64ad613195433fa4d72
|
|
| BLAKE2b-256 |
67ebedfe45459c427627b8487502502c332c35aa1b9341f59fc4485eec5e5129
|
File details
Details for the file parquet_engine-0.1.1-cp310-abi3-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp310-abi3-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.10+, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd26d5fc608c80d475fbe734e640570e17dee50575d50e73ef161e325ed3d490
|
|
| MD5 |
eb0f7d342895be931bd5e000906b1421
|
|
| BLAKE2b-256 |
d4b23d237de24465cdc7d5ce2d9291584b248a0ee072dfa4d77fc07fd46aab87
|
File details
Details for the file parquet_engine-0.1.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.10+, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5cb38e1d5fadc96053f35282643bb0af9f7944544ea0057c694320cbf2930e95
|
|
| MD5 |
8a99b3dd627c456b4d207d6d2d0f0468
|
|
| BLAKE2b-256 |
4a9b3d5b697ae874bd994b50e20df5bd921604734dbc393115addb62277a7017
|
File details
Details for the file parquet_engine-0.1.1-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.10+, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6606f28e4933be0c5345bd8c45713000edcc93942f3f0981962e0dbad2bb0b96
|
|
| MD5 |
70de67b6817e724b32e4dac646053c0e
|
|
| BLAKE2b-256 |
cebf8a510b71d623a5796a08121cb3f65ac638b5842e4f4c0385b2ca015befdd
|
File details
Details for the file parquet_engine-0.1.1-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 5.2 MB
- Tags: CPython 3.10+, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1897b9a802ec770d51655ab04c991625d68a0fac837d7a0d1875cc7a44dae3fa
|
|
| MD5 |
dedad3353acd953026f7f56afe7f1abc
|
|
| BLAKE2b-256 |
aa86470af98ab110a0ae682684994258068d1cac81d93753bd5ef99adb1b6584
|
File details
Details for the file parquet_engine-0.1.1-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.10+, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3a1911e8f31d40c5b076901de187af372a032b96c8260bf9ee50909173ec90b
|
|
| MD5 |
fcb012d43eac3b4e6ad5ba43405afe68
|
|
| BLAKE2b-256 |
7373b3c640d2f62e37bda614f62617edebd194fd2c7576ead60c41d75e66a0c6
|
File details
Details for the file parquet_engine-0.1.1-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.10+, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2dd2c83f5aa85823f91489b38ee6da503c2690d0f575a823bf2ed9b309427fce
|
|
| MD5 |
aed30a90a0f39481db1989848a85e698
|
|
| BLAKE2b-256 |
025b03b5b2dde59cba4a88ec6b2969a8bd323b76c54abe6b29e2a0163ab254f2
|
File details
Details for the file parquet_engine-0.1.1-cp310-abi3-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp310-abi3-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.10+, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9bba7a9e04c8218e6c4f68b394d124594b6a4808ae791e9edee034ad3445849
|
|
| MD5 |
9a5014c2f622b1caa2ab46f530f46bc1
|
|
| BLAKE2b-256 |
822f3a2b63a43e0dd871a57b69398e765888889fcd5a46ad522664ad64eaf8f4
|
File details
Details for the file parquet_engine-0.1.1-cp310-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp310-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.10+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
76da40e21424554cce47ca77e3784421f757b19c7502d9a6d36c021a2367e11a
|
|
| MD5 |
959027d724c593569eac1117e682abbc
|
|
| BLAKE2b-256 |
613e3fc208b5852f0ec99771f182772ec428e289f01c8c8a999f83d396531710
|
File details
Details for the file parquet_engine-0.1.1-cp310-abi3-macosx_10_12_x86_64.whl.
File metadata
- Download URL: parquet_engine-0.1.1-cp310-abi3-macosx_10_12_x86_64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.10+, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2f1694de5a0938b99de821ad188051ac1ebab31b08cd7ef1f575815be144b90
|
|
| MD5 |
6878a1ec8e4813be22c90e98ac2a14dc
|
|
| BLAKE2b-256 |
eb49f122acfc5d5104a2bfd5ada7c8edcd5fcf21446a1bd15935ee1af1cd04b4
|