Skip to main content

fastparquet

https://github.com/dask/fastparquet/actions/workflows/main.yaml/badge.svg https://readthedocs.org/projects/fastparquet/badge/?version=latest

fastparquet is a python implementation of the parquet format, aiming integrate into python-based big data work-flows. It is used implicitly by the projects Dask, Pandas and intake-parquet.

We offer a high degree of support for the features of the parquet format, and very competitive performance, in a small install size and codebase.

Details of this project, how to use it and comparisons to other work can be found in the documentation.

Requirements

(all development is against recent versions in the default anaconda channels and/or conda-forge)

Required:

  • numpy

  • pandas

  • cython >= 0.29.23 (if building from pyx files)

  • cramjam

  • fsspec

Supported compression algorithms:

  • Available by default:

    • gzip

    • snappy

    • brotli

    • lz4

    • zstandard

  • Optionally supported

Installation

Install using conda, to get the latest compiled version:

conda install -c conda-forge fastparquet

or install from PyPI:

pip install fastparquet

You may wish to install numpy first, to help pip’s resolver. This may install an appropriate wheel, or compile from source. For the latter, you will need a suitable C compiler toolchain on your system.

You can also install latest version from github:

pip install git+https://github.com/dask/fastparquet

in which case you should also have cython to be able to rebuild the C files.

Usage

Please refer to the documentation.

Reading

from fastparquet import ParquetFile
pf = ParquetFile('myfile.parq')
df = pf.to_pandas()
df2 = pf.to_pandas(['col1', 'col2'], categories=['col1'])

You may specify which columns to load, which of those to keep as categoricals (if the data uses dictionary encoding). The file-path can be a single file, a metadata file pointing to other data files, or a directory (tree) containing data files. The latter is what is typically output by hive/spark.

Writing

from fastparquet import write
write('outfile.parq', df)
write('outfile2.parq', df, row_group_offsets=[0, 10000, 20000],
      compression='GZIP', file_scheme='hive')

The default is to produce a single output file with a single row-group (i.e., logical segment) and no compression. At the moment, only simple data-types and plain encoding are supported, so expect performance to be similar to numpy.savez.

History

This project forked in October 2016 from parquet-python, which was not designed for vectorised loading of big data or parallel access.

Release files for fastparquet 2026.9.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 fastparquet 2026.9.0
File Size Uploaded
fastparquet-2026.9.0.tar.gz 525.2 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for fastparquet 2026.9.0
File
fastparquet-2026.9.0-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
fastparquet-2026.9.0-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
fastparquet-2026.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
fastparquet-2026.9.0-cp314-cp314t-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32 Details
fastparquet-2026.9.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
fastparquet-2026.9.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
fastparquet-2026.9.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.5+ x86-32, Linux glibc 2.28+ x86-32 Details
fastparquet-2026.9.0-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
fastparquet-2026.9.0-cp314-cp314t-macosx_10_15_universal2.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ universal2 (ARM64, x86-64) Details
fastparquet-2026.9.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
fastparquet-2026.9.0-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
fastparquet-2026.9.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
fastparquet-2026.9.0-cp314-cp314-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-32 Details
fastparquet-2026.9.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
fastparquet-2026.9.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
fastparquet-2026.9.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-32, Linux glibc 2.5+ x86-32 Details
fastparquet-2026.9.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
fastparquet-2026.9.0-cp314-cp314-macosx_10_15_universal2.whl CPython 3.14 CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64) Details
fastparquet-2026.9.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
fastparquet-2026.9.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
fastparquet-2026.9.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
fastparquet-2026.9.0-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
fastparquet-2026.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
fastparquet-2026.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
fastparquet-2026.9.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.5+ x86-32, Linux glibc 2.28+ x86-32 Details
fastparquet-2026.9.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
fastparquet-2026.9.0-cp313-cp313-macosx_10_13_universal2.whl CPython 3.13 CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64) Details
fastparquet-2026.9.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
fastparquet-2026.9.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
fastparquet-2026.9.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
fastparquet-2026.9.0-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
fastparquet-2026.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
fastparquet-2026.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
fastparquet-2026.9.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-32, Linux glibc 2.5+ x86-32 Details
fastparquet-2026.9.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
fastparquet-2026.9.0-cp312-cp312-macosx_10_13_universal2.whl CPython 3.12 CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64) Details
fastparquet-2026.9.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
fastparquet-2026.9.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
fastparquet-2026.9.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
fastparquet-2026.9.0-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
fastparquet-2026.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
fastparquet-2026.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
fastparquet-2026.9.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-32, Linux glibc 2.5+ x86-32 Details
fastparquet-2026.9.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
fastparquet-2026.9.0-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
fastparquet-2026.9.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
fastparquet-2026.9.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
fastparquet-2026.9.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
fastparquet-2026.9.0-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
fastparquet-2026.9.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
fastparquet-2026.9.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
fastparquet-2026.9.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-32, Linux glibc 2.5+ x86-32 Details
fastparquet-2026.9.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
fastparquet-2026.9.0-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details

