Skip to main content

Python support for Parquet file format

Project description

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastparquet-2023.2.0.tar.gz (392.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

fastparquet-2023.2.0-cp311-cp311-win_amd64.whl (615.1 kB view details)

Uploaded CPython 3.11Windows x86-64

fastparquet-2023.2.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

fastparquet-2023.2.0-cp311-cp311-musllinux_1_1_i686.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

fastparquet-2023.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fastparquet-2023.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fastparquet-2023.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

fastparquet-2023.2.0-cp311-cp311-macosx_11_0_arm64.whl (579.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastparquet-2023.2.0-cp311-cp311-macosx_10_9_universal2.whl (783.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

fastparquet-2023.2.0-cp310-cp310-win_amd64.whl (617.1 kB view details)

Uploaded CPython 3.10Windows x86-64

fastparquet-2023.2.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

fastparquet-2023.2.0-cp310-cp310-musllinux_1_1_i686.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

fastparquet-2023.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fastparquet-2023.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fastparquet-2023.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

fastparquet-2023.2.0-cp310-cp310-macosx_11_0_arm64.whl (583.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fastparquet-2023.2.0-cp310-cp310-macosx_10_9_universal2.whl (790.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

fastparquet-2023.2.0-cp39-cp39-win_amd64.whl (619.3 kB view details)

Uploaded CPython 3.9Windows x86-64

fastparquet-2023.2.0-cp39-cp39-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

fastparquet-2023.2.0-cp39-cp39-musllinux_1_1_i686.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

fastparquet-2023.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fastparquet-2023.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fastparquet-2023.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

fastparquet-2023.2.0-cp39-cp39-macosx_11_0_arm64.whl (583.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fastparquet-2023.2.0-cp39-cp39-macosx_10_9_universal2.whl (792.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

fastparquet-2023.2.0-cp38-cp38-win_amd64.whl (629.1 kB view details)

Uploaded CPython 3.8Windows x86-64

fastparquet-2023.2.0-cp38-cp38-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

fastparquet-2023.2.0-cp38-cp38-musllinux_1_1_i686.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

fastparquet-2023.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

fastparquet-2023.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

fastparquet-2023.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

fastparquet-2023.2.0-cp38-cp38-macosx_11_0_arm64.whl (589.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fastparquet-2023.2.0-cp38-cp38-macosx_10_9_universal2.whl (794.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file fastparquet-2023.2.0.tar.gz.

File metadata

  • Download URL: fastparquet-2023.2.0.tar.gz
  • Upload date:
  • Size: 392.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for fastparquet-2023.2.0.tar.gz
Algorithm Hash digest
SHA256 7611447ce3ff5696539f7e43289da2491ea41f7cb92d4dbada374012b62c51c3
MD5 e275f38ee6129d7647f2eeaf92be85ae
BLAKE2b-256 7e5dc58795e5550231ce84b39fec783e3f4836082f0162e2436227832716ee02

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8585ce6ab202a42299e1be413e06dc3c6ee3292a07f09b22d16c845b1481c4cc
MD5 61031e0688b8c5817a88f5c577814fe1
BLAKE2b-256 d68982aabdac27cdfb6987974edcbbe9fd666ff09915a7365dfc726f337d5532

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c0f73555d9dec670c014c2326a692c764d65ab97576a029bfa7c01bce665eb23
MD5 a30bb07e179289a404d3963fb541411b
BLAKE2b-256 364dc8367ab8ee1335fdb488980d488a1c0c1cc649eecb0b4159f777dabdfb03

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e48c1caf96efb749226cdca9ee5c08637e01bc7915451799bcbc5f98bf00c9da
MD5 d0155e1e4c8e03ce8cbc9d964145acba
BLAKE2b-256 57d4e8c5807f292e0a2f5c4a225d4d07230d24d48f4beb77b1aef7b989990e76

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c63452355ee0bd4650e5fb190957fbce3576e1aa0baeae4c01eb5d90d534a5e5
MD5 828d53d1dc9381916d17412f1b980d53
BLAKE2b-256 b3d6f63325e5aa9a49cb23b45cda3211ca40ae66ef7f902a3441dfd4731343a0

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 faecb9ce2fefede6b8f16418c724df4b47842329bed43a0fe8df7675ff8efe05
MD5 4c7d7e4e1d01a62c474dc14d8bde1a7d
BLAKE2b-256 5d3dbc6bf1f3fb6e34ffc44e1876ab6e46a30b5330608d0f038f394158f5bf05

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e3197bf76a0bf294c3da2f61fa6d830aeff13afd3f30dd4eaf6c430cc56a491d
MD5 fe008cae76ee03a983b4836054a1e235
BLAKE2b-256 0135a89e737358df747857c743bcb3317fded3a05122f4c01610929eebba047b

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10a2d9fde179ccdb3a9addad20b52db4a51af1c5be41b6c747765bf314f11c1c
MD5 4213ad742762398a1130c4176cf126f1
BLAKE2b-256 e1dbed0136c4b13a9a93d94fed224a3bc3feca3d1768c792e3d19e8ab3ce6a83

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b0746e0d25bfdc78abdf380bc0c2e7f1731cba63c6019a8d1c9511394b5c8b41
MD5 9fb21c59abb129224f61ded51b93a252
BLAKE2b-256 0a9dc9f84c271fedd5cbc02995d34926c90108c56d228b2c0f51c3b92fff2f0b

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 40b4af7c48b69f04444e544ac1bc80725e82bc2f015d9ba0488e3fcdb7e9b913
MD5 917d2704ec01472a72938522225e928f
BLAKE2b-256 6ef33bb3750e28aa85a394efc78ce4dabf710d6b080fb9d6923270ac09c34c98

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fbe95709d77bcf1198ee1fba26fa34fd235e9efe3c9149f7c020b110e82a1b70
MD5 7b7f9b73a25877c1391855e0d51c609e
BLAKE2b-256 60bac4b9ff20705484cf8c3aaed83d92974dcbcf3621b436fb232b264f23b35c

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2d69f539d19177602924714402ef6bde58c2d573f661ace86081a1d3dcbb88ef
MD5 122d4261ede74f180729912bd56b9e52
BLAKE2b-256 b34a1051a5c8d74e2714ae5a5d21358cb0802b5ae6d338366b3132bf106a8386

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f56cd417341330ae48af864a337676b5eb6e3511588de7e090cef8f495631d04
MD5 372dfbb1c6fdf899ea6b54d63f65cd66
BLAKE2b-256 468789401b6813d5abbd3d6d4a77476716bf845c4f94bbe91aa91504ae290805

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2a54e352777504faef9a1526191a7d9b77c306c11d901db1581512dcbb131fb
MD5 5f282b2bda17708d724001dd02eef6c8
BLAKE2b-256 0287ce1ed202d9c2410f4eb690837c103782bb3b0c72c8436fd6b200628b31b1

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c78a1f9a7c3b72b7d0276d0a7e300a34b2397198d4d11ece73dbe0a706afc17
MD5 77d962265794537ef2b3f9176b3a6079
BLAKE2b-256 5d9afdd9a2a027eb50f8d86424e13d4af04c4a7907c185b6559923445828bce9

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c77266057461eafceddf5d596c454a98e42fa94f4e756180cba2c6984a24cf66
MD5 5ee0012126d22a517e81449b7bb56721
BLAKE2b-256 88e5d89160701654f5c021140670984ef5952de361e5414435c60b5295ac23b3

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 95b40caa0cc19af832ee08f0b73bbb912442f2fbcc155370c455b33f5905ca11
MD5 588cc8a2c064bf6bf83e67812cff88f9
BLAKE2b-256 3219d597129bc8c7dcf77a7c3e6d91f45c325ff8827d5f198bc0a76341c56d54

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 54bf1a799b9323e424fc103b207f5228553162e5e4f4438baaeb5ebb4e68f891
MD5 9e50080cb896d2465289de915658eb79
BLAKE2b-256 12b00a35d91400c84522deecf6ef9dcaedcd24f20bf0625cf871df58f8a65ce6

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 409de263558e81b8a22a9e8f43f925b86d7e16bd4b55611971ef79c50f45244f
MD5 43afbcb4ca00efc684e293e4b42a3d6b
BLAKE2b-256 b81f1cfec864f01648a0aa25f4151dcb2e1f801064735787fc05605c1503a9d3

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6509f0865ddd8e8e62bef7ec06198996f47154b9d9005054ed7eb57070bc7fd1
MD5 2d572210d139672a11e3651bf936ce3a
BLAKE2b-256 ce7935238aab3155d0ed8615210b86db56ffa2b34f928ab82f0eebe7c32197b2

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0eeed04a83651081ee72ddd572a11aa1b86ceeb7efe74d97fa9cd30133c8064
MD5 ea63c41c15c8abb79db9964df17d9718
BLAKE2b-256 6be2e2d809a1461e20bfb1200528c0e9344aa1d9cef3e1fbe518004f47d78451

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1c3f4eefbe472169cd5365064ff4cd0313bcb04bbcf6a4eb144ba4bf4764247
MD5 147a6d97da13dedf84eb9e7c1f591ddf
BLAKE2b-256 f36924d0ff8af9f2bb628bba69ccaad01253fdb93f6c9893128fccfcfaf7e664

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 58a1061f14fe8f85ed1c05055d915818eba3661d947dd9498ae1425319e502af
MD5 8fe30deb16f2d935bf546efd25f6637a
BLAKE2b-256 092eb8b8cc4acdc0ee8dfc3f36d8aa1726ec2fc32f1eff8495f91e7c5f6eb1fe

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c27b6270a9053656945f1533aae8376a3171aced7a3ec36db185d30a86924aa4
MD5 635b261c5b0a83613228c9782414402c
BLAKE2b-256 6c667bef2707ce119cf9827c8f982a2bbf0c5dc40212c02caf12574a6d1ae3ee

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 337c0badf884261544d2bb9e1cdcdd2e25b6d0c5f1fd90b181d39ab2b86669ea
MD5 2c29c639291f46306756254fcf049225
BLAKE2b-256 663450343ffaefd3db3314b7ca62fe9f77862e6eb6ca0f4916bfbd96ddd2fd3a

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6da6e07de55358cc8f74a1943bdecb11a4f87d56d10fe479a8a9354aad37506a
MD5 07b57f17df4e13b2b59dd160e2bc6f33
BLAKE2b-256 89b38979616df203758517165fcf05a4e864152f8151e6ae944586dfac8eda5d

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 679cc13841be1774338486bb55fcbadbed8de607cadb19377eebf57ad0be91cf
MD5 cbe3f108e609381ac164458236aacea6
BLAKE2b-256 6d57544cfeb3e243b4dfcf4aaf569ac27f3e06394ee9e0a6ec13385a436d5edf

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2171fb8bc0d7146224267c7d207aac9f6234e09ca580a3c89ccd6c4138431c6e
MD5 9977e6a9f210ab16763c937d14314e03
BLAKE2b-256 2aa920ab6bb489e15595ac41d54ce951f94ef2c074812cc18a895d3c3b975001

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 265a3b51663eefc966c5f0d3f0ed697a14c91cb64f50e793d2b7b74920f48002
MD5 cfa25a4c6f5c06ddddf0ab2ab2bfd730
BLAKE2b-256 e3cb8e64af92a2fdf41ade0b5f4a7906c151af2581eb6eef8aae9c6fe12aaf98

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f0da977d4ebb5f98c9cb42ae410e17cc277086c3dde97bc080231afd89aa6f2
MD5 1ba9e6da83b07d6e25ba697739462a5a
BLAKE2b-256 818d6f4157d567fb5e7c3396158a4e42c07916f19528eab92f2b3679f0c65f72

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 23d7e099c76284e2285b879f50cae36ab85b5e9247a2873798c98edd2a5cd630
MD5 a968e5fdb279faf9f94258f020797bf1
BLAKE2b-256 85d0ea244a3267f203ff61a8ee0b9cc7d88d55411965656a26c4bd472daacb8b

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d22115f706602e0c216c4ec31f403e347e7aa5c20b181ea8901bd1b55d0dd03
MD5 26181bc9ef16a4907c01d45f75ca2648
BLAKE2b-256 f5798d3236355cd1b1736af484b1d40f0cc2e0bbb563a30c8841f3218089ee4d

See more details on using hashes here.

File details

Details for the file fastparquet-2023.2.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fastparquet-2023.2.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7b564c98aee49b2f9f570be880954f6fbfdd65d3566a4992562731b3af12e528
MD5 3f6abb1a5bb6ec9f0d429b3590460592
BLAKE2b-256 73e116edc9bb7228e7d638945dfb2135bfe11b9dc90f2e294e08ba0dc5611fbc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page