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

Uploaded Source

Built Distributions

fastparquet-0.7.1-cp39-cp39-win_amd64.whl (575.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

fastparquet-0.7.1-cp39-cp39-manylinux2010_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

fastparquet-0.7.1-cp39-cp39-manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

fastparquet-0.7.1-cp39-cp39-manylinux1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9

fastparquet-0.7.1-cp39-cp39-manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9

fastparquet-0.7.1-cp38-cp38-win_amd64.whl (572.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastparquet-0.7.1-cp38-cp38-manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

fastparquet-0.7.1-cp38-cp38-manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

fastparquet-0.7.1-cp38-cp38-manylinux1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8

fastparquet-0.7.1-cp38-cp38-manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8

fastparquet-0.7.1-cp37-cp37m-win_amd64.whl (567.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

fastparquet-0.7.1-cp37-cp37m-manylinux2010_x86_64.whl (1.2 MB view details)

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

fastparquet-0.7.1-cp37-cp37m-manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

fastparquet-0.7.1-cp37-cp37m-manylinux1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m

fastparquet-0.7.1-cp37-cp37m-manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.7m

fastparquet-0.7.1-cp36-cp36m-win_amd64.whl (568.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

fastparquet-0.7.1-cp36-cp36m-manylinux2010_x86_64.whl (1.2 MB view details)

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

fastparquet-0.7.1-cp36-cp36m-manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

fastparquet-0.7.1-cp36-cp36m-manylinux1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6m

fastparquet-0.7.1-cp36-cp36m-manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.6m

File details

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

File metadata

  • Download URL: fastparquet-0.7.1.tar.gz
  • Upload date:
  • Size: 354.9 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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1.tar.gz
Algorithm Hash digest
SHA256 3b8906f3aa94539e2849927fae572c93d9ed229ecf39032f0a42b47e06dfb569
MD5 3909a431b3b8b6d7b9abff4c1c38f828
BLAKE2b-256 2a6cfdaa3ead619939280466574b2fc8fc8f963fc6898f22ce14b20a4fb00846

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.7.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 575.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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 183d159a3fde3237210e35f3b4ad98ccb7883310d2460f3090e8278f2f9ea916
MD5 19c2bd765d7ff13a8aef5192fc18f47d
BLAKE2b-256 c7ef0b2aebc9b807e1fc007cf29d3c12f6c120457828bc8123efd64d6ab099ef

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.7.1-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.3 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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d354c1e521a2fb933d7308c5ff1f40131a43c9ee17ae534614afcefa48530f1c
MD5 e106ddaf783adf38c60ab9fb4afa1c22
BLAKE2b-256 e250078fc35810a0550c8b1048c9521f3ea5c24fb8fb86604311fb68a9477263

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.7.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.2 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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9ce7b1dae71c262808c9a834facd7776bdb1b8583646eb60acae01b35e8a92e9
MD5 ec0d6a4fe064ffebbd5b6d93d1915fb1
BLAKE2b-256 d09a3a2751775f0c3567854cf7bb0814417206384d48e97cb18e9e46536f2aa1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.7.1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.2 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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 901d8b1f3f04ca45c75742207e001596d862be5fd44f8f616f72d7a82bcbf271
MD5 7c4dbfdc50f57f23d79fcaec7067e727
BLAKE2b-256 a444d0835fe9ba24c17bd69bb1856640b3d90beff9f62b61525e8551ce05069a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.7.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.2 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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 74dd496476dcbedd3038f09770118dfd3a6bef4088ddaeacd9fe62b6f8d6f104
MD5 7cf2ff655c1d44c77e72ac9d649a325b
BLAKE2b-256 c40ddee2914292b4fb63ecd003903dae9bff0aaf1793e1a4bd5c0cdf75d832fb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.7.1-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c57e166122c0e8f4813f1c111aed1442bb0e018a9e11ef8b1246847fac4ac9c6
MD5 e6bb008c63b09db7c6e0955a816fc62c
BLAKE2b-256 56581754d0d14b387fa7da6976d5f952ad04279dfba1e5046029e4b4f0cca793

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.7.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 572.6 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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 dd4a66d3325372e0b23d6eccd5edb5871cc0965ca678109c57d8b4b8f6254060
MD5 75833d373f1d4029739b94d8a62886f4
BLAKE2b-256 6e03e7ad6566c4d8ca9b108144a147d06af8c32f4e199bdedf94cedf1b80b600

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.7.1-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.3 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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d000f166188bd1b4eb0857ed1e80498865ac7cfc353150d7b93036e21a16c3a4
MD5 002bcd6d40260f6ef01d8cef4d5db454
BLAKE2b-256 c74b423ab80c4dbbdf531f163e35d3caad169a7110da61c1098144e4297e8f98

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.7.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.3 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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2407ed069ea707eec617748e9abe63a7fd0bd0caff8f5b76ff98131afc684454
MD5 6b10559182fbb7faef470a16dc755a20
BLAKE2b-256 5955b537374cf5f13405f53df4fdde52a2889c45fc15fec1f46bab9e30ccfd58

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.7.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.2 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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d5ab21daf254dd2fed517a6cee7e208778f9ada030d9f81b60ba673c000d4c3b
MD5 a9188d7e9f634a0abc497085fd8b2a50
BLAKE2b-256 eb404f9846e8e10be35ff43abca91579e6f25062d4de9357b4f431a2df86cd51

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.7.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.3 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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b8a3dfb7a4ad1289c8e135b7f8e98a95740e06db450553a2c0b387d5d7fc569f
MD5 29fe091adf47a07c6f6ca66a8dc4fef7
BLAKE2b-256 43102cafd00ed2d591f191c57fbdd5e2ed11b4a96818c936dd050a1178c55c2f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.7.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8123bea3f87bbba1f1c679e341a35ed39781e406ed15295444ddc961f5e0fa6c
MD5 762f5335f985e0f63d17424358dfef12
BLAKE2b-256 2807f5a3417d90ae7a107315f594b423507e5c40c79d1d4bd2d858a870c66b19

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.7.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 567.5 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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 dc9850f86205bcd42dc74ac6e81aaad0f70c8caee08f9fbf9f0cf0f105e9bf86
MD5 67077a5d832062fa26952e494f07ef6c
BLAKE2b-256 4e6928f9e66261065e347a0192d76701833c9ce996bb2f99bfa4ad3440ac28d7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.7.1-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.2 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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f0b0f3db80ad385eb1448401cd1eefc434f7498ab3fbf58487ba34c1b088f36
MD5 c1787a9aeb8702f9c0a6dc7f8f9aaec4
BLAKE2b-256 3688f6498724af53532d8e2832e77192f159a7852004a903ec492e38c545d192

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.7.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.2 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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a3daf01b1ee5e032dbdc7d622ab3ab9b6d9858595d3925e84d6c99d7c2663dc9
MD5 039d7e43212f6e224c8d48f212f14c5d
BLAKE2b-256 3e1d0e7d2c11e70d2ec1967d61660d779fc91d5b0f05823ef113eca2aa1037df

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.7.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.1 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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b10ba5dcdbd24b61ec19b1e3acf85ae5941c867a28e36b77259ac17fdecc2b42
MD5 458807404ce7656dae0cafc0f39f1538
BLAKE2b-256 6744a30224d2436282d19004b37865d8e27b9927bd207513cc095ddcb9e7685d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.7.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.2 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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bf705af4b0db6ab389ec4fe420a7c2b28fc254c2ab5f362847e35721e96da01f
MD5 14bcb1780f03b2039b35a4c1fa648351
BLAKE2b-256 6aa71b126fd1e9d4f4537aaf7a8a701dedfba84e23aa67a7defae4421d5443e9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastparquet-0.7.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.1 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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 725ae478a25c2ffdacc028885375e5e4310879521da9bbda56acf724d3744519
MD5 9f7c80bd161407f13aba865f76ba12e4
BLAKE2b-256 8af38b057b0433ae3d8043f3bdf9d82abf6b72f43f501a430f957946c5aa15ad

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.7.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: fastparquet-0.7.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 568.9 kB
  • Tags: CPython 3.6m, 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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 911835b1b38e97c78406307539cda009b74aa4ca1736466cea53037409d25220
MD5 d309a097d6ce3c463a2e4829c7b5ada0
BLAKE2b-256 60b7b50d751eb742210b51f695876e848e90d09290c2b694d4180e252cdb1a45

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.7.1-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: fastparquet-0.7.1-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7fd46411044c2ade874f8c78250fa4103cb6ae77b4ae479f91b819ba5034233d
MD5 42051f6918ecbe13b6582418f1d76b62
BLAKE2b-256 abd9748b190287eb22b4f96cb54d4234d89ee862e096ff46d63782afa131d3bf

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.7.1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: fastparquet-0.7.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, 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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e43f3685c96506e5cbbfe8959cdd0981889023629862249476e666b700922d72
MD5 c046b961b4c4946a43764757a7a6e6ae
BLAKE2b-256 9778b0e570ccb0fb085c0b347dda74d4205469f2f571d52c8992bae50e92a115

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.7.1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: fastparquet-0.7.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.6m, 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.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 976d30c6ea19f57d31bfbe8cc1082c008129735a123a7880edcc17863bb57535
MD5 eed7055b6edb9d52bcf69bf7eb6ffccd
BLAKE2b-256 6c86b635e0e2ef476b9ab32c8b1c6676c7c10dabf3d71fc0ed986851b222d506

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.7.1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: fastparquet-0.7.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 92b9444924ea24f6165d9861bd7cea63aeef807350b76591b5905882b2acc3ed
MD5 0592db33d1e1f2f915d8fb297f8aff9d
BLAKE2b-256 3c02fe5e2fbcc7afb980067d6578d9a99dfbedb9970db81506e823d9fc228d7b

See more details on using hashes here.

Provenance

File details

Details for the file fastparquet-0.7.1-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: fastparquet-0.7.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for fastparquet-0.7.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 458d42309a78828def2f2cdacda0dc22241e09841acb6ec280b26c9a6c1d092a
MD5 a5e9a0c83342e1289736b19333a5fdba
BLAKE2b-256 3380586f1b0d26c22723727dc6bcd448ca671fa1b97d4f2b37bf988f71cf64e9

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