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

Uploaded Source

Built Distributions

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

fastparquet-0.8.3-cp310-cp310-win_amd64.whl (603.4 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ i686

fastparquet-0.8.3-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-0.8.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fastparquet-0.8.3-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-0.8.3-cp310-cp310-macosx_11_0_arm64.whl (567.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fastparquet-0.8.3-cp310-cp310-macosx_10_9_universal2.whl (775.3 kB view details)

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

fastparquet-0.8.3-cp39-cp39-win_amd64.whl (605.7 kB view details)

Uploaded CPython 3.9Windows x86-64

fastparquet-0.8.3-cp39-cp39-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ i686

fastparquet-0.8.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fastparquet-0.8.3-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-0.8.3-cp39-cp39-macosx_11_0_arm64.whl (568.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fastparquet-0.8.3-cp39-cp39-macosx_10_9_universal2.whl (777.4 kB view details)

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

fastparquet-0.8.3-cp38-cp38-win_amd64.whl (615.2 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.1+ i686

fastparquet-0.8.3-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-0.8.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

fastparquet-0.8.3-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-0.8.3-cp38-cp38-macosx_11_0_arm64.whl (573.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fastparquet-0.8.3-cp38-cp38-macosx_10_9_x86_64.whl (602.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

fastparquet-0.8.3-cp38-cp38-macosx_10_9_universal2.whl (778.5 kB view details)

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

File details

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

File metadata

  • Download URL: fastparquet-0.8.3.tar.gz
  • Upload date:
  • Size: 393.0 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.12

File hashes

Hashes for fastparquet-0.8.3.tar.gz
Algorithm Hash digest
SHA256 454e8ec51f36ffae6e3d7814197c44db6e88ce281d2efba22ed516958a422c7e
MD5 1fdfad652eb18e7c0f76b1becc312d2e
BLAKE2b-256 475ec691f009e9d7919a798fdfbfd5451b59f2de0967c80816f5af76213c6efe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastparquet-0.8.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 603.4 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.12

File hashes

Hashes for fastparquet-0.8.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e126a5dfe304689af9c69708f908a9c5312cb55edf64198b3f7dd9110037fd6f
MD5 1d2667a1b04faef610806430b9e143e4
BLAKE2b-256 1972584bf026e7b8ba1da703fbcdc5cfbfe3ec861c9bc6d190726195fdc78c13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastparquet-0.8.3-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.5 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.12

File hashes

Hashes for fastparquet-0.8.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 524d23b2cdf1ab6899059e6db475d71b8c0b5c5602cae87276d7b80fa7a49145
MD5 04a6b764b9b7c6e4406d1c590b20b012
BLAKE2b-256 16a6583a97954fc49dc0faf20996c5b91c48d5531e7d778e0f18d7190d997647

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastparquet-0.8.3-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.5 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.12

File hashes

Hashes for fastparquet-0.8.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 dac03723fd147805f703dd269831d97554dc9f712f99ece48cd22919d320e9d9
MD5 719c2ba3169aa7a16f6db7e29a85e393
BLAKE2b-256 c257f2892025b07b23aff046c4057ecd41d924ca452de0288ece065810c6f439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastparquet-0.8.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be5beaffe4db11e6b09d413c97b0799b7ad6be71ca86ec32c7648f3f72033adf
MD5 fd96eb377a76a1e5d64cb5757a48220a
BLAKE2b-256 55acb77d54c8eac84c06db3e5b7b8548be814a976adb13dcdbe15ae11a689913

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastparquet-0.8.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19b0156d685c7b43b47acc1eea3a8f45e79ee9adefb34082d700478948a86067
MD5 85d1bb4faffb4be6abeee0e2e8f94aad
BLAKE2b-256 5a6de1dcd761845b751b8f128f3d36fca9e6fd7f352a9257d2b9a1fdd5a1b5d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastparquet-0.8.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d0d724c56676ba8d1dee4a09a4bac09e7f4ae5a466c5e4b48375980e7dfa1257
MD5 5b868e08d22ba54433827e41abfd052d
BLAKE2b-256 cc4b3cdfe42984a9fe5226da7b1cd1ce6635371da79995382ca2dbc83d45df91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastparquet-0.8.3-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 567.8 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.12

File hashes

Hashes for fastparquet-0.8.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f9859eb90f7c1175406d59cbc7fe663ffbc8fb80673147c2e4a15a662c02e47
MD5 2f770924c810cd50ec136d21ff1a25b6
BLAKE2b-256 2dc8b84b07b5efa2b8e24a7b83f18a6bcbdb131e284366fdefb118743e9f9f25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastparquet-0.8.3-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 775.3 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.12

File hashes

Hashes for fastparquet-0.8.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7475ed2ee51362ec25214919dbd6f04c387e88b7ad376c5b94470c9d53b20831
MD5 07926294c40cb17d240a0fd08a02f1d8
BLAKE2b-256 59af211201ed8713c770b8b0a02cc9a9be49548a327a3373e2ab7e933c232824

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastparquet-0.8.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 605.7 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.12

File hashes

Hashes for fastparquet-0.8.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6cac2266b8255145e16ae236bac7bde3b20c702641f1f883945d3425b55070f9
MD5 d78d774dd527e5e2fd5054f3c085e175
BLAKE2b-256 eef2674d79d20ba7265116cbd31aab417a1bc5ca6cc2498fec8b004b5eca110c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastparquet-0.8.3-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, 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.12

File hashes

Hashes for fastparquet-0.8.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9c9cbecc9b0333055fa4480568b994263d63f3e0b37cbd2ff11b8f3624e34d26
MD5 fdab13e418a7b83810d54ee2c35c934d
BLAKE2b-256 922677c87b8d82c03d20d7a7c2b17db04d9f72d1b3f7c6368a08ffec4f13e2f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastparquet-0.8.3-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, 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.12

File hashes

Hashes for fastparquet-0.8.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1ec2bb3a2fe08d198b60946c546fcecedbb6a7a2ef7a7bc181950ef1481c3a16
MD5 f72c17d0090e715c6f7ff0e812245de6
BLAKE2b-256 a815921f77e5e86740caceb00b18db32820fdb9cdeaf2b61d49eacb1d4fe08ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastparquet-0.8.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06ff670f6a3f38a8235b7aab881a3c7e6f8cea7bcc8027aea19e6b6d7c3f7606
MD5 5f5c1f8250ebc9c71dd49b6b5d154fef
BLAKE2b-256 c047e76ac3cfc5f15f5765fe7748fbad4e8a5ae0f4481694f9f550a073bfbedb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastparquet-0.8.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7acd59b711ea4b49144cb66d819a5fde075dff0e4d1a14f7aae6e168624979fc
MD5 f7c0b6e747dec03580c81aefa16f8db6
BLAKE2b-256 f908fd3baff6a1d2ed8d2cdc9d7d19bf9e9451b11b04794b7e6698da36c91741

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastparquet-0.8.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7b4c7430bd648d91d5854445c840ff9bfd02931939122eddd063cc4a5ee3588b
MD5 8c0228b1f274098184b8e81257fe1876
BLAKE2b-256 b898f8c162175994c2f4e4729f84b3ba7f28b19c5d2c753fcca6edfc8a6f2046

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastparquet-0.8.3-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 568.2 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.12

File hashes

Hashes for fastparquet-0.8.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77de53bece91da87f91b763092b8cba326bcb78aee23f437700733d294ea784d
MD5 16e319739eedbecef15efceb1aab6af9
BLAKE2b-256 566277a332ee8d4d5a11b29947bdd571bc127623be292ce40488b8d93bf8c24a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastparquet-0.8.3-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 777.4 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.12

File hashes

Hashes for fastparquet-0.8.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b7e0d225992722cd7364b0f6e1ad791e2ce8371847c17ba5a42f531e7b646ef6
MD5 e5ccea944d2d36aabe305feb90fcf813
BLAKE2b-256 25276ea3bcd106e123cfe7305c4bda53325d4dbe6046a4f619ccf3b40f8c9679

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastparquet-0.8.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 615.2 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.12

File hashes

Hashes for fastparquet-0.8.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a50e2e1e6240487bb1b6d1b98df43245a984b4ebd46f64e1b89fe723627049b8
MD5 fa4a25da06f8e8f037432f63b3a79005
BLAKE2b-256 b9017704a8945e2562af51a5b8b9d6a7d5953448fe95b00b8f43239395ec39f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastparquet-0.8.3-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, 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.12

File hashes

Hashes for fastparquet-0.8.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cccba055f227def3052e3a914be02ca8cd8236867abf6ad5a93689348881caa0
MD5 c4264a92ddd78bb1ee613e1462252e59
BLAKE2b-256 1677c374e927c3b8d83b86612a7af010e66e692e08a18ba030347c7df8a4b567

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastparquet-0.8.3-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, 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.12

File hashes

Hashes for fastparquet-0.8.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b41378b4c5d8a98b4255b08d9e37f6da0e7a932f42ecfb355858e7df628d0864
MD5 0960ee3ae5460475484fc5268e833575
BLAKE2b-256 1a4ec9dc65a482dd7bf51d59b7058f5c3187af3c12a0068f07d9c16a80b91318

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastparquet-0.8.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f4cd5dd8f71d1e3b066d956ca98f661dcab48c619ae07d7bae640b5aced14fe
MD5 fc24157059bc9240443486a9e89ad839
BLAKE2b-256 c747efdb2e16224ca17ded4f33758d65a29a474cc49fcfb2a0ae179608b0e3dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastparquet-0.8.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 147eab12e0f7ebf4fb8ca0c918503a235f14df9fafff500f90e440f61b6fa9f4
MD5 455f3dea1b73ca5517e5506766033519
BLAKE2b-256 30c8214447f24e9f3c5e17235cb13d8a3f425ce2efef56be0bfa44aa6fe02b86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastparquet-0.8.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 49264ce3243dc7e61e379eeb7bfd82167be034e4b913748e45d96d4e27f5cb6e
MD5 bff2fb6a048a6ced5fb235bf1516b2d0
BLAKE2b-256 95bde082fe312b0921f653c2c16d6ed060a7ebf4471e3d0a010e7d5a7c756c04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastparquet-0.8.3-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 573.5 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.12

File hashes

Hashes for fastparquet-0.8.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17412a8827cfd99676b578496afbcf9e8493a712f7aa4745ab42f79274471464
MD5 31b2fd6cbb2dd0571396dea0576d4289
BLAKE2b-256 00ced3f6c114c334cc6c88dfa1d3ec4386b9aa77162e17f9a6fa9fc1087eccbf

See more details on using hashes here.

File details

Details for the file fastparquet-0.8.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: fastparquet-0.8.3-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 602.6 kB
  • Tags: CPython 3.8, macOS 10.9+ 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.12

File hashes

Hashes for fastparquet-0.8.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 462515fc80a2b2f82a7fca50ae2c5b7f4681603029aa253fc2515ed8f5056392
MD5 7bf4fca182aa1f59a4f850f71e35c8e4
BLAKE2b-256 1d4b36d5d9fbdb74836cc78585713f6845930e5845da6838e88ae434ae25346b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastparquet-0.8.3-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 778.5 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.12

File hashes

Hashes for fastparquet-0.8.3-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2f9e1bdc8ee867636bc8951f7186e20776da3628cafcf9fb75121c90feb4c5c5
MD5 1fbfaf02dedc31a83ba507947ebf016f
BLAKE2b-256 dec137e187712ed08d39590cfec593524191e35f3e48d8afabafba8956385387

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