fastparquet


Namefastparquet JSON
Version 2024.11.0 PyPI version JSON
download
home_pagehttps://github.com/dask/fastparquet/
SummaryPython support for Parquet file format
upload_time2024-11-12 20:37:19
maintainerNone
docs_urlNone
authorMartin Durant
requires_python>=3.9
licenseApache License 2.0
keywords
VCS
bugtrack_url
requirements pandas numpy cramjam fsspec packaging
Travis-CI No Travis.
coveralls test coverage
            fastparquet
===========

.. image:: https://github.com/dask/fastparquet/actions/workflows/main.yaml/badge.svg
    :target: https://github.com/dask/fastparquet/actions/workflows/main.yaml

.. image:: https://readthedocs.org/projects/fastparquet/badge/?version=latest
    :target: https://fastparquet.readthedocs.io/en/latest/

fastparquet is a python implementation of the `parquet
format <https://github.com/apache/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_.

.. _documentation: https://fastparquet.readthedocs.io

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
  
  - `lzo <https://github.com/jd-boyd/python-lzo>`_


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*

.. code-block:: python

    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*

.. code-block:: python

    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.

.. _parquet-python: https://github.com/jcrobak/parquet-python


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/dask/fastparquet/",
    "name": "fastparquet",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": "Martin Durant",
    "author_email": "mdurant@anaconda.com",
    "download_url": null,
    "platform": null,
    "description": "fastparquet\n===========\n\n.. image:: https://github.com/dask/fastparquet/actions/workflows/main.yaml/badge.svg\n    :target: https://github.com/dask/fastparquet/actions/workflows/main.yaml\n\n.. image:: https://readthedocs.org/projects/fastparquet/badge/?version=latest\n    :target: https://fastparquet.readthedocs.io/en/latest/\n\nfastparquet is a python implementation of the `parquet\nformat <https://github.com/apache/parquet-format>`_, aiming integrate\ninto python-based big data work-flows. It is used implicitly by\nthe projects Dask, Pandas and intake-parquet.\n\nWe offer a high degree of support for the features of the parquet format, and\nvery competitive performance, in a small install size and codebase.\n\nDetails of this project, how to use it and comparisons to other work can be found in the documentation_.\n\n.. _documentation: https://fastparquet.readthedocs.io\n\nRequirements\n------------\n\n(all development is against recent versions in the default anaconda channels\nand/or conda-forge)\n\nRequired:\n\n- numpy\n- pandas\n- cython >= 0.29.23 (if building from pyx files)\n- cramjam\n- fsspec\n\nSupported compression algorithms:\n\n- Available by default:\n\n  - gzip\n  - snappy\n  - brotli\n  - lz4\n  - zstandard\n\n- Optionally supported\n  \n  - `lzo <https://github.com/jd-boyd/python-lzo>`_\n\n\nInstallation\n------------\n\nInstall using conda, to get the latest compiled version::\n\n   conda install -c conda-forge fastparquet\n\nor install from PyPI::\n\n   pip install fastparquet\n\nYou may wish to install numpy first, to help pip's resolver.\nThis may install an appropriate wheel, or compile from source. For the latter,\nyou will need a suitable C compiler toolchain on your system.\n\nYou can also install latest version from github::\n\n   pip install git+https://github.com/dask/fastparquet\n\nin which case you should also have ``cython`` to be able to rebuild the C files.\n\nUsage\n-----\n\nPlease refer to the documentation_.\n\n*Reading*\n\n.. code-block:: python\n\n    from fastparquet import ParquetFile\n    pf = ParquetFile('myfile.parq')\n    df = pf.to_pandas()\n    df2 = pf.to_pandas(['col1', 'col2'], categories=['col1'])\n\nYou may specify which columns to load, which of those to keep as categoricals\n(if the data uses dictionary encoding). The file-path can be a single file,\na metadata file pointing to other data files, or a directory (tree) containing\ndata files. The latter is what is typically output by hive/spark.\n\n*Writing*\n\n.. code-block:: python\n\n    from fastparquet import write\n    write('outfile.parq', df)\n    write('outfile2.parq', df, row_group_offsets=[0, 10000, 20000],\n          compression='GZIP', file_scheme='hive')\n\nThe default is to produce a single output file with a single row-group\n(i.e., logical segment) and no compression. At the moment, only simple\ndata-types and plain encoding are supported, so expect performance to be\nsimilar to *numpy.savez*.\n\nHistory\n-------\n\nThis project forked in October 2016 from `parquet-python`_, which was not designed\nfor vectorised loading of big data or parallel access.\n\n.. _parquet-python: https://github.com/jcrobak/parquet-python\n\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "Python support for Parquet file format",
    "version": "2024.11.0",
    "project_urls": {
        "Homepage": "https://github.com/dask/fastparquet/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d56476f5b83476a256489879b78513bee737691a80905e246a2daa30ebcc362",
                "md5": "2840f580ca191384d7f663d451297206",
                "sha256": "60ccf587410f0979105e17036df61bb60e1c2b81880dc91895cdb4ee65b71e7f"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "2840f580ca191384d7f663d451297206",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 910272,
            "upload_time": "2024-11-12T20:37:19",
            "upload_time_iso_8601": "2024-11-12T20:37:19.594335Z",
            "url": "https://files.pythonhosted.org/packages/3d/56/476f5b83476a256489879b78513bee737691a80905e246a2daa30ebcc362/fastparquet-2024.11.0-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3bad4ce73440df874479f7205fe5445090f71ed4e9bd77fdb3b740253ce82703",
                "md5": "b60bfdb296da023d999033531808d722",
                "sha256": "a5ad5fc14b0567e700bea3cd528a0bd45a6f9371370b49de8889fb3d10a6574a"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b60bfdb296da023d999033531808d722",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 684095,
            "upload_time": "2024-11-12T20:37:22",
            "upload_time_iso_8601": "2024-11-12T20:37:22.957433Z",
            "url": "https://files.pythonhosted.org/packages/3b/ad/4ce73440df874479f7205fe5445090f71ed4e9bd77fdb3b740253ce82703/fastparquet-2024.11.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2037c3164261d6183d529a59afef2749821b262c8581d837faa91043837c6f76",
                "md5": "a234be2964fd37eca2b99e7b35504bb0",
                "sha256": "0b74333914f454344458dab9d1432fda9b70d62e28dc7acb1512d937ef1424ee"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a234be2964fd37eca2b99e7b35504bb0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1700355,
            "upload_time": "2024-11-12T20:37:25",
            "upload_time_iso_8601": "2024-11-12T20:37:25.792613Z",
            "url": "https://files.pythonhosted.org/packages/20/37/c3164261d6183d529a59afef2749821b262c8581d837faa91043837c6f76/fastparquet-2024.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e695cf4b175c22160ec21e4664830763bfaa80b2cf05133ef854c3f436d01c16",
                "md5": "496368b2e34b3c3f634ef83325089edf",
                "sha256": "41d1610130b5cb1ce36467766191c5418cba8631e2bfe3affffaf13f9be4e7a8"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "496368b2e34b3c3f634ef83325089edf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1714663,
            "upload_time": "2024-11-12T20:37:28",
            "upload_time_iso_8601": "2024-11-12T20:37:28.369810Z",
            "url": "https://files.pythonhosted.org/packages/e6/95/cf4b175c22160ec21e4664830763bfaa80b2cf05133ef854c3f436d01c16/fastparquet-2024.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c31b6c8cdb6d5df964a192e4e8c8ecd979718afb9ca7e2dc9243a4368b370e9",
                "md5": "61d987e9b6ec29204e81978a498d629c",
                "sha256": "d281edd625c33628ba028d3221180283d6161bc5ceb55eae1f0ca1678f864f26"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "61d987e9b6ec29204e81978a498d629c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1666729,
            "upload_time": "2024-11-12T20:37:30",
            "upload_time_iso_8601": "2024-11-12T20:37:30.243422Z",
            "url": "https://files.pythonhosted.org/packages/2c/31/b6c8cdb6d5df964a192e4e8c8ecd979718afb9ca7e2dc9243a4368b370e9/fastparquet-2024.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31e58a0575c46a7973849f8f2a88af16618b9c7efe98f249f03e3e3de69c2b86",
                "md5": "d50318dec593731bb138d7ecaf871aa3",
                "sha256": "fa56b19a29008c34cfe8831e810f770080debcbffc69aabd1df4d47572181f9c"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d50318dec593731bb138d7ecaf871aa3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1741669,
            "upload_time": "2024-11-12T20:37:32",
            "upload_time_iso_8601": "2024-11-12T20:37:32.067712Z",
            "url": "https://files.pythonhosted.org/packages/31/e5/8a0575c46a7973849f8f2a88af16618b9c7efe98f249f03e3e3de69c2b86/fastparquet-2024.11.0-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb6a669f8c9cf2fc6e30c9353832f870e5a2e170b458d12c5080837f742d963d",
                "md5": "f94424375c819955a64465485b26eb8d",
                "sha256": "5914ecfa766b7763201b9f49d832a5e89c2dccad470ca4f9c9b228d9a8349756"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f94424375c819955a64465485b26eb8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1782359,
            "upload_time": "2024-11-12T20:37:33",
            "upload_time_iso_8601": "2024-11-12T20:37:33.806221Z",
            "url": "https://files.pythonhosted.org/packages/bb/6a/669f8c9cf2fc6e30c9353832f870e5a2e170b458d12c5080837f742d963d/fastparquet-2024.11.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70c01374cb43924739f4542e39d972481c1f4c7dd96808a1947450808e4e7df7",
                "md5": "23e0b1ca0a60bca50349aa4d7b2ca275",
                "sha256": "561202e8f0e859ccc1aa77c4aaad1d7901b2d50fd6f624ca018bae4c3c7a62ce"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "23e0b1ca0a60bca50349aa4d7b2ca275",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 670700,
            "upload_time": "2024-11-12T20:37:35",
            "upload_time_iso_8601": "2024-11-12T20:37:35.312205Z",
            "url": "https://files.pythonhosted.org/packages/70/c0/1374cb43924739f4542e39d972481c1f4c7dd96808a1947450808e4e7df7/fastparquet-2024.11.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c51e0d6e702523ac923ede6c05e240f4a02533ccf2cea9fec7a43491078e920",
                "md5": "ac6ff85938306182b141a6035e0a6053",
                "sha256": "374cdfa745aa7d5188430528d5841cf823eb9ad16df72ad6dadd898ccccce3be"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "ac6ff85938306182b141a6035e0a6053",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 909934,
            "upload_time": "2024-11-12T20:37:37",
            "upload_time_iso_8601": "2024-11-12T20:37:37.049602Z",
            "url": "https://files.pythonhosted.org/packages/7c/51/e0d6e702523ac923ede6c05e240f4a02533ccf2cea9fec7a43491078e920/fastparquet-2024.11.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ac85c0fb644c19a8d80b2ae4d8aa7d90c2d85d0bd4a948c5c700bea5c2802ea",
                "md5": "82d2fbd1b038ca0d4a69603e66229e22",
                "sha256": "4c8401bfd86cccaf0ab7c0ade58c91ae19317ff6092e1d4ad96c2178197d8124"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "82d2fbd1b038ca0d4a69603e66229e22",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 683844,
            "upload_time": "2024-11-12T20:37:38",
            "upload_time_iso_8601": "2024-11-12T20:37:38.456046Z",
            "url": "https://files.pythonhosted.org/packages/0a/c8/5c0fb644c19a8d80b2ae4d8aa7d90c2d85d0bd4a948c5c700bea5c2802ea/fastparquet-2024.11.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "334a1e532fd1a0d4d8af7ffc7e3a8106c0bcd13ed914a93a61e299b3832dd3d2",
                "md5": "774fe0370ebc577e7a54ae43ac1faef7",
                "sha256": "f9cca4c6b5969df5561c13786f9d116300db1ec22c7941e237cfca4ce602f59b"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "774fe0370ebc577e7a54ae43ac1faef7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1791698,
            "upload_time": "2024-11-12T20:37:41",
            "upload_time_iso_8601": "2024-11-12T20:37:41.101385Z",
            "url": "https://files.pythonhosted.org/packages/33/4a/1e532fd1a0d4d8af7ffc7e3a8106c0bcd13ed914a93a61e299b3832dd3d2/fastparquet-2024.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8de8e1ede861bea68394a755d8be1aa2e2d60a3b9f6b551bfd56aeca74987e2e",
                "md5": "6653bee83669a6e452dd00506227814f",
                "sha256": "9a9387e77ac608d8978774caaf1e19de67eaa1386806e514dcb19f741b19cfe5"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6653bee83669a6e452dd00506227814f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1804289,
            "upload_time": "2024-11-12T20:37:43",
            "upload_time_iso_8601": "2024-11-12T20:37:43.080813Z",
            "url": "https://files.pythonhosted.org/packages/8d/e8/e1ede861bea68394a755d8be1aa2e2d60a3b9f6b551bfd56aeca74987e2e/fastparquet-2024.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f1e957090cccaede805583ca3f3e46e2762d0f9bf8860ecbce65197e47d84c1",
                "md5": "38b10bfa54087b214725e6c2e058de35",
                "sha256": "6595d3771b3d587a31137e985f751b4d599d5c8e9af9c4858e373fdf5c3f8720"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "38b10bfa54087b214725e6c2e058de35",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1753638,
            "upload_time": "2024-11-12T20:37:45",
            "upload_time_iso_8601": "2024-11-12T20:37:45.498346Z",
            "url": "https://files.pythonhosted.org/packages/4f/1e/957090cccaede805583ca3f3e46e2762d0f9bf8860ecbce65197e47d84c1/fastparquet-2024.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8572344787c685fd1531f07ae712a855a7c34d13deaa26c3fd4a9231bea7dbab",
                "md5": "aa19e8806148868a462b827bf2b5220a",
                "sha256": "053695c2f730b78a2d3925df7cd5c6444d6c1560076af907993361cc7accf3e2"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "aa19e8806148868a462b827bf2b5220a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1814407,
            "upload_time": "2024-11-12T20:37:47",
            "upload_time_iso_8601": "2024-11-12T20:37:47.250231Z",
            "url": "https://files.pythonhosted.org/packages/85/72/344787c685fd1531f07ae712a855a7c34d13deaa26c3fd4a9231bea7dbab/fastparquet-2024.11.0-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6cecab9d5685f776a1965797eb68c4364c72edf57cd35beed2df49b34425d1df",
                "md5": "292ab7b785886a84146eb279312eeb3b",
                "sha256": "0a52eecc6270ae15f0d51347c3f762703dd667ca486f127dc0a21e7e59856ae5"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "292ab7b785886a84146eb279312eeb3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1874462,
            "upload_time": "2024-11-12T20:37:49",
            "upload_time_iso_8601": "2024-11-12T20:37:49.755927Z",
            "url": "https://files.pythonhosted.org/packages/6c/ec/ab9d5685f776a1965797eb68c4364c72edf57cd35beed2df49b34425d1df/fastparquet-2024.11.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "904f7a4ea9a7ddf0a3409873f0787f355806f9e0b73f42f2acecacdd9a8eff0a",
                "md5": "fe83d2e208ef3ab08b16c02c190c46a9",
                "sha256": "e29ff7a367fafa57c6896fb6abc84126e2466811aefd3e4ad4070b9e18820e54"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fe83d2e208ef3ab08b16c02c190c46a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 671023,
            "upload_time": "2024-11-12T20:37:51",
            "upload_time_iso_8601": "2024-11-12T20:37:51.461662Z",
            "url": "https://files.pythonhosted.org/packages/90/4f/7a4ea9a7ddf0a3409873f0787f355806f9e0b73f42f2acecacdd9a8eff0a/fastparquet-2024.11.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0876068ac7ec9b4fc783be21a75a6a90b8c0654da4d46934d969e524ce287787",
                "md5": "c9816f36b22396205146c9284cf7ddf0",
                "sha256": "dbad4b014782bd38b58b8e9f514fe958cfa7a6c4e187859232d29fd5c5ddd849"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp312-cp312-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "c9816f36b22396205146c9284cf7ddf0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 915968,
            "upload_time": "2024-11-12T20:37:52",
            "upload_time_iso_8601": "2024-11-12T20:37:52.861808Z",
            "url": "https://files.pythonhosted.org/packages/08/76/068ac7ec9b4fc783be21a75a6a90b8c0654da4d46934d969e524ce287787/fastparquet-2024.11.0-cp312-cp312-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c79e6d3b4188ad64ed51173263c07109a5f18f9c84a44fa39ab524fca7420cda",
                "md5": "fdb5fbf8af0aba81373e9eeecaa7680d",
                "sha256": "403d31109d398b6be7ce84fa3483fc277c6a23f0b321348c0a505eb098a041cb"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fdb5fbf8af0aba81373e9eeecaa7680d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 685399,
            "upload_time": "2024-11-12T20:37:54",
            "upload_time_iso_8601": "2024-11-12T20:37:54.899299Z",
            "url": "https://files.pythonhosted.org/packages/c7/9e/6d3b4188ad64ed51173263c07109a5f18f9c84a44fa39ab524fca7420cda/fastparquet-2024.11.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f6c809220bc9fbe83d107df2d664c3fb62fb81867be8f5218ac66c2e6b6a358",
                "md5": "3f11fbe0d361b380e9f3abe45171af1b",
                "sha256": "cbbb9057a26acf0abad7adf58781ee357258b7708ee44a289e3bee97e2f55d42"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3f11fbe0d361b380e9f3abe45171af1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1758557,
            "upload_time": "2024-11-12T20:37:56",
            "upload_time_iso_8601": "2024-11-12T20:37:56.553024Z",
            "url": "https://files.pythonhosted.org/packages/8f/6c/809220bc9fbe83d107df2d664c3fb62fb81867be8f5218ac66c2e6b6a358/fastparquet-2024.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e02cb3b3e6ca2e531484289024138cd4709c22512b3fe68066d7f9849da4a76c",
                "md5": "190e515061e6241067496bc578d183b0",
                "sha256": "63e0e416e25c15daa174aad8ba991c2e9e5b0dc347e5aed5562124261400f87b"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "190e515061e6241067496bc578d183b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1781052,
            "upload_time": "2024-11-12T20:37:58",
            "upload_time_iso_8601": "2024-11-12T20:37:58.339470Z",
            "url": "https://files.pythonhosted.org/packages/e0/2c/b3b3e6ca2e531484289024138cd4709c22512b3fe68066d7f9849da4a76c/fastparquet-2024.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21fe97ed45092d0311c013996dae633122b7a51c5d9fe8dcbc2c840dc491201e",
                "md5": "9762f951df3e781fdeb382993ade3d13",
                "sha256": "0e2d7f02f57231e6c86d26e9ea71953737202f20e948790e5d4db6d6a1a150dc"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9762f951df3e781fdeb382993ade3d13",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1715797,
            "upload_time": "2024-11-12T20:38:00",
            "upload_time_iso_8601": "2024-11-12T20:38:00.694026Z",
            "url": "https://files.pythonhosted.org/packages/21/fe/97ed45092d0311c013996dae633122b7a51c5d9fe8dcbc2c840dc491201e/fastparquet-2024.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24df02fa6aee6c0d53d1563b5bc22097076c609c4c5baa47056b0b4bed456fcf",
                "md5": "929dde9dd30b8fbd8762fef5572c05d8",
                "sha256": "fbe4468146b633d8f09d7b196fea0547f213cb5ce5f76e9d1beb29eaa9593a93"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "929dde9dd30b8fbd8762fef5572c05d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1795682,
            "upload_time": "2024-11-12T20:38:02",
            "upload_time_iso_8601": "2024-11-12T20:38:02.380111Z",
            "url": "https://files.pythonhosted.org/packages/24/df/02fa6aee6c0d53d1563b5bc22097076c609c4c5baa47056b0b4bed456fcf/fastparquet-2024.11.0-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b025f4f87557589e1923ee0e3bebbc84f08b7c56962bf90f51b116ddc54f2c9f",
                "md5": "9fa25073959d867f901ec51f42e4afdf",
                "sha256": "29d5c718817bcd765fc519b17f759cad4945974421ecc1931d3bdc3e05e57fa9"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9fa25073959d867f901ec51f42e4afdf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1857842,
            "upload_time": "2024-11-12T20:38:04",
            "upload_time_iso_8601": "2024-11-12T20:38:04.196908Z",
            "url": "https://files.pythonhosted.org/packages/b0/25/f4f87557589e1923ee0e3bebbc84f08b7c56962bf90f51b116ddc54f2c9f/fastparquet-2024.11.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47e3e7db38704be5db787270d43dde895eaa1a825ab25dc245e71df70860ec12",
                "md5": "146cc8938ece35c8826c34460253996f",
                "sha256": "59e5c5b51083d5b82572cdb7aed0346e3181e3ac9d2e45759da2e804bdafa7ee"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp313-cp313-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "146cc8938ece35c8826c34460253996f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 912523,
            "upload_time": "2024-11-12T20:38:06",
            "upload_time_iso_8601": "2024-11-12T20:38:06.003194Z",
            "url": "https://files.pythonhosted.org/packages/47/e3/e7db38704be5db787270d43dde895eaa1a825ab25dc245e71df70860ec12/fastparquet-2024.11.0-cp313-cp313-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d366e3387c99293dae441634e7724acaa425b27de19a00ee3d546775dace54a9",
                "md5": "dd94a9a0d8ad0ef5189a7eb5b1d4cb41",
                "sha256": "bdadf7b6bad789125b823bfc5b0a719ba5c4a2ef965f973702d3ea89cff057f6"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dd94a9a0d8ad0ef5189a7eb5b1d4cb41",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 683779,
            "upload_time": "2024-11-12T20:38:07",
            "upload_time_iso_8601": "2024-11-12T20:38:07.442557Z",
            "url": "https://files.pythonhosted.org/packages/d3/66/e3387c99293dae441634e7724acaa425b27de19a00ee3d546775dace54a9/fastparquet-2024.11.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a21d112d0573d086b578bf04302a502e9a7605ea8f1244a7b8577cd945eec78",
                "md5": "d708ae9c45b3247ef20c3f2fe8308548",
                "sha256": "46b2db02fc2a1507939d35441c8ab211d53afd75d82eec9767d1c3656402859b"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d708ae9c45b3247ef20c3f2fe8308548",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1751113,
            "upload_time": "2024-11-12T20:38:09",
            "upload_time_iso_8601": "2024-11-12T20:38:09.360736Z",
            "url": "https://files.pythonhosted.org/packages/0a/21/d112d0573d086b578bf04302a502e9a7605ea8f1244a7b8577cd945eec78/fastparquet-2024.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ba7040507cee3a7798954e8fdbca21d2dbc532774b02b882d902b8a4a6849ef",
                "md5": "883f5bafa7cb65b957f69678a18f8046",
                "sha256": "a3afdef2895c9f459135a00a7ed3ceafebfbce918a9e7b5d550e4fae39c1b64d"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "883f5bafa7cb65b957f69678a18f8046",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1780496,
            "upload_time": "2024-11-12T20:38:11",
            "upload_time_iso_8601": "2024-11-12T20:38:11.022012Z",
            "url": "https://files.pythonhosted.org/packages/6b/a7/040507cee3a7798954e8fdbca21d2dbc532774b02b882d902b8a4a6849ef/fastparquet-2024.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc75d0d9f7533d780ec167eede16ad88073ee71696150511126c31940e7f73aa",
                "md5": "a6d33fb537489182b1c4c467079dd124",
                "sha256": "36b5c9bd2ffaaa26ff45d59a6cefe58503dd748e0c7fad80dd905749da0f2b9e"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a6d33fb537489182b1c4c467079dd124",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1713608,
            "upload_time": "2024-11-12T20:38:12",
            "upload_time_iso_8601": "2024-11-12T20:38:12.848110Z",
            "url": "https://files.pythonhosted.org/packages/bc/75/d0d9f7533d780ec167eede16ad88073ee71696150511126c31940e7f73aa/fastparquet-2024.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30fa1d95bc86e45e80669c4f374b2ca26a9e5895a1011bb05d6341b4a7414693",
                "md5": "6aa0b4c4f9ad8dd8a8e86b2651fed013",
                "sha256": "6b7df5d3b61a19d76e209fe8d3133759af1c139e04ebc6d43f3cc2d8045ef338"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6aa0b4c4f9ad8dd8a8e86b2651fed013",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1792779,
            "upload_time": "2024-11-12T20:38:14",
            "upload_time_iso_8601": "2024-11-12T20:38:14.500253Z",
            "url": "https://files.pythonhosted.org/packages/30/fa/1d95bc86e45e80669c4f374b2ca26a9e5895a1011bb05d6341b4a7414693/fastparquet-2024.11.0-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "133dc076beeb926c79593374c04662a9422a76650eef17cd1c8e10951340764a",
                "md5": "981637e59fa285fb8c9a2a613d42f5c5",
                "sha256": "8b35823ac7a194134e5f82fa4a9659e42e8f9ad1f2d22a55fbb7b9e4053aabbb"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "981637e59fa285fb8c9a2a613d42f5c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1851322,
            "upload_time": "2024-11-12T20:38:16",
            "upload_time_iso_8601": "2024-11-12T20:38:16.231883Z",
            "url": "https://files.pythonhosted.org/packages/13/3d/c076beeb926c79593374c04662a9422a76650eef17cd1c8e10951340764a/fastparquet-2024.11.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "095a1d0d47e64816002824d4a876644e8c65540fa23f91b701f0daa726931545",
                "md5": "f264f6a297c590a422698883ede78fb6",
                "sha256": "d20632964e65530374ff7cddd42cc06aa0a1388934903693d6d22592a5ba827b"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f264f6a297c590a422698883ede78fb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 673266,
            "upload_time": "2024-11-12T20:38:17",
            "upload_time_iso_8601": "2024-11-12T20:38:17.661916Z",
            "url": "https://files.pythonhosted.org/packages/09/5a/1d0d47e64816002824d4a876644e8c65540fa23f91b701f0daa726931545/fastparquet-2024.11.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a23a607301b22fd50065503a8be7ea0068ae61d9b7f63be44a4bad68a286f712",
                "md5": "6ba7689c4242adbdb71f4981885b2d55",
                "sha256": "1ae953c0e3832ae3936b6d92fde493ac7d8b775d7d59d02f7f46f67e1c21ed24"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "6ba7689c4242adbdb71f4981885b2d55",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 911743,
            "upload_time": "2024-11-12T20:38:19",
            "upload_time_iso_8601": "2024-11-12T20:38:19.620446Z",
            "url": "https://files.pythonhosted.org/packages/a2/3a/607301b22fd50065503a8be7ea0068ae61d9b7f63be44a4bad68a286f712/fastparquet-2024.11.0-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7a7a9ff37efc9cf5164e372a813630488c0b3600e35c6bc1a7add9b9d17296f",
                "md5": "f89f05003506817a364540de5dc271fd",
                "sha256": "869e167a4067116b4a27eb7adbe597130b2e2e9cfc0f3e84f60e2e182a933f23"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f89f05003506817a364540de5dc271fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 684662,
            "upload_time": "2024-11-12T20:38:21",
            "upload_time_iso_8601": "2024-11-12T20:38:21.038106Z",
            "url": "https://files.pythonhosted.org/packages/e7/a7/a9ff37efc9cf5164e372a813630488c0b3600e35c6bc1a7add9b9d17296f/fastparquet-2024.11.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c76dd9456425c312e8629e969c2099c4bc538fbf433542752395acb22c65559",
                "md5": "d22f442a41130a30bd564f12b5fab298",
                "sha256": "eb3356862fba2f9b2ea8e679d66901f466c92be8e023439fe854bc392fbf40a6"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d22f442a41130a30bd564f12b5fab298",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1701403,
            "upload_time": "2024-11-12T20:38:22",
            "upload_time_iso_8601": "2024-11-12T20:38:22.810667Z",
            "url": "https://files.pythonhosted.org/packages/2c/76/dd9456425c312e8629e969c2099c4bc538fbf433542752395acb22c65559/fastparquet-2024.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b39d17a296e458b62e7b9af301c2e7e77a21af37bcf29030a20f56d5d6757ae3",
                "md5": "7d4710771e79cbb1087c4ea6b6958a9c",
                "sha256": "dc475993232c6a64f350aeb928013a807eb93f78675810fd019cbcff39f6baf3"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7d4710771e79cbb1087c4ea6b6958a9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1715213,
            "upload_time": "2024-11-12T20:38:24",
            "upload_time_iso_8601": "2024-11-12T20:38:24.537353Z",
            "url": "https://files.pythonhosted.org/packages/b3/9d/17a296e458b62e7b9af301c2e7e77a21af37bcf29030a20f56d5d6757ae3/fastparquet-2024.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2052b5722eb6e24249706886423fbab2c42a5d60b0fc0f1a27e955ff2b829e8",
                "md5": "0053a8928eca0e714080c254de62c5dc",
                "sha256": "d24c923a2d9d22a5e7564245f856e6462d524d57982ac8f7479cde991ff73362"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0053a8928eca0e714080c254de62c5dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1668310,
            "upload_time": "2024-11-12T20:38:26",
            "upload_time_iso_8601": "2024-11-12T20:38:26.865692Z",
            "url": "https://files.pythonhosted.org/packages/d2/05/2b5722eb6e24249706886423fbab2c42a5d60b0fc0f1a27e955ff2b829e8/fastparquet-2024.11.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c9a8a53dfa0c564f0683b693aa84878074d82ce2516e0f599d2a19ff3a0b073",
                "md5": "64dc62d0db49a5e74f5733ec606a80e2",
                "sha256": "6b936dcf40ca5fff9e70383d48811b1482b871ff74af857cb4db5f4d072f01ab"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "64dc62d0db49a5e74f5733ec606a80e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1743186,
            "upload_time": "2024-11-12T20:38:29",
            "upload_time_iso_8601": "2024-11-12T20:38:29.207704Z",
            "url": "https://files.pythonhosted.org/packages/4c/9a/8a53dfa0c564f0683b693aa84878074d82ce2516e0f599d2a19ff3a0b073/fastparquet-2024.11.0-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cdf661986beb1a894b40e7b9e9f5d0228ca068e005e66576af0b4fa94481ffbc",
                "md5": "6cfbda81c2dd46b220960b093f7cee39",
                "sha256": "4abd3426607335e5ad09be29ef4eeccdf097710e44420deac16893cee64ea0d8"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6cfbda81c2dd46b220960b093f7cee39",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1784121,
            "upload_time": "2024-11-12T20:38:32",
            "upload_time_iso_8601": "2024-11-12T20:38:32.245980Z",
            "url": "https://files.pythonhosted.org/packages/cd/f6/61986beb1a894b40e7b9e9f5d0228ca068e005e66576af0b4fa94481ffbc/fastparquet-2024.11.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91712cf345d0ccf1239108190bcd838a19b289fa1bac5676e8ae701ae24b602f",
                "md5": "be6c63e5230ef4b713a5e768cc7b0e44",
                "sha256": "6ec7b398a86432993441d0a08dfae59e29649c803ed64ec4b1d7c3e0855b14cb"
            },
            "downloads": -1,
            "filename": "fastparquet-2024.11.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "be6c63e5230ef4b713a5e768cc7b0e44",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 671248,
            "upload_time": "2024-11-12T20:38:34",
            "upload_time_iso_8601": "2024-11-12T20:38:34.334968Z",
            "url": "https://files.pythonhosted.org/packages/91/71/2cf345d0ccf1239108190bcd838a19b289fa1bac5676e8ae701ae24b602f/fastparquet-2024.11.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-12 20:37:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "dask",
    "github_project": "fastparquet",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "requirements": [
        {
            "name": "pandas",
            "specs": [
                [
                    ">=",
                    "1.5.0"
                ]
            ]
        },
        {
            "name": "numpy",
            "specs": []
        },
        {
            "name": "cramjam",
            "specs": [
                [
                    ">=",
                    "2.3"
                ]
            ]
        },
        {
            "name": "fsspec",
            "specs": []
        },
        {
            "name": "packaging",
            "specs": []
        }
    ],
    "lcname": "fastparquet"
}
        
Elapsed time: 1.25991s