fastavro


Namefastavro JSON
Version 1.9.4 PyPI version JSON
download
home_pagehttps://github.com/fastavro/fastavro
SummaryFast read/write of AVRO files
upload_time2024-02-13 19:14:34
maintainer
docs_urlNone
authorMiki Tebeka
requires_python>=3.8
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # fastavro
[![Build Status](https://github.com/fastavro/fastavro/workflows/Build/badge.svg)](https://github.com/fastavro/fastavro/actions)
[![Documentation Status](https://readthedocs.org/projects/fastavro/badge/?version=latest)](http://fastavro.readthedocs.io/en/latest/?badge=latest)
[![codecov](https://codecov.io/gh/fastavro/fastavro/branch/master/graph/badge.svg)](https://codecov.io/gh/fastavro/fastavro)


Because the Apache Python `avro` package is written in pure Python, it is
relatively slow. In one test case, it takes about 14 seconds to iterate through
a file of 10,000 records. By comparison, the JAVA `avro` SDK reads the same file in
1.9 seconds.

The `fastavro` library was written to offer performance comparable to the Java
library. With regular CPython, `fastavro` uses C extensions which allow it to
iterate the same 10,000 record file in 1.7 seconds. With PyPy, this drops to 1.5
seconds (to be fair, the JAVA benchmark is doing some extra JSON
encoding/decoding).

`fastavro` supports the following Python versions:

* Python 3.8
* Python 3.9
* Python 3.10
* Python 3.11
* Python 3.12
* PyPy3

## Supported Features

* File Writer
* File Reader (iterating via records or blocks)
* Schemaless Writer
* Schemaless Reader
* JSON Writer
* JSON Reader
* Codecs (Snappy, Deflate, Zstandard, Bzip2, LZ4, XZ)
* Schema resolution
* Aliases
* Logical Types
* Parsing schemas into the canonical form
* Schema fingerprinting

## Missing Features

* Anything involving Avro's RPC features

[Cython]: http://cython.org/

# Documentation

Documentation is available at http://fastavro.readthedocs.io/en/latest/

# Installing
`fastavro` is available both on [PyPI](http://pypi.python.org/pypi)

    pip install fastavro

and on [conda-forge](https://conda-forge.github.io) `conda` channel.

    conda install -c conda-forge fastavro

# Contributing

* Bugs and new feature requests typically start as GitHub issues where they can be discussed. I try to resolve these as time affords, but PRs are welcome from all.
* Get approval from discussing on the GitHub issue before opening the pull request
* Tests must be passing for pull request to be considered

Developer requirements can be installed with `pip install -r developer_requirements.txt`.
If those are installed, you can run the tests with `./run-tests.sh`. If you have trouble
installing those dependencies, you can run `docker build .` to run the tests inside
a Docker container. This won't test on all versions of Python or on PyPy, so it's possible
to still get CI failures after making a pull request, but we can work through those errors
if/when they happen. `.run-tests.sh` only covers the Cython tests. In order to test the
pure Python implementation, comment out `python setup.py build_ext --inplace`
and re-run.

NOTE: Some tests might fail when running the tests locally. An example of this
is this codec tests. If the supporting codec library is not available, the test
will fail. These failures can be ignored since the tests will on pull requests
and will be run in the correct environments with the correct dependencies set up.

### Releasing

We release both to [PyPI][pypi] and to [conda-forge][conda-forge].

We assume you have [twine][twine] installed and that you've created your own
fork of [fastavro-feedstock][feedstock].

* Make sure the tests pass
* Run `make tag`
* Wait for all artifacts to be built and published the the Github release
* Run `make publish`
* The conda-forge PR should get created and merged automatically

[conda-forge]: https://conda-forge.org/
[feedstock]: https://github.com/conda-forge/fastavro-feedstock
[pypi]: https://pypi.python.org/pypi
[twine]: https://pypi.python.org/pypi/twine


# Changes

See the [ChangeLog]

[ChangeLog]: https://github.com/fastavro/fastavro/blob/master/ChangeLog

# Contact

[Project Home](https://github.com/fastavro/fastavro)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/fastavro/fastavro",
    "name": "fastavro",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "",
    "author": "Miki Tebeka",
    "author_email": "miki.tebeka@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/90/92/c6b038c0a00230906810e665ed787cb5ec975ef339630cb03fbd8d667a6a/fastavro-1.9.4.tar.gz",
    "platform": null,
    "description": "# fastavro\n[![Build Status](https://github.com/fastavro/fastavro/workflows/Build/badge.svg)](https://github.com/fastavro/fastavro/actions)\n[![Documentation Status](https://readthedocs.org/projects/fastavro/badge/?version=latest)](http://fastavro.readthedocs.io/en/latest/?badge=latest)\n[![codecov](https://codecov.io/gh/fastavro/fastavro/branch/master/graph/badge.svg)](https://codecov.io/gh/fastavro/fastavro)\n\n\nBecause the Apache Python `avro` package is written in pure Python, it is\nrelatively slow. In one test case, it takes about 14 seconds to iterate through\na file of 10,000 records. By comparison, the JAVA `avro` SDK reads the same file in\n1.9 seconds.\n\nThe `fastavro` library was written to offer performance comparable to the Java\nlibrary. With regular CPython, `fastavro` uses C extensions which allow it to\niterate the same 10,000 record file in 1.7 seconds. With PyPy, this drops to 1.5\nseconds (to be fair, the JAVA benchmark is doing some extra JSON\nencoding/decoding).\n\n`fastavro` supports the following Python versions:\n\n* Python 3.8\n* Python 3.9\n* Python 3.10\n* Python 3.11\n* Python 3.12\n* PyPy3\n\n## Supported Features\n\n* File Writer\n* File Reader (iterating via records or blocks)\n* Schemaless Writer\n* Schemaless Reader\n* JSON Writer\n* JSON Reader\n* Codecs (Snappy, Deflate, Zstandard, Bzip2, LZ4, XZ)\n* Schema resolution\n* Aliases\n* Logical Types\n* Parsing schemas into the canonical form\n* Schema fingerprinting\n\n## Missing Features\n\n* Anything involving Avro's RPC features\n\n[Cython]: http://cython.org/\n\n# Documentation\n\nDocumentation is available at http://fastavro.readthedocs.io/en/latest/\n\n# Installing\n`fastavro` is available both on [PyPI](http://pypi.python.org/pypi)\n\n    pip install fastavro\n\nand on [conda-forge](https://conda-forge.github.io) `conda` channel.\n\n    conda install -c conda-forge fastavro\n\n# Contributing\n\n* Bugs and new feature requests typically start as GitHub issues where they can be discussed. I try to resolve these as time affords, but PRs are welcome from all.\n* Get approval from discussing on the GitHub issue before opening the pull request\n* Tests must be passing for pull request to be considered\n\nDeveloper requirements can be installed with `pip install -r developer_requirements.txt`.\nIf those are installed, you can run the tests with `./run-tests.sh`. If you have trouble\ninstalling those dependencies, you can run `docker build .` to run the tests inside\na Docker container. This won't test on all versions of Python or on PyPy, so it's possible\nto still get CI failures after making a pull request, but we can work through those errors\nif/when they happen. `.run-tests.sh` only covers the Cython tests. In order to test the\npure Python implementation, comment out `python setup.py build_ext --inplace`\nand re-run.\n\nNOTE: Some tests might fail when running the tests locally. An example of this\nis this codec tests. If the supporting codec library is not available, the test\nwill fail. These failures can be ignored since the tests will on pull requests\nand will be run in the correct environments with the correct dependencies set up.\n\n### Releasing\n\nWe release both to [PyPI][pypi] and to [conda-forge][conda-forge].\n\nWe assume you have [twine][twine] installed and that you've created your own\nfork of [fastavro-feedstock][feedstock].\n\n* Make sure the tests pass\n* Run `make tag`\n* Wait for all artifacts to be built and published the the Github release\n* Run `make publish`\n* The conda-forge PR should get created and merged automatically\n\n[conda-forge]: https://conda-forge.org/\n[feedstock]: https://github.com/conda-forge/fastavro-feedstock\n[pypi]: https://pypi.python.org/pypi\n[twine]: https://pypi.python.org/pypi/twine\n\n\n# Changes\n\nSee the [ChangeLog]\n\n[ChangeLog]: https://github.com/fastavro/fastavro/blob/master/ChangeLog\n\n# Contact\n\n[Project Home](https://github.com/fastavro/fastavro)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Fast read/write of AVRO files",
    "version": "1.9.4",
    "project_urls": {
        "Homepage": "https://github.com/fastavro/fastavro"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a6f7a7886b601cd7260c36c54e71cef8fa6eb554592694c07fa51689a0b38aa",
                "md5": "4e3a91de1d96f0751cd7c5ba998d15c9",
                "sha256": "60cb38f07462a7fb4e4440ed0de67d3d400ae6b3d780f81327bebde9aa55faef"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e3a91de1d96f0751cd7c5ba998d15c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 590584,
            "upload_time": "2024-02-13T19:14:40",
            "upload_time_iso_8601": "2024-02-13T19:14:40.027079Z",
            "url": "https://files.pythonhosted.org/packages/3a/6f/7a7886b601cd7260c36c54e71cef8fa6eb554592694c07fa51689a0b38aa/fastavro-1.9.4-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "744948607a240f47a9e1560c4bfb9a8270289c368a0ced2ddc88d6b15d8c80ad",
                "md5": "915f348003106e19dce9b5b215d95957",
                "sha256": "063d01d197fc929c20adc09ca9f0ca86d33ac25ee0963ce0b438244eee8315ae"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "915f348003106e19dce9b5b215d95957",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3018451,
            "upload_time": "2024-02-13T19:14:44",
            "upload_time_iso_8601": "2024-02-13T19:14:44.370725Z",
            "url": "https://files.pythonhosted.org/packages/74/49/48607a240f47a9e1560c4bfb9a8270289c368a0ced2ddc88d6b15d8c80ad/fastavro-1.9.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e900c4e381c35eaee93cab9653bb345c5ffddc8ace5e84ddaa9cdb2f7a1022c0",
                "md5": "5f67c05d4c0a2f3bf4b66d37d71556f2",
                "sha256": "87a9053fcfbc895f2a16a4303af22077e3a8fdcf1cd5d6ed47ff2ef22cbba2f0"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f67c05d4c0a2f3bf4b66d37d71556f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3068838,
            "upload_time": "2024-02-13T19:14:49",
            "upload_time_iso_8601": "2024-02-13T19:14:49.066551Z",
            "url": "https://files.pythonhosted.org/packages/e9/00/c4e381c35eaee93cab9653bb345c5ffddc8ace5e84ddaa9cdb2f7a1022c0/fastavro-1.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7cb1c222300cc347be178d4b2f8139f2aa941bcfe30c01f736e8bc7b1d697302",
                "md5": "3e574a2e407843dfea4d504a38216a11",
                "sha256": "02bf1276b7326397314adf41b34a4890f6ffa59cf7e0eb20b9e4ab0a143a1598"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3e574a2e407843dfea4d504a38216a11",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3005256,
            "upload_time": "2024-02-13T19:14:54",
            "upload_time_iso_8601": "2024-02-13T19:14:54.130879Z",
            "url": "https://files.pythonhosted.org/packages/7c/b1/c222300cc347be178d4b2f8139f2aa941bcfe30c01f736e8bc7b1d697302/fastavro-1.9.4-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73ba4c354c6e9849b482f0d982688eb395543225fd15ef98956a09168df16c1b",
                "md5": "00df81f975d1c5d789d95b308bf8b516",
                "sha256": "56bed9eca435389a8861e6e2d631ec7f8f5dda5b23f93517ac710665bd34ca29"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "00df81f975d1c5d789d95b308bf8b516",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3053102,
            "upload_time": "2024-02-13T19:14:59",
            "upload_time_iso_8601": "2024-02-13T19:14:59.074765Z",
            "url": "https://files.pythonhosted.org/packages/73/ba/4c354c6e9849b482f0d982688eb395543225fd15ef98956a09168df16c1b/fastavro-1.9.4-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "212c413f8edb84b499855c38ddb43659c953efdae62051b54c0571323f51b89f",
                "md5": "e34b0c447cf282b09f6c961e6ac00f4d",
                "sha256": "0cd2099c8c672b853e0b20c13e9b62a69d3fbf67ee7c59c7271ba5df1680310d"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e34b0c447cf282b09f6c961e6ac00f4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 497173,
            "upload_time": "2024-02-13T19:15:02",
            "upload_time_iso_8601": "2024-02-13T19:15:02.907499Z",
            "url": "https://files.pythonhosted.org/packages/21/2c/413f8edb84b499855c38ddb43659c953efdae62051b54c0571323f51b89f/fastavro-1.9.4-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4535ed6a09aa1bcaf3cf49f158ff6b7fa91cabe070f10e5d4f0618af8614c8c0",
                "md5": "ae55f03de3475d7e98e9e01d08f2331f",
                "sha256": "af8c6d8c43a02b5569c093fc5467469541ac408c79c36a5b0900d3dd0b3ba838"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "ae55f03de3475d7e98e9e01d08f2331f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1090637,
            "upload_time": "2024-02-13T19:15:08",
            "upload_time_iso_8601": "2024-02-13T19:15:08.218840Z",
            "url": "https://files.pythonhosted.org/packages/45/35/ed6a09aa1bcaf3cf49f158ff6b7fa91cabe070f10e5d4f0618af8614c8c0/fastavro-1.9.4-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75653948dd27dd38169437376e1017ccaa423094d4b52b6b8aae26700273b161",
                "md5": "9469d9f58399846c6682ecd6d48251ab",
                "sha256": "e4a138710bd61580324d23bc5e3df01f0b82aee0a76404d5dddae73d9e4c723f"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9469d9f58399846c6682ecd6d48251ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3301632,
            "upload_time": "2024-02-13T19:15:14",
            "upload_time_iso_8601": "2024-02-13T19:15:14.489785Z",
            "url": "https://files.pythonhosted.org/packages/75/65/3948dd27dd38169437376e1017ccaa423094d4b52b6b8aae26700273b161/fastavro-1.9.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bbf10b2f1ef950e948f8eab7bcf6fcbbccdfcd5468cf269c1133b3bd02648a1f",
                "md5": "bc674bc95d674c08e40789ddc6063e84",
                "sha256": "903d97418120ca6b6a7f38a731166c1ccc2c4344ee5e0470d09eb1dc3687540a"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc674bc95d674c08e40789ddc6063e84",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3332880,
            "upload_time": "2024-02-13T19:15:21",
            "upload_time_iso_8601": "2024-02-13T19:15:21.878421Z",
            "url": "https://files.pythonhosted.org/packages/bb/f1/0b2f1ef950e948f8eab7bcf6fcbbccdfcd5468cf269c1133b3bd02648a1f/fastavro-1.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f94871f19fd0885228b9698c40cf79a3a3fe9d231ec36c1fa99e1db10f6d3f4",
                "md5": "3797b8354eacb2953e63b3dc0c3a61a3",
                "sha256": "c443eeb99899d062dbf78c525e4614dd77e041a7688fa2710c224f4033f193ae"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3797b8354eacb2953e63b3dc0c3a61a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3312646,
            "upload_time": "2024-02-13T19:15:28",
            "upload_time_iso_8601": "2024-02-13T19:15:28.211834Z",
            "url": "https://files.pythonhosted.org/packages/3f/94/871f19fd0885228b9698c40cf79a3a3fe9d231ec36c1fa99e1db10f6d3f4/fastavro-1.9.4-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba73e64ed287a8786731ea00f83e4fb1d863f7932eb5ca8ac388e150a4780339",
                "md5": "4f967853c8ad450edb0f9bffaa9d9c8c",
                "sha256": "ac26ab0774d1b2b7af6d8f4300ad20bbc4b5469e658a02931ad13ce23635152f"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f967853c8ad450edb0f9bffaa9d9c8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3355161,
            "upload_time": "2024-02-13T19:15:34",
            "upload_time_iso_8601": "2024-02-13T19:15:34.323813Z",
            "url": "https://files.pythonhosted.org/packages/ba/73/e64ed287a8786731ea00f83e4fb1d863f7932eb5ca8ac388e150a4780339/fastavro-1.9.4-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b7e18d9b5c3e1621f58c1f4bee67ec1e4dd8ce8287e70c97262088a5673145c",
                "md5": "3d777f34764b25611b8df5a94f186fcc",
                "sha256": "cf7247874c22be856ba7d1f46a0f6e0379a6025f1a48a7da640444cbac6f570b"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3d777f34764b25611b8df5a94f186fcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 499413,
            "upload_time": "2024-02-13T19:15:37",
            "upload_time_iso_8601": "2024-02-13T19:15:37.204173Z",
            "url": "https://files.pythonhosted.org/packages/2b/7e/18d9b5c3e1621f58c1f4bee67ec1e4dd8ce8287e70c97262088a5673145c/fastavro-1.9.4-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3fbe9d780d1ce74ff407c58b9427e39dca0bc1157c7ac4d2bf97291466e67e4",
                "md5": "936ee607a1c1e871af157501167f4ace",
                "sha256": "68912f2020e1b3d70557260b27dd85fb49a4fc6bfab18d384926127452c1da4c"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "936ee607a1c1e871af157501167f4ace",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1069338,
            "upload_time": "2024-02-13T19:15:41",
            "upload_time_iso_8601": "2024-02-13T19:15:41.516407Z",
            "url": "https://files.pythonhosted.org/packages/b3/fb/e9d780d1ce74ff407c58b9427e39dca0bc1157c7ac4d2bf97291466e67e4/fastavro-1.9.4-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4bca3e93282feb21da7525935f042c35c3dd709f0ce168e46f84b58f109db84c",
                "md5": "3e7e770b18aa1fd9f73fa84435f5524d",
                "sha256": "6925ce137cdd78e109abdb0bc33aad55de6c9f2d2d3036b65453128f2f5f5b92"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3e7e770b18aa1fd9f73fa84435f5524d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3268683,
            "upload_time": "2024-02-13T19:15:48",
            "upload_time_iso_8601": "2024-02-13T19:15:48.557941Z",
            "url": "https://files.pythonhosted.org/packages/4b/ca/3e93282feb21da7525935f042c35c3dd709f0ce168e46f84b58f109db84c/fastavro-1.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03d1b1841585269d3afa8e29bc5ea06a9c15dae09ce287f803f64ea6e446ccc7",
                "md5": "7acf4464d2846f4924ae75419a6a7ff6",
                "sha256": "8b928cd294e36e35516d0deb9e104b45be922ba06940794260a4e5dbed6c192a"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7acf4464d2846f4924ae75419a6a7ff6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3330467,
            "upload_time": "2024-02-13T19:15:56",
            "upload_time_iso_8601": "2024-02-13T19:15:56.138922Z",
            "url": "https://files.pythonhosted.org/packages/03/d1/b1841585269d3afa8e29bc5ea06a9c15dae09ce287f803f64ea6e446ccc7/fastavro-1.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "947cc9c60190f7ea1d1f3ada4ed205daf526cf1c8f7e19bd61d62db1c68f94d7",
                "md5": "1dde56a8bd1316b24f7281e4ce2d19c2",
                "sha256": "90c9838bc4c991ffff5dd9d88a0cc0030f938b3fdf038cdf6babde144b920246"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1dde56a8bd1316b24f7281e4ce2d19c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3253758,
            "upload_time": "2024-02-13T19:16:02",
            "upload_time_iso_8601": "2024-02-13T19:16:02.458088Z",
            "url": "https://files.pythonhosted.org/packages/94/7c/c9c60190f7ea1d1f3ada4ed205daf526cf1c8f7e19bd61d62db1c68f94d7/fastavro-1.9.4-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1daef6f360a917d146b75b9da2f3c83ae29c562dcf3ba140f5a376461383fd0b",
                "md5": "02c49e360a870deb6c871655e407e660",
                "sha256": "eca6e54da571b06a3c5a72dbb7212073f56c92a6fbfbf847b91c347510f8a426"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "02c49e360a870deb6c871655e407e660",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3320856,
            "upload_time": "2024-02-13T19:16:09",
            "upload_time_iso_8601": "2024-02-13T19:16:09.696285Z",
            "url": "https://files.pythonhosted.org/packages/1d/ae/f6f360a917d146b75b9da2f3c83ae29c562dcf3ba140f5a376461383fd0b/fastavro-1.9.4-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "771c9a22bfde3308535510bf5ecff1633d7c0f5d603e8d8f0b28c1e86439e26e",
                "md5": "0f736039b628f46eb8c071fd538d88f9",
                "sha256": "a4b02839ac261100cefca2e2ad04cdfedc556cb66b5ec735e0db428e74b399de"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0f736039b628f46eb8c071fd538d88f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 487365,
            "upload_time": "2024-02-13T19:16:13",
            "upload_time_iso_8601": "2024-02-13T19:16:13.290148Z",
            "url": "https://files.pythonhosted.org/packages/77/1c/9a22bfde3308535510bf5ecff1633d7c0f5d603e8d8f0b28c1e86439e26e/fastavro-1.9.4-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc96f65656f1d6956cab3034812b120e5ea727aff253372f35399660939d7825",
                "md5": "8205e66ddff76072d516b022838de7b4",
                "sha256": "4451ee9a305a73313a1558d471299f3130e4ecc10a88bf5742aa03fb37e042e6"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp38-cp38-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8205e66ddff76072d516b022838de7b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 591141,
            "upload_time": "2024-02-13T19:16:17",
            "upload_time_iso_8601": "2024-02-13T19:16:17.773407Z",
            "url": "https://files.pythonhosted.org/packages/fc/96/f65656f1d6956cab3034812b120e5ea727aff253372f35399660939d7825/fastavro-1.9.4-cp38-cp38-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cfb14aeb9055309b4137197da822185eb955a0e2c6d332879cbb393ade9197b9",
                "md5": "4b76dcd4c89fa4e7f1074c8423547c3c",
                "sha256": "a8524fccfb379565568c045d29b2ebf71e1f2c0dd484aeda9fe784ef5febe1a8"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4b76dcd4c89fa4e7f1074c8423547c3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3102877,
            "upload_time": "2024-02-13T19:16:22",
            "upload_time_iso_8601": "2024-02-13T19:16:22.896143Z",
            "url": "https://files.pythonhosted.org/packages/cf/b1/4aeb9055309b4137197da822185eb955a0e2c6d332879cbb393ade9197b9/fastavro-1.9.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d3770ef969b2c6c3c1076878959cb695b583eb964e430bb98bf960ff4a94574",
                "md5": "db0c2587e9ec356632ab27d53531fb86",
                "sha256": "33d0a00a6e09baa20f6f038d7a2ddcb7eef0e7a9980e947a018300cb047091b8"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "db0c2587e9ec356632ab27d53531fb86",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3145273,
            "upload_time": "2024-02-13T19:16:28",
            "upload_time_iso_8601": "2024-02-13T19:16:28.492306Z",
            "url": "https://files.pythonhosted.org/packages/5d/37/70ef969b2c6c3c1076878959cb695b583eb964e430bb98bf960ff4a94574/fastavro-1.9.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0334d6a903f5e562ad19f7601549a96f5f176e06b02df94f7b53bade2986269",
                "md5": "708dfb3b4f49ad6656975adaaa1c53ea",
                "sha256": "23d7e5b29c9bf6f26e8be754b2c8b919838e506f78ef724de7d22881696712fc"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "708dfb3b4f49ad6656975adaaa1c53ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3293277,
            "upload_time": "2024-02-13T19:16:34",
            "upload_time_iso_8601": "2024-02-13T19:16:34.076901Z",
            "url": "https://files.pythonhosted.org/packages/e0/33/4d6a903f5e562ad19f7601549a96f5f176e06b02df94f7b53bade2986269/fastavro-1.9.4-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb520a50b4806854932117957b8b3d2ed0996293974da41ecf15a690196ac6ec",
                "md5": "35b3272f618ab37164321d330984b68e",
                "sha256": "2e6ab3ee53944326460edf1125b2ad5be2fadd80f7211b13c45fa0c503b4cf8d"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "35b3272f618ab37164321d330984b68e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3349627,
            "upload_time": "2024-02-13T19:16:39",
            "upload_time_iso_8601": "2024-02-13T19:16:39.621534Z",
            "url": "https://files.pythonhosted.org/packages/cb/52/0a50b4806854932117957b8b3d2ed0996293974da41ecf15a690196ac6ec/fastavro-1.9.4-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c5b0809b30aef873572f67e76b69efdcd2a65991d3e8d9f820d920d94c5941b",
                "md5": "a21fedbb653cb7d9e5bea7f69809265d",
                "sha256": "64d335ec2004204c501f8697c385d0a8f6b521ac82d5b30696f789ff5bc85f3c"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a21fedbb653cb7d9e5bea7f69809265d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 549967,
            "upload_time": "2024-02-13T19:16:42",
            "upload_time_iso_8601": "2024-02-13T19:16:42.283113Z",
            "url": "https://files.pythonhosted.org/packages/4c/5b/0809b30aef873572f67e76b69efdcd2a65991d3e8d9f820d920d94c5941b/fastavro-1.9.4-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91263a2556e69b645f0901254de811061e29c3abc4e6a9cdbdfaf987cdcd1a4a",
                "md5": "3dda9cfde8e8a2eaf34c225509fc2599",
                "sha256": "7e05f44c493e89e73833bd3ff3790538726906d2856f59adc8103539f4a1b232"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3dda9cfde8e8a2eaf34c225509fc2599",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 590952,
            "upload_time": "2024-02-13T19:16:44",
            "upload_time_iso_8601": "2024-02-13T19:16:44.858363Z",
            "url": "https://files.pythonhosted.org/packages/91/26/3a2556e69b645f0901254de811061e29c3abc4e6a9cdbdfaf987cdcd1a4a/fastavro-1.9.4-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b3f3a62f14869f0ada5da7b9c806ee030eee6e127a7e59790703f0f56eba680",
                "md5": "6539d4b0484d07e1aa4c0d70754e2b38",
                "sha256": "253c63993250bff4ee7b11fb46cf3a4622180a783bedc82a24c6fdcd1b10ca2a"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6539d4b0484d07e1aa4c0d70754e2b38",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3015676,
            "upload_time": "2024-02-13T19:16:49",
            "upload_time_iso_8601": "2024-02-13T19:16:49.447031Z",
            "url": "https://files.pythonhosted.org/packages/8b/3f/3a62f14869f0ada5da7b9c806ee030eee6e127a7e59790703f0f56eba680/fastavro-1.9.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e443b9de81c64a13f70d4edd25116ff7b44cb420a3c16cbbd8d8e41231409b9d",
                "md5": "fd4b481e09baa23127bdcfced0a0e7c0",
                "sha256": "24d6942eb1db14640c2581e0ecd1bbe0afc8a83731fcd3064ae7f429d7880cb7"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fd4b481e09baa23127bdcfced0a0e7c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3063294,
            "upload_time": "2024-02-13T19:16:54",
            "upload_time_iso_8601": "2024-02-13T19:16:54.724531Z",
            "url": "https://files.pythonhosted.org/packages/e4/43/b9de81c64a13f70d4edd25116ff7b44cb420a3c16cbbd8d8e41231409b9d/fastavro-1.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7860aa5cf89460dca597ff1b228f7f9f25f1febf590f8b5c101aea5ddc9f8f87",
                "md5": "2253dc335c6054a6c63803d538331f81",
                "sha256": "d47bb66be6091cd48cfe026adcad11c8b11d7d815a2949a1e4ccf03df981ca65"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2253dc335c6054a6c63803d538331f81",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3005604,
            "upload_time": "2024-02-13T19:16:59",
            "upload_time_iso_8601": "2024-02-13T19:16:59.383280Z",
            "url": "https://files.pythonhosted.org/packages/78/60/aa5cf89460dca597ff1b228f7f9f25f1febf590f8b5c101aea5ddc9f8f87/fastavro-1.9.4-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a0248caa03ff871b02dd141bb70aba017195d51c55b84ed9aa8747341bb2f08",
                "md5": "e07a1a8378c1ba3d3d968196f4a16c17",
                "sha256": "c293897f12f910e58a1024f9c77f565aa8e23b36aafda6ad8e7041accc57a57f"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e07a1a8378c1ba3d3d968196f4a16c17",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3052541,
            "upload_time": "2024-02-13T19:17:05",
            "upload_time_iso_8601": "2024-02-13T19:17:05.231887Z",
            "url": "https://files.pythonhosted.org/packages/4a/02/48caa03ff871b02dd141bb70aba017195d51c55b84ed9aa8747341bb2f08/fastavro-1.9.4-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4fd2f5035b7e1b3f03fbe9492cf26b159928b0e31b7104ec528cd9393b3c921",
                "md5": "f6642b4ace3b819c6caada4db4b74f68",
                "sha256": "f05d2afcb10a92e2a9e580a3891f090589b3e567fdc5641f8a46a0b084f120c3"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f6642b4ace3b819c6caada4db4b74f68",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 546316,
            "upload_time": "2024-02-13T19:17:08",
            "upload_time_iso_8601": "2024-02-13T19:17:08.467550Z",
            "url": "https://files.pythonhosted.org/packages/c4/fd/2f5035b7e1b3f03fbe9492cf26b159928b0e31b7104ec528cd9393b3c921/fastavro-1.9.4-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9092c6b038c0a00230906810e665ed787cb5ec975ef339630cb03fbd8d667a6a",
                "md5": "7e5c4afc64327e83e1869cc082f9a820",
                "sha256": "56b8363e360a1256c94562393dc7f8611f3baf2b3159f64fb2b9c6b87b14e876"
            },
            "downloads": -1,
            "filename": "fastavro-1.9.4.tar.gz",
            "has_sig": false,
            "md5_digest": "7e5c4afc64327e83e1869cc082f9a820",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 985933,
            "upload_time": "2024-02-13T19:14:34",
            "upload_time_iso_8601": "2024-02-13T19:14:34.193735Z",
            "url": "https://files.pythonhosted.org/packages/90/92/c6b038c0a00230906810e665ed787cb5ec975ef339630cb03fbd8d667a6a/fastavro-1.9.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-13 19:14:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "fastavro",
    "github_project": "fastavro",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "fastavro"
}
        
Elapsed time: 0.22823s