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-0.8.0.tar.gz (400.1 kB view details)

Uploaded Source

Built Distributions

fastparquet-0.8.0-cp310-cp310-win_amd64.whl (635.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

fastparquet-0.8.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

fastparquet-0.8.0-cp310-cp310-musllinux_1_1_i686.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

fastparquet-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

fastparquet-0.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

fastparquet-0.8.0-cp310-cp310-macosx_11_0_arm64.whl (594.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

fastparquet-0.8.0-cp310-cp310-macosx_10_9_universal2.whl (822.4 kB view details)

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

fastparquet-0.8.0-cp39-cp39-win_amd64.whl (667.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

fastparquet-0.8.0-cp39-cp39-manylinux2010_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

fastparquet-0.8.0-cp39-cp39-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

fastparquet-0.8.0-cp39-cp39-manylinux1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9

fastparquet-0.8.0-cp39-cp39-manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.9

fastparquet-0.8.0-cp39-cp39-macosx_11_0_arm64.whl (593.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

fastparquet-0.8.0-cp39-cp39-macosx_10_9_universal2.whl (820.2 kB view details)

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

fastparquet-0.8.0-cp38-cp38-win_amd64.whl (664.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastparquet-0.8.0-cp38-cp38-manylinux2010_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

fastparquet-0.8.0-cp38-cp38-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

fastparquet-0.8.0-cp38-cp38-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8

fastparquet-0.8.0-cp38-cp38-manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.8

fastparquet-0.8.0-cp38-cp38-macosx_11_0_arm64.whl (598.4 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

fastparquet-0.8.0-cp38-cp38-macosx_10_9_universal2.whl (820.4 kB view details)

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

fastparquet-0.8.0-cp37-cp37m-win_amd64.whl (659.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

fastparquet-0.8.0-cp37-cp37m-manylinux2010_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

fastparquet-0.8.0-cp37-cp37m-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

fastparquet-0.8.0-cp37-cp37m-manylinux1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7m

fastparquet-0.8.0-cp37-cp37m-manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.7m

File details

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

File metadata

  • Download URL: fastparquet-0.8.0.tar.gz
  • Upload date:
  • Size: 400.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0.tar.gz
Algorithm Hash digest
SHA256 5a8137f2e0d3a77e8db41e875d3159ddf925bbfaaf37ce6d6eedd02f5bfce55a
MD5 fdf156852a0c8a1db30161f33e40dc22
BLAKE2b-256 1b00cc1f9618e99cb0b02a0115a4950e97892c1849384b8804266dfc512bc3ef

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.8.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 635.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 48cdf013c997e95f8300d2b8aea62217bc58bedc4a6be2ed50f161aa33d19db5
MD5 536a399aec9a202bbaa7e8985fbdc0c3
BLAKE2b-256 3ead3fdb0f0dbb5f01b7fab1a48b16bebc9b4fe1920dedf9ba36ca6166da3760

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.8.0-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 82870960aea470580dcb1050db16e5afcccbbec29c78da98323c7f147dcc9d49
MD5 5e2ae8b8fced956cb14a9a647f536dc5
BLAKE2b-256 8f0558ba5d9f322f29e0c9e9b488ee12298de7e49bc662751b78f7923cfaf264

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.8.0-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d771252f8ec6e5e39af2c0a0a951a52dc02579b449f29674bdae2b7e69654173
MD5 386d3779717fa1a0e3affd4f3134f4ec
BLAKE2b-256 a08af94225196e2b18d9c3840780ad1bdd03494cbfd877c3ddbb64948c33e2a9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastparquet-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43e906e7ab48517d27aeb3fb071efa75629f1ac2bf13d965583b9c5171609f6d
MD5 afedff5e83719d5544855ff8528a26e6
BLAKE2b-256 e58b785e73e3fc6ccf46cae026d3e664cab117e714786591ce24eb581a1243e6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastparquet-0.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8a06c795fdbca6ee6fa04d06feec7c40c940452cf985bebe5324c9a53b956cbb
MD5 8cc45e56020be134b7f2b4c34c9584d1
BLAKE2b-256 ea1d87ab7e91b3abeeb2989401e1e446ca924f3f4bf73a7cae001d21e792ac68

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.8.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 594.7 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b13785578161602c52b9470a8e1b1b5ce2952c1a0e0763f514f23e78f23765c
MD5 49f594f40c3d0ac5419ecc98f9383902
BLAKE2b-256 18d3bd3941f69fc6bcb8987e3512210a105829377bd95fcfd2bf6e370a3b0b4b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.8.0-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 822.4 kB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 83eb4e5f9acb9aefa099cc3ff968985a004003686f1b7ee77b4d08d85f7477fe
MD5 407cfe0265f686075fefe5a0a9ad4541
BLAKE2b-256 7d0a881e42269057d1cf535b451046c9f591e0b243826db5a6399e71cc27d626

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.8.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 667.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 193dae279974eb46d840a9c62652b7075b9e6ec6555193dcac6e92e00a41fef9
MD5 a61313c01f03551cb894766c56a674a1
BLAKE2b-256 e3b652d833508e032a775c6c6e66dde13e642a07bda349edb34ae28e669d850c

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.8.0-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: fastparquet-0.8.0-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 88fc5a73466bbc5aa081554b2a321d855436045ffe23d66b779e09e9685a6a02
MD5 2538c1694823325aa0e7abbb52f7f55e
BLAKE2b-256 42106b2c8aee1272a2ae9edea483f4a68edd10aadb3a8ad47247a428d9c5be21

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.8.0-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: fastparquet-0.8.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0e2b88d263031051f7461945d4fd2791f21bcd702adb14c3c67043f187a563de
MD5 74cdc34b738ecfc1e61bd3efe3be3df2
BLAKE2b-256 756140aa43c33a0d23f0d9ffe889ce3a0a920f3bf7e36b5143dc87aa08b9d4d0

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.8.0-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: fastparquet-0.8.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 82410c6244f8b852679e2f3a25a57f0a4c16e7926872da31a35a9f2d24b50838
MD5 c27f880c30f10b123d868d1a62ece771
BLAKE2b-256 69dad936e0982df2cee8183738558505e1c291ac58fe3a1d5a95fcce1400656c

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.8.0-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: fastparquet-0.8.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b047483bc1eef28d1839d17eebb233026336858bb70cdabd1e7eedf7ef293e1f
MD5 324cd9aa382d0ed3f0098431ce9086f3
BLAKE2b-256 459cba55a052e8a72cf0aa338859e89fe3f5357f26d964ea2c4f48ab638f1fe5

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.8.0-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: fastparquet-0.8.0-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 128fcda10bf4c49926f846f20bc381f24edf238e50fd340b47be9c6caefb45fe
MD5 7c8d19ec539dfe8c755c5ee27480c717
BLAKE2b-256 cacc2de89d8380abd7951debcbd75e2c570ba301b6673f711838303724954ce3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.8.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 593.3 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f383f7647df2c7140930b9d6ea8d27ea3ddca0324184d7b26ac131a271c0c11
MD5 c385013521ceb2d9117dce00d042829e
BLAKE2b-256 42da83091fec570062e257f604cf9a94f751f47dd35390e5890a68495a6bd7e9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.8.0-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 820.2 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 70099453a9ba166bcbf1bb6110a3ddec3189b6d5d963984c02938b5fa2e5e284
MD5 94fbb7738d957cbe935a635d202c0d24
BLAKE2b-256 ec8c7db203d90e5fb0a03e1465182e071bff4f00520c4bf3b9267eb2e16a9d0c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.8.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 664.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d5dd4e57a27afc9c76a3f7e4157696354a2695869d0d1e1cf477388a427c0750
MD5 7f379db82bf1874b9692f34c5604596b
BLAKE2b-256 21302ca073ea79d3d4fc0f119d1c07cadf35cac795d5e54b671ee46ed467acfa

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.8.0-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: fastparquet-0.8.0-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e8d8bf3f58e37f4a7734e6f3a967e64d320f6ec347ef01167f6459941d94cc6
MD5 1cd99dec2fc22c3a10d5726e4476dbc2
BLAKE2b-256 d249a3ac0a2aaf4e2da75cf22b91343d9cae742c5e8a42136fe7331996bdb2f7

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.8.0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: fastparquet-0.8.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 908c8eac61e312834d58de4319d56571893f22b4e2f3acb40540266b27df3b91
MD5 6f928941eb01397a4cfbd529e7eb1428
BLAKE2b-256 8a1b682f0d26bf2b0820d3eb946459e9354dc0fdb113c5128fa2f99ef79bfce6

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.8.0-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: fastparquet-0.8.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a08ecadc6f06d90783a94567b51893c68da829e08da2b44e741db91b4f15ad21
MD5 5a32dee217ca61491aa9ad6ccd3919e5
BLAKE2b-256 338e206bd08ea34b1020835a78d0b14ecf1656a0bb033d4532efc025c9945cad

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.8.0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: fastparquet-0.8.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bc7702c3ddc38077f3bec73f084f94b2423f1cb8a4892b8b88399860cffb890f
MD5 094df8e443112457caacd651873a80f3
BLAKE2b-256 c558c07705bc3832767a0de8b7236c3c39ca652d8d60a3065a9a8d4790bcfdc3

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.8.0-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: fastparquet-0.8.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b6406a42fd2c05ae96df5b4aaee5030b96ac5788d1e0974318537d6188aad3bc
MD5 1602c4b4eb439020a62f26ca8024c3b7
BLAKE2b-256 4a04dcfd55a6a09972b1bd495c1da68e2258250b09f42c54e9e009ea794e6ef2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.8.0-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 598.4 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4af5a5aaeff4b9d8b481687f522b81d6a847491c02326c785de1b31eddbfdd03
MD5 a3974c9567d79233a8785586be21ef9e
BLAKE2b-256 6a84e04d148c7a5f6aefd52c077c17292d0f1789d584f837a3708e6e6600df2b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.8.0-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 820.4 kB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 04430dfe396559395bd6347b107e9cd5f801e67739c6f7c8f72e0f194098f88b
MD5 efd0db627a6e38bb943abdf9bacfcf48
BLAKE2b-256 3287de410c40245ed936de1c42b8588b89c629f9bf0369ed7cac18138240a41c

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.8.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: fastparquet-0.8.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 659.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 17fb252156884d6c8a538baec6fb6ee7ba7728e87830c0e470d976072099a451
MD5 b6d125cb70d0984b644e68fdb716f64a
BLAKE2b-256 04522e770842fda0a00718954d3d3ffa8c5d8c64b1508bb66650a377a270712d

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.8.0-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: fastparquet-0.8.0-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2362d2aa62778546d37a48fc3fefb12ea5dffc0e3e5bd780c020a7b7f4fa05be
MD5 5b34952321b7e7d194fd18445f137709
BLAKE2b-256 85a91139f66a9f8c61499635a398027aa3982f49ca8eefba51b2e41b8ec93ee2

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.8.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: fastparquet-0.8.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f8474bb9df9cfa3e4474c75d1757610902ddad8277ce67130f57d3da4bcddeb2
MD5 a29870fc768817d968ff30fd2cf8a594
BLAKE2b-256 c40939ea9274baa4b829ad207c1736f35b48342163f3b8af467ecd3f040890c2

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.8.0-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: fastparquet-0.8.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f98eda8e86b3cb9bb314ddc6b421d9d508b5c27bf80dacbfce9a8647596131a2
MD5 a1464072ddb71b0c86277b7309093f2b
BLAKE2b-256 69ba63c40a0b01b5448c6d99ef969e9720b834a36c552911b84c43c678bb9d78

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.8.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: fastparquet-0.8.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ab2cf35c1022ad8bf6e0ab402f7135aa16303d3b490c4d0192f77bdc3510fbe8
MD5 020e431690261525fc821ac583bad7cd
BLAKE2b-256 f0f3756d936d313fe6c349dfaa8e72f4ae19589821c6ff42f9d467073b49e87c

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.8.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: fastparquet-0.8.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.8.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 832acb2de0f41c2fcd255b45e4b68f6e361ddb14fd28f08666d4a5a381034c1e
MD5 fa508c1cee353ad6c0b64e1fc0e2c6fd
BLAKE2b-256 b4e1b610b633b6f89f152b150fd385c581807db5f83409616b8f29b03e9b62f2

See more details on using hashes here.

Provenance

Supported by

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