Total release size: 79.7 MB

Release files / fastparquet-2026.9.0.tar.gz

Download URL fastparquet-2026.9.0.tar.gz
Size 525.2 kB
Tags Source
SHA-256 checksum
How to use checksums
bdf391e7d212707c884ad0ea6047719b7a1b2b4642b8d79d223b4d745f3bd4bb
BLAKE2b-256 checksum
How to use checksums
dd8a931300515567b64646c54d3a03484db1c588b14c0f1128c9f60e04b2fb14
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp314-cp314t-win_amd64.whl

Download URL fastparquet-2026.9.0-cp314-cp314t-win_amd64.whl
Size 744.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
fc040b9589a718f950cf5b889e1de7d4a9e157305b4ac380ee1a0e3450642e00
BLAKE2b-256 checksum
How to use checksums
8644adcb86fb86055a2f6a216c53018610ca0c6a7e3b9c793a03cfa53cdbe3ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp314-cp314t-win32.whl

Download URL fastparquet-2026.9.0-cp314-cp314t-win32.whl
Size 705.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
6c10e401bf26052ae6d9d34925b0070251aeadb08e6c39365ad0fffa497caa0a
BLAKE2b-256 checksum
How to use checksums
b326facdaaf7c4058a615be87952c7e5a2e8eb23522cda4545eaac657dbc8bf0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL fastparquet-2026.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 2.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ef4e7703145bc99b783c1925777127192b66cddd675bde413e563bcb1ac12b5c
BLAKE2b-256 checksum
How to use checksums
fe66325ebcbeaa6c1b7dc5ea1af55462e46fea6fb13215d96f9ea2074e452b14
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp314-cp314t-musllinux_1_2_i686.whl

Download URL fastparquet-2026.9.0-cp314-cp314t-musllinux_1_2_i686.whl
Size 2.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
739dfe8f7281d1ad0c694d4918f6b511e0ff3e62493a21ca74fd40e2bb8c4e48
BLAKE2b-256 checksum
How to use checksums
5bbdbf9491725aa291db9ef909bf21e1ef06440dd6b7ec88b054991d4ec90a41
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL fastparquet-2026.9.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
8b0992d27260e46b7fd89b60766871e8788154382fb941acc1b18a27f5de051f
BLAKE2b-256 checksum
How to use checksums
bc8b0eafe25200fd1b3c323632e855358d61142256fcd6febeb5d950463b4ff9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL fastparquet-2026.9.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
92b950945be8145d29e3f9dd8154ec0dc86652a6d6176a88fb79307f123ed4d4
BLAKE2b-256 checksum
How to use checksums
f09efb59ea0c68c6b92f013a80cea455cedc9c88cfd63a0c4ac76011e888533a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl

Download URL fastparquet-2026.9.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 2.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
183a0a458cfeac74a1cfcaaec1392f6882891b4ec18547fddc7c2a4203786470
BLAKE2b-256 checksum
How to use checksums
71914e21fb2dfe0d0618266c6c081324205e8862f8aee4f4495b13e2e2225dc0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp314-cp314t-macosx_11_0_arm64.whl

Download URL fastparquet-2026.9.0-cp314-cp314t-macosx_11_0_arm64.whl
Size 775.6 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
bd9401b8790889ef1babe859bd704b4ece261a0729a572e24cfed1174bb64d2e
BLAKE2b-256 checksum
How to use checksums
9ebe4420383bad2d399a994e01903af6cd5d03e9629fb499003d65df4285fec2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp314-cp314t-macosx_10_15_universal2.whl

Download URL fastparquet-2026.9.0-cp314-cp314t-macosx_10_15_universal2.whl
Size 1.0 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
b6a3bc01da382934719063a83a3978d0106c5a2a9f7b2a50254eb16fd2ce3490
BLAKE2b-256 checksum
How to use checksums
409a9ff4854dbb4d1e936ac8a91e68dbf43f09ae9c1cdbd5f85b3e782c8b7f61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp314-cp314-win_amd64.whl

Download URL fastparquet-2026.9.0-cp314-cp314-win_amd64.whl
Size 729.0 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
4f1e53aca12d00da3a2f55b98451b77cb04dda2fdeba675056152672eb42ada6
BLAKE2b-256 checksum
How to use checksums
46d66653d96cce174d78c969de0dc2234407794b2394b96c0fad73fb00c247e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp314-cp314-win32.whl

Download URL fastparquet-2026.9.0-cp314-cp314-win32.whl
Size 691.5 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
7cb11f3002072c16731a2b7b4872067c19da63fd62f45b79f28d1bd91d71fb86
BLAKE2b-256 checksum
How to use checksums
5cba0419c33af1f71b21f07c020241db73a27bdb405e1f736af52f63cca0be62
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL fastparquet-2026.9.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 2.0 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
1621be24697c068a0c8cf7c5965e0ee9f97908667df259e4fb5e718071fe762a
BLAKE2b-256 checksum
How to use checksums
6fbaa442ddfd9c93b9ff054627258d912250eb8b28a6f2da05f3270d02048dfd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp314-cp314-musllinux_1_2_i686.whl

Download URL fastparquet-2026.9.0-cp314-cp314-musllinux_1_2_i686.whl
Size 2.0 MB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
5f3e7422efd94a5e5b38bb0af3b676ad0b1523a39ae98d8f51ed9ed0d7043ea0
BLAKE2b-256 checksum
How to use checksums
c329a919039716e040e34fb515b31c76e271006fde28c79c80c57ee1b9785f8c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL fastparquet-2026.9.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.0 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2efd947292a0444b5f7beb620c335e11202151011338da7f80a372d87ef3724b
BLAKE2b-256 checksum
How to use checksums
7168db8c865090977ac720a8481c0ff0a835c5d8e32081d6ef6d8e1bac775a6b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL fastparquet-2026.9.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.0 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
8a5720af9a9465e47095fa9549041fa33eb1ebfb48e4d5f3e78b648007ed0e7a
BLAKE2b-256 checksum
How to use checksums
0af5ae6b6d46d0868ace9efd36b4a036d830914dc9ecffd789c2b9207438e598
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl

Download URL fastparquet-2026.9.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 2.0 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e85508635e641da45c38aa7815308fd4bdcad1207ff9113e4a11d8ecef878a21
BLAKE2b-256 checksum
How to use checksums
69817b601ecd6b0889db3419969f146f36878b7a3c007d785656f6446e1d0799
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL fastparquet-2026.9.0-cp314-cp314-macosx_11_0_arm64.whl
Size 761.8 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
27403682ea6b6a624b960f1781dece471fa4a1891a1b2605f6ad3184213aa4e7
BLAKE2b-256 checksum
How to use checksums
3abc93fb5e89201656d63fa5040d444be2128f0e0ae70d29db1167f4c31e5015
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp314-cp314-macosx_10_15_universal2.whl

Download URL fastparquet-2026.9.0-cp314-cp314-macosx_10_15_universal2.whl
Size 994.7 kB
Tags CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
8c380842caaa629ac35e7586d48dd636a66a60074dd16a904ce845c8352ba746
BLAKE2b-256 checksum
How to use checksums
562828f912eb4efe2b242cf764008fab2084792ace58fd1381125a52dd560afc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp313-cp313-win_amd64.whl

Download URL fastparquet-2026.9.0-cp313-cp313-win_amd64.whl
Size 728.0 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
43d8a5290283915baffce85ad49495fe38e14d57a8533a311e2c5021fcb335a2
BLAKE2b-256 checksum
How to use checksums
f0f6333d2626fb860b1e40886963f13d493ea64b72124de23be8d064db9fa076
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp313-cp313-win32.whl

Download URL fastparquet-2026.9.0-cp313-cp313-win32.whl
Size 691.6 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
e7be4cca389831756aa019a8d93c3c5d9f2871b1b28a8bc671e2740458810cd0
BLAKE2b-256 checksum
How to use checksums
52f511e78ef7638bac2514af78d02d91da0e4cbda5e4e36e4510b984057edd76
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL fastparquet-2026.9.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 2.0 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d33f24cef35dbe50b561037e17a401d5d1e720ef16beef645d26c364d14f9729
BLAKE2b-256 checksum
How to use checksums
c445abbecd4b7328598ad91855c1287a30da04aaa6162ec8d3f0c193f69d94f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp313-cp313-musllinux_1_2_i686.whl

Download URL fastparquet-2026.9.0-cp313-cp313-musllinux_1_2_i686.whl
Size 2.0 MB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
257b8d1fc5dd63d9f7f741e940e731e717d4261768c9a98fc94cba2969bfd151
BLAKE2b-256 checksum
How to use checksums
3a78e0ad750fa8c4c017ec213287a70341c91b57dfb6d6295e335e8147d8030f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL fastparquet-2026.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.0 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a664c9599a5f604277f874a7f09e7672237b8d7b2cc92a16e6d9cb22a8357801
BLAKE2b-256 checksum
How to use checksums
fe84b4141242ea04d177c094257742115bb09ae25f896ecec0d3264196ba6c35
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL fastparquet-2026.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.0 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
dd42bc5172befa008f686db4938867bd27f629a09967d5259c9b60325a46c99b
BLAKE2b-256 checksum
How to use checksums
c1b6430be3eb1ab45271a8043fc762c83efb36d7e0ea15696327d03c730f9e32
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl

Download URL fastparquet-2026.9.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 2.0 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
a3e8ac8275c00cd736f63d7f3c92395bf33639ea38e298dbcdd18f96c7c9b60f
BLAKE2b-256 checksum
How to use checksums
c7c015648e3084d85f85f802c7d0a61e9f1ae084c4ab46f0a1a17cdef05aace8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL fastparquet-2026.9.0-cp313-cp313-macosx_11_0_arm64.whl
Size 761.0 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ea891cd19a5461c0e5f99fec357eb43e1a564301eac73c112bff8d7f4f394bf1
BLAKE2b-256 checksum
How to use checksums
764640672e52963c1e459af3b0665adb7cc978a02ac3176c7b25b0cedb8b6633
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp313-cp313-macosx_10_13_universal2.whl

Download URL fastparquet-2026.9.0-cp313-cp313-macosx_10_13_universal2.whl
Size 994.4 kB
Tags CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
823b73b9da2f0a3e4351ecd126863d4f049d53a3a5ebb38f20c71e9df9e56c8f
BLAKE2b-256 checksum
How to use checksums
644540aa92ba672b7286d5367d4d46a107ccd6c84c7e30f5f50a2e7eaecbe534
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp312-cp312-win_amd64.whl

Download URL fastparquet-2026.9.0-cp312-cp312-win_amd64.whl
Size 728.6 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
7429a9c368eda9a31a54557ba7a2f6b26fd9fc754594337093e512e5e84037b5
BLAKE2b-256 checksum
How to use checksums
acd96b44f4097c324208f7958b37123e868ee372653b209709374d51209ef1a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp312-cp312-win32.whl

Download URL fastparquet-2026.9.0-cp312-cp312-win32.whl
Size 691.8 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
8db3e791d07271196af0bb91f6111904157361c21770f4d30503de6479d01a5a
BLAKE2b-256 checksum
How to use checksums
1328e0ae58137f2a53d30f1321db5d4f6e0b9bd6f4ed4a4818ff812a9471a3dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL fastparquet-2026.9.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 2.0 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
70ae1af7024ebb4b86b61effea6388e4d9a14bfc38cb5a3ffade1b9f7a8be84b
BLAKE2b-256 checksum
How to use checksums
dc6148d21f493b0bf0b151b1d7689b335b53e53071c57cf192596699cc8dcb1a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp312-cp312-musllinux_1_2_i686.whl

Download URL fastparquet-2026.9.0-cp312-cp312-musllinux_1_2_i686.whl
Size 2.0 MB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
30568dce92258edc6ecb80d472fa20b9bc54119e913a5b171f6a79ddac3a9786
BLAKE2b-256 checksum
How to use checksums
e184a0f4cd9af593f9d71ba1dd24fa59696fa24250a8e7ee76132d31eea67f8d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL fastparquet-2026.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.0 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
97ff970749affeedc871bd7b277e4173344b6587b7823aac780ea6d298d78560
BLAKE2b-256 checksum
How to use checksums
63c298429119a3477151c72852b7ccf19de50b2591bf591666b1a1f121c06baf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL fastparquet-2026.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.0 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
8072a353a02f9397d2ac06d5da5a4818fa55df77db5adbbb59c75b04dd806ca6
BLAKE2b-256 checksum
How to use checksums
f55aec35dfc9eb29a4fd29b794997e1d0c19ea31f5f6e2ba4455da9769de156c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl

Download URL fastparquet-2026.9.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 2.0 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
fcf4e2ab06e0bc2433c4aedb63bedd139606e8ec5d0dd9626589e09196ef27a1
BLAKE2b-256 checksum
How to use checksums
e28961d3452a4bd8dd59bbb74aafcbc17a6743616fa4f5af9d30290d62481799
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL fastparquet-2026.9.0-cp312-cp312-macosx_11_0_arm64.whl
Size 759.3 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
adfe378592c591a1fd0ca555c90c75e39de89265e96f6b39fad96ade94446f4c
BLAKE2b-256 checksum
How to use checksums
5c1952a2faa5eaa81d84d3e9c897052de9aff4f321f8897ff285c716b7386a8d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp312-cp312-macosx_10_13_universal2.whl

Download URL fastparquet-2026.9.0-cp312-cp312-macosx_10_13_universal2.whl
Size 990.8 kB
Tags CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
2fcad74fae11ceece509ad083b2e22ec597a689d774db820d2f925e4e4e2c9b2
BLAKE2b-256 checksum
How to use checksums
e65b9b6ed4352158a44e925d4c6b6adf823aadff883b8d1e9ddd14934aabc5f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp311-cp311-win_amd64.whl

Download URL fastparquet-2026.9.0-cp311-cp311-win_amd64.whl
Size 726.2 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
62746954fde1245352dd85e180187d396d7476ed0bfdda29bb893da2d5abd67f
BLAKE2b-256 checksum
How to use checksums
a2344797123bb15db8350762e6983140057ba3a2c074a5060c6f4f71fcb8a27b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp311-cp311-win32.whl

Download URL fastparquet-2026.9.0-cp311-cp311-win32.whl
Size 689.2 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
6e0c5aa401fc872ae1d6fdaf648ab92d22944487efedd64642bf37d21522cffa
BLAKE2b-256 checksum
How to use checksums
72d9328a39a7c5159465ff488d96e96804ffcda73f5addb016e7c7a25b11b8ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL fastparquet-2026.9.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 2.1 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
507bba3efa3f68eebc19dc30557f8fc98736a23e3a7d5f6d26efcb08c268ba1c
BLAKE2b-256 checksum
How to use checksums
adfc638f980e92f6af057334cfc57fe14698ae258314986b51f1ec1a964562fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp311-cp311-musllinux_1_2_i686.whl

Download URL fastparquet-2026.9.0-cp311-cp311-musllinux_1_2_i686.whl
Size 2.0 MB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
67cd69dfbb0f6d6e6b69e7e625860e26431d7ade643baa7d8f8f28956829f3bb
BLAKE2b-256 checksum
How to use checksums
c1b27c2896424e954cce9b83cecff2a2f322e1dd320da55b7d6697e5e6d56309
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL fastparquet-2026.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.1 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
1056e8aea71bd2f2aee00e4cf2711dc4377a6c2654d655d8faeab76e2e3cde31
BLAKE2b-256 checksum
How to use checksums
c3471924dda3dde8d7b8258ccb00413f042b20d5d5a8590d1597b2afc72712f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL fastparquet-2026.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.1 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
7c8762c2b0ea3578918a67f0c2a7743b783583a03df3b687b5e0d5a60b14bec2
BLAKE2b-256 checksum
How to use checksums
47ebf150a06974e456f776e31cb71e7510b13488853f57cb83f91db23363fdea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl

Download URL fastparquet-2026.9.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 2.0 MB
Tags CPython 3.11 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
a64f5e0a76280be18647a03d8d5ef587745c3c19f83f3a7df9260d2c42985afc
BLAKE2b-256 checksum
How to use checksums
1e889e7366625e5736a93a6726c70025d338709b40da70e862dc954925dfd9dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL fastparquet-2026.9.0-cp311-cp311-macosx_11_0_arm64.whl
Size 758.3 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fb35a2756a2cbb344f0652f1fd6105d94a8872e5a571fe5cd4adf9e793bf9145
BLAKE2b-256 checksum
How to use checksums
dc04fab935f55281ebaaadd98fd3f62a5c42f644b6030a05e8404f49ffc2069d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp311-cp311-macosx_10_9_universal2.whl

Download URL fastparquet-2026.9.0-cp311-cp311-macosx_10_9_universal2.whl
Size 988.3 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
f7f3f634119d5ccff60073c65910b45d8ab0fca2be212c1a866aa5ca52eca000
BLAKE2b-256 checksum
How to use checksums
69a579ca9d0b54e98ae0d7cd39a6dbdb78974dbf4ebc4a5f81b17f917424d3a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp310-cp310-win_amd64.whl

Download URL fastparquet-2026.9.0-cp310-cp310-win_amd64.whl
Size 726.5 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
c9d937548473fc0e39d7412c3b00baeec6c1fce23c2d4ac73551ad3093f28b46
BLAKE2b-256 checksum
How to use checksums
304efec02a64ac775c2916651bed802897abcc7029d82ed0aff83e81cb8d4675
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp310-cp310-win32.whl

Download URL fastparquet-2026.9.0-cp310-cp310-win32.whl
Size 690.8 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
6ca1ab91561aa075226ab0b9eeaaa0dc6fb6d01ae111f8f030735707c16345de
BLAKE2b-256 checksum
How to use checksums
7b05e1bf285f2e8e8c4bc52a2037e6e469f483d9411b3f3ec2b4e9c17e8c1ab4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL fastparquet-2026.9.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 2.0 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3110ebce313a0bca942eb873e163e188440d5330e90481716066071783d1424d
BLAKE2b-256 checksum
How to use checksums
724d0b7a5cb649d431b142721eedc7258ba972da0bbbadad1cb8b434a4ccba9c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp310-cp310-musllinux_1_2_i686.whl

Download URL fastparquet-2026.9.0-cp310-cp310-musllinux_1_2_i686.whl
Size 2.0 MB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
2e82b5aba24c67ec9b29e36e48ef8529aa71678b8347dbda0c59046ffd709e41
BLAKE2b-256 checksum
How to use checksums
e36d6734851dedb06a4db12f9aec79d8be0eb248b25a651d175519c78820f04d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL fastparquet-2026.9.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.0 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f3bfbf8e077640c586cff0c1723bbe154272754214718413b53eff9b5dfc01d9
BLAKE2b-256 checksum
How to use checksums
60af3728736f47bb25dd9c460ab0ad10eac478614d67fe4ce8f01b4902c21b40
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL fastparquet-2026.9.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.0 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b906af59924a8ac23b12c796e92cbcd03c35923b6f2c798c5fb3bb40ee7e7081
BLAKE2b-256 checksum
How to use checksums
6a0adb6dbe0f5b63e774b6e26b538cefc1c619aa711dc5b50fade478a520b7fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl

Download URL fastparquet-2026.9.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 1.9 MB
Tags CPython 3.10 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
b0814029e25987a6944f96ed0904ca27143d2c678b98157965a85f89499e2915
BLAKE2b-256 checksum
How to use checksums
5fe0d0600894c940df93abe989264345d51f925e2fb11a5c22e2881ac8f02c4b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL fastparquet-2026.9.0-cp310-cp310-macosx_11_0_arm64.whl
Size 760.3 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1562b7ed74e08aca63f500cb8857d48d87f123d309328319bc01e8cdd763ef22
BLAKE2b-256 checksum
How to use checksums
ad5381f8d1e0ed85a6e2a4a077ac334632ca1d0c98b524eb84d438041f64b8e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release files / fastparquet-2026.9.0-cp310-cp310-macosx_10_9_universal2.whl

Download URL fastparquet-2026.9.0-cp310-cp310-macosx_10_9_universal2.whl
Size 992.4 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
9c2d4972e1f9a353919857e256f2c1e9db9db915ae2ee59b5bf3647c7742c376
BLAKE2b-256 checksum
How to use checksums
312d2e04abee8f7d7fd1fc0a309f66823ef342128485ab496a74fcb9bbe2640c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.7

Release history Release notifications | RSS feed

This release

2026.9.0 This release

55 release files

0.8.3

26 release files

0.8.2

26 release files

0.8.0

30 release files

0.7.2

30 release files

0.7.0

29 release files

0.6.3

1 release file

0.6.2

1 release file

0.6.1

1 release file

0.6.0

5 release files

0.5.0

2 release files

0.4.2

2 release files

0.4.1

2 release files

0.4.0

1 release file

0.3.3

1 release file

0.3.2

1 release file

0.3.1

2 release files

0.3.0

2 release files

0.2.1

1 release file

0.2.0

1 release file

0.1.6

2 release files

0.1.5

1 release file

0.1.4

3 release files

0.1.3

1 release file

0.1.2

2 release files

0.1.1

2 release files

0.1.0

1 release file

0.0.6

2 release files

0.0.5

2 release files

0.0.4

2 release files

0.0.3

1 release file

0.0.2

1 release file

0.0.1

2 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