fastavro


Namefastavro JSON
Version 1.12.1 PyPI version JSON
download
home_pagehttps://github.com/fastavro/fastavro
SummaryFast read/write of AVRO files
upload_time2025-10-10 15:40:55
maintainerNone
docs_urlNone
authorMiki Tebeka
requires_python>=3.9
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.9
* Python 3.10
* Python 3.11
* Python 3.12
* Python 3.13
* Python 3.14
* 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 to 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": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": "Miki Tebeka",
    "author_email": "miki.tebeka@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/65/8b/fa2d3287fd2267be6261d0177c6809a7fa12c5600ddb33490c8dc29e77b2/fastavro-1.12.1.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.9\n* Python 3.10\n* Python 3.11\n* Python 3.12\n* Python 3.13\n* Python 3.14\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 to 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.12.1",
    "project_urls": {
        "Homepage": "https://github.com/fastavro/fastavro"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "40a0077fd7cbfc143152cb96780cb592ed6cb6696667d8bc1b977745eb2255a8",
                "md5": "1f9a6de924758bce16a86cd720fd45ca",
                "sha256": "00650ca533907361edda22e6ffe8cf87ab2091c5d8aee5c8000b0f2dcdda7ed3"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "1f9a6de924758bce16a86cd720fd45ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1000335,
            "upload_time": "2025-10-10T15:40:59",
            "upload_time_iso_8601": "2025-10-10T15:40:59.834365Z",
            "url": "https://files.pythonhosted.org/packages/40/a0/077fd7cbfc143152cb96780cb592ed6cb6696667d8bc1b977745eb2255a8/fastavro-1.12.1-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a0aea115e027f3a75df237609701b03ecba0b7f0aa3d77fe0161df533fde1eb7",
                "md5": "60bcdeb73dc0a78aa0d0f47ae4037109",
                "sha256": "ac76d6d95f909c72ee70d314b460b7e711d928845771531d823eb96a10952d26"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "60bcdeb73dc0a78aa0d0f47ae4037109",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3221067,
            "upload_time": "2025-10-10T15:41:04",
            "upload_time_iso_8601": "2025-10-10T15:41:04.399829Z",
            "url": "https://files.pythonhosted.org/packages/a0/ae/a115e027f3a75df237609701b03ecba0b7f0aa3d77fe0161df533fde1eb7/fastavro-1.12.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "944ec4991c3eec0175af9a8a0c161b88089cb7bf7fe353b3e3be1bc4cf9036b2",
                "md5": "068d043d4c1c0f0c495cf2c308eb087a",
                "sha256": "1f55eef18c41d4476bd32a82ed5dd86aabc3f614e1b66bdb09ffa291612e1670"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "068d043d4c1c0f0c495cf2c308eb087a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3228979,
            "upload_time": "2025-10-10T15:41:06",
            "upload_time_iso_8601": "2025-10-10T15:41:06.738457Z",
            "url": "https://files.pythonhosted.org/packages/94/4e/c4991c3eec0175af9a8a0c161b88089cb7bf7fe353b3e3be1bc4cf9036b2/fastavro-1.12.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "210cf2afb8eaea38799ccb1ed07d68bf2659f2e313f1902bbd36774cf6a1bef9",
                "md5": "d31c7a1d48d4a5555493926ab33c3245",
                "sha256": "81563e1f93570e6565487cdb01ba241a36a00e58cff9c5a0614af819d1155d8f"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d31c7a1d48d4a5555493926ab33c3245",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3160740,
            "upload_time": "2025-10-10T15:41:08",
            "upload_time_iso_8601": "2025-10-10T15:41:08.731708Z",
            "url": "https://files.pythonhosted.org/packages/21/0c/f2afb8eaea38799ccb1ed07d68bf2659f2e313f1902bbd36774cf6a1bef9/fastavro-1.12.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d1af4d367924b40b86857862c1fa65f2afba94ddadf298b611e610a676a29e5",
                "md5": "3f0aab941eb2b8d067ba8cb27b8e152a",
                "sha256": "bec207360f76f0b3de540758a297193c5390e8e081c43c3317f610b1414d8c8f"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3f0aab941eb2b8d067ba8cb27b8e152a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3235787,
            "upload_time": "2025-10-10T15:41:10",
            "upload_time_iso_8601": "2025-10-10T15:41:10.869936Z",
            "url": "https://files.pythonhosted.org/packages/0d/1a/f4d367924b40b86857862c1fa65f2afba94ddadf298b611e610a676a29e5/fastavro-1.12.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "90ec8db9331896e3dfe4f71b2b3c23f2e97fbbfd90129777467ca9f8bafccb74",
                "md5": "ce058a86df3ef0111e84df58de1a55e8",
                "sha256": "c0390bfe4a9f8056a75ac6785fbbff8f5e317f5356481d2e29ec980877d2314b"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ce058a86df3ef0111e84df58de1a55e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 449350,
            "upload_time": "2025-10-10T15:41:12",
            "upload_time_iso_8601": "2025-10-10T15:41:12.104815Z",
            "url": "https://files.pythonhosted.org/packages/90/ec/8db9331896e3dfe4f71b2b3c23f2e97fbbfd90129777467ca9f8bafccb74/fastavro-1.12.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a0e931c64b47cefc0951099e7c0c8c8ea1c931edd1350f34d55c27cbfbb08df1",
                "md5": "cec5007c1f68a77ed7c14e141797f477",
                "sha256": "6b632b713bc5d03928a87d811fa4a11d5f25cd43e79c161e291c7d3f7aa740fd"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "cec5007c1f68a77ed7c14e141797f477",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1016585,
            "upload_time": "2025-10-10T15:41:13",
            "upload_time_iso_8601": "2025-10-10T15:41:13.717870Z",
            "url": "https://files.pythonhosted.org/packages/a0/e9/31c64b47cefc0951099e7c0c8c8ea1c931edd1350f34d55c27cbfbb08df1/fastavro-1.12.1-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1076111560775b548f5d8d828c1b5285ff90e2d2745643fb80ecbf115344eea4",
                "md5": "bb86f15f70b26d03f9bffdb55e492a10",
                "sha256": "eaa7ab3769beadcebb60f0539054c7755f63bd9cf7666e2c15e615ab605f89a8"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bb86f15f70b26d03f9bffdb55e492a10",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3404629,
            "upload_time": "2025-10-10T15:41:15",
            "upload_time_iso_8601": "2025-10-10T15:41:15.642901Z",
            "url": "https://files.pythonhosted.org/packages/10/76/111560775b548f5d8d828c1b5285ff90e2d2745643fb80ecbf115344eea4/fastavro-1.12.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0076bb93cb963932146c2b6c5c765903a0a547ad9f0f8b769a4a9aad8c06369",
                "md5": "a5e05ede99355b0845c413601f457b9b",
                "sha256": "123fb221df3164abd93f2d042c82f538a1d5a43ce41375f12c91ce1355a9141e"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a5e05ede99355b0845c413601f457b9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3428594,
            "upload_time": "2025-10-10T15:41:17",
            "upload_time_iso_8601": "2025-10-10T15:41:17.779230Z",
            "url": "https://files.pythonhosted.org/packages/b0/07/6bb93cb963932146c2b6c5c765903a0a547ad9f0f8b769a4a9aad8c06369/fastavro-1.12.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d1678115ec36b584197ea737ec79e3499e1f1b640b288d6c6ee295edd13b80f6",
                "md5": "d091011bfbece9aa6b8a8f516311bd57",
                "sha256": "632a4e3ff223f834ddb746baae0cc7cee1068eb12c32e4d982c2fee8a5b483d0"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d091011bfbece9aa6b8a8f516311bd57",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3344145,
            "upload_time": "2025-10-10T15:41:19",
            "upload_time_iso_8601": "2025-10-10T15:41:19.890621Z",
            "url": "https://files.pythonhosted.org/packages/d1/67/8115ec36b584197ea737ec79e3499e1f1b640b288d6c6ee295edd13b80f6/fastavro-1.12.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9e9ea7cebb3af967e62539539897c10138fa0821668ec92525d1be88a9cd3ee6",
                "md5": "3eb43ba78ac9b2aafe4d11c3d80fef8c",
                "sha256": "83e6caf4e7a8717d932a3b1ff31595ad169289bbe1128a216be070d3a8391671"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3eb43ba78ac9b2aafe4d11c3d80fef8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3431942,
            "upload_time": "2025-10-10T15:41:22",
            "upload_time_iso_8601": "2025-10-10T15:41:22.076149Z",
            "url": "https://files.pythonhosted.org/packages/9e/9e/a7cebb3af967e62539539897c10138fa0821668ec92525d1be88a9cd3ee6/fastavro-1.12.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0d17774ddfb8781c5224294c01a593ebce2ad3289b948061c9701bd1903264d",
                "md5": "f1b48ba527cbf76b77d7392283043a45",
                "sha256": "b91a0fe5a173679a6c02d53ca22dcaad0a2c726b74507e0c1c2e71a7c3f79ef9"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f1b48ba527cbf76b77d7392283043a45",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 450542,
            "upload_time": "2025-10-10T15:41:23",
            "upload_time_iso_8601": "2025-10-10T15:41:23.333219Z",
            "url": "https://files.pythonhosted.org/packages/c0/d1/7774ddfb8781c5224294c01a593ebce2ad3289b948061c9701bd1903264d/fastavro-1.12.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7cf010bd1a3d08667fa0739e2b451fe90e06df575ec8b8ba5d3135c70555c9bd",
                "md5": "f993ff807abc5adfbff5d146050de848",
                "sha256": "509818cb24b98a804fc80be9c5fed90f660310ae3d59382fc811bfa187122167"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp312-cp312-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "f993ff807abc5adfbff5d146050de848",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1009057,
            "upload_time": "2025-10-10T15:41:24",
            "upload_time_iso_8601": "2025-10-10T15:41:24.556042Z",
            "url": "https://files.pythonhosted.org/packages/7c/f0/10bd1a3d08667fa0739e2b451fe90e06df575ec8b8ba5d3135c70555c9bd/fastavro-1.12.1-cp312-cp312-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "78ad0d985bc99e1fa9e74c636658000ba38a5cd7f5ab2708e9c62eaf736ecf1a",
                "md5": "84f4718fb6b21df3c9ef7cfb9faec532",
                "sha256": "089e155c0c76e0d418d7e79144ce000524dd345eab3bc1e9c5ae69d500f71b14"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "84f4718fb6b21df3c9ef7cfb9faec532",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3391866,
            "upload_time": "2025-10-10T15:41:26",
            "upload_time_iso_8601": "2025-10-10T15:41:26.882552Z",
            "url": "https://files.pythonhosted.org/packages/78/ad/0d985bc99e1fa9e74c636658000ba38a5cd7f5ab2708e9c62eaf736ecf1a/fastavro-1.12.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d9eb4951dc84ebc34aac69afcbfbb22ea4a91080422ec2bfd2c06076ff1d419",
                "md5": "beaea42d2b10145b7b0d71c5b9f52938",
                "sha256": "44cbff7518901c91a82aab476fcab13d102e4999499df219d481b9e15f61af34"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "beaea42d2b10145b7b0d71c5b9f52938",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3458005,
            "upload_time": "2025-10-10T15:41:29",
            "upload_time_iso_8601": "2025-10-10T15:41:29.017817Z",
            "url": "https://files.pythonhosted.org/packages/0d/9e/b4951dc84ebc34aac69afcbfbb22ea4a91080422ec2bfd2c06076ff1d419/fastavro-1.12.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aff85a8df450a9f55ca8441f22ea0351d8c77809fc121498b6970daaaf667a21",
                "md5": "492afebce3201fedd06dd32b9c6d0ee4",
                "sha256": "a275e48df0b1701bb764b18a8a21900b24cf882263cb03d35ecdba636bbc830b"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "492afebce3201fedd06dd32b9c6d0ee4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3295258,
            "upload_time": "2025-10-10T15:41:31",
            "upload_time_iso_8601": "2025-10-10T15:41:31.564281Z",
            "url": "https://files.pythonhosted.org/packages/af/f8/5a8df450a9f55ca8441f22ea0351d8c77809fc121498b6970daaaf667a21/fastavro-1.12.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "99b240f25299111d737e58b85696e91138a66c25b7334f5357e7ac2b0e8966f8",
                "md5": "ee97b2272724204aa9becc3ea0e6ca86",
                "sha256": "2de72d786eb38be6b16d556b27232b1bf1b2797ea09599507938cdb7a9fe3e7c"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ee97b2272724204aa9becc3ea0e6ca86",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3430328,
            "upload_time": "2025-10-10T15:41:33",
            "upload_time_iso_8601": "2025-10-10T15:41:33.689931Z",
            "url": "https://files.pythonhosted.org/packages/99/b2/40f25299111d737e58b85696e91138a66c25b7334f5357e7ac2b0e8966f8/fastavro-1.12.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e00785157a7c57c5f8b95507d7829b5946561e5ee656ff80e9dd9a757f53ddaf",
                "md5": "dc8979e424c2f2549ae876ac60a755e6",
                "sha256": "9090f0dee63fe022ee9cc5147483366cc4171c821644c22da020d6b48f576b4f"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dc8979e424c2f2549ae876ac60a755e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 444140,
            "upload_time": "2025-10-10T15:41:34",
            "upload_time_iso_8601": "2025-10-10T15:41:34.902471Z",
            "url": "https://files.pythonhosted.org/packages/e0/07/85157a7c57c5f8b95507d7829b5946561e5ee656ff80e9dd9a757f53ddaf/fastavro-1.12.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb5726d5efef9182392d5ac9f253953c856ccb66e4c549fd3176a1e94efb05c9",
                "md5": "56a019a993a01045d26bddb23cf130be",
                "sha256": "78df838351e4dff9edd10a1c41d1324131ffecbadefb9c297d612ef5363c049a"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp313-cp313-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "56a019a993a01045d26bddb23cf130be",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1000599,
            "upload_time": "2025-10-10T15:41:36",
            "upload_time_iso_8601": "2025-10-10T15:41:36.554314Z",
            "url": "https://files.pythonhosted.org/packages/bb/57/26d5efef9182392d5ac9f253953c856ccb66e4c549fd3176a1e94efb05c9/fastavro-1.12.1-cp313-cp313-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "33cb8ab55b21d018178eb126007a56bde14fd01c0afc11d20b5f2624fe01e698",
                "md5": "bba7fd823ac4fb5d50a0e823a22a3851",
                "sha256": "780476c23175d2ae457c52f45b9ffa9d504593499a36cd3c1929662bf5b7b14b"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bba7fd823ac4fb5d50a0e823a22a3851",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3335933,
            "upload_time": "2025-10-10T15:41:39",
            "upload_time_iso_8601": "2025-10-10T15:41:39.070660Z",
            "url": "https://files.pythonhosted.org/packages/33/cb/8ab55b21d018178eb126007a56bde14fd01c0afc11d20b5f2624fe01e698/fastavro-1.12.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fe039c94ec9bf873eb1ffb0aa694f4e71940154e6e9728ddfdc46046d7e8ced4",
                "md5": "15fd74a9db320120ad8669ee618ec345",
                "sha256": "0714b285160fcd515eb0455540f40dd6dac93bdeacdb03f24e8eac3d8aa51f8d"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "15fd74a9db320120ad8669ee618ec345",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3402066,
            "upload_time": "2025-10-10T15:41:41",
            "upload_time_iso_8601": "2025-10-10T15:41:41.608287Z",
            "url": "https://files.pythonhosted.org/packages/fe/03/9c94ec9bf873eb1ffb0aa694f4e71940154e6e9728ddfdc46046d7e8ced4/fastavro-1.12.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75c8cb472347c5a584ccb8777a649ebb28278fccea39d005fc7df19996f41df8",
                "md5": "0d61f9a047669cc61809e5d71bf9620d",
                "sha256": "a8bc2dcec5843d499f2489bfe0747999108f78c5b29295d877379f1972a3d41a"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0d61f9a047669cc61809e5d71bf9620d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3240038,
            "upload_time": "2025-10-10T15:41:43",
            "upload_time_iso_8601": "2025-10-10T15:41:43.743641Z",
            "url": "https://files.pythonhosted.org/packages/75/c8/cb472347c5a584ccb8777a649ebb28278fccea39d005fc7df19996f41df8/fastavro-1.12.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e177569ce9474c40304b3a09e109494e020462b83e405545b78069ddba5f614e",
                "md5": "76f788d67b8055ac50d4005928b671a3",
                "sha256": "3b1921ac35f3d89090a5816b626cf46e67dbecf3f054131f84d56b4e70496f45"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "76f788d67b8055ac50d4005928b671a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3369398,
            "upload_time": "2025-10-10T15:41:45",
            "upload_time_iso_8601": "2025-10-10T15:41:45.719607Z",
            "url": "https://files.pythonhosted.org/packages/e1/77/569ce9474c40304b3a09e109494e020462b83e405545b78069ddba5f614e/fastavro-1.12.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6cd278435fe737df94bd8db2234b2100f5453737cffd29adee2504a2b013de84",
                "md5": "db6bf386ab4cfd91fbf6972c24c9d332",
                "sha256": "c3d67c47f177e486640404a56f2f50b165fe892cc343ac3a34673b80cc7f1dd6"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp313-cp313t-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "db6bf386ab4cfd91fbf6972c24c9d332",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1086611,
            "upload_time": "2025-10-10T15:41:48",
            "upload_time_iso_8601": "2025-10-10T15:41:48.818834Z",
            "url": "https://files.pythonhosted.org/packages/6c/d2/78435fe737df94bd8db2234b2100f5453737cffd29adee2504a2b013de84/fastavro-1.12.1-cp313-cp313t-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b6be428f99b10157230ddac77ec8cc167005b29e2bd5cbe228345192bb645f30",
                "md5": "c97885eb2e81659c521db87f2edd5445",
                "sha256": "5217f773492bac43dae15ff2931432bce2d7a80be7039685a78d3fab7df910bd"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c97885eb2e81659c521db87f2edd5445",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3541001,
            "upload_time": "2025-10-10T15:41:50",
            "upload_time_iso_8601": "2025-10-10T15:41:50.871176Z",
            "url": "https://files.pythonhosted.org/packages/b6/be/428f99b10157230ddac77ec8cc167005b29e2bd5cbe228345192bb645f30/fastavro-1.12.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1608a2eea4f20b85897740efe44887e1ac08f30dfa4bfc3de8962bdcbb21a5a1",
                "md5": "08d04a2ae28a2ee7886071fc7113e1d6",
                "sha256": "469fecb25cba07f2e1bfa4c8d008477cd6b5b34a59d48715e1b1a73f6160097d"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "08d04a2ae28a2ee7886071fc7113e1d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3432217,
            "upload_time": "2025-10-10T15:41:53",
            "upload_time_iso_8601": "2025-10-10T15:41:53.149549Z",
            "url": "https://files.pythonhosted.org/packages/16/08/a2eea4f20b85897740efe44887e1ac08f30dfa4bfc3de8962bdcbb21a5a1/fastavro-1.12.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87bbb4c620b9eb6e9838c7f7e4b7be0762834443adf9daeb252a214e9ad3178c",
                "md5": "60e612a675f742e24094c00b724919e7",
                "sha256": "d71c8aa841ef65cfab709a22bb887955f42934bced3ddb571e98fdbdade4c609"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "60e612a675f742e24094c00b724919e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3366742,
            "upload_time": "2025-10-10T15:41:55",
            "upload_time_iso_8601": "2025-10-10T15:41:55.237371Z",
            "url": "https://files.pythonhosted.org/packages/87/bb/b4c620b9eb6e9838c7f7e4b7be0762834443adf9daeb252a214e9ad3178c/fastavro-1.12.1-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3dd1e69534ccdd5368350646fea7d93be39e5f77c614cca825c990bd9ca58f67",
                "md5": "0569e89d37b5f3eeb19ef118e31ecdf4",
                "sha256": "b81fc04e85dfccf7c028e0580c606e33aa8472370b767ef058aae2c674a90746"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0569e89d37b5f3eeb19ef118e31ecdf4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3383743,
            "upload_time": "2025-10-10T15:41:57",
            "upload_time_iso_8601": "2025-10-10T15:41:57.680021Z",
            "url": "https://files.pythonhosted.org/packages/3d/d1/e69534ccdd5368350646fea7d93be39e5f77c614cca825c990bd9ca58f67/fastavro-1.12.1-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a1f9589e35e9ea68035385db7bdbf500d36b8891db474063fb1ccc8215ee37c",
                "md5": "4eff2f118da91c1d2f2a66f05a318484",
                "sha256": "5aa777b8ee595b50aa084104cd70670bf25a7bbb9fd8bb5d07524b0785ee1699"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4eff2f118da91c1d2f2a66f05a318484",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 444220,
            "upload_time": "2025-10-10T15:41:47",
            "upload_time_iso_8601": "2025-10-10T15:41:47.390426Z",
            "url": "https://files.pythonhosted.org/packages/4a/1f/9589e35e9ea68035385db7bdbf500d36b8891db474063fb1ccc8215ee37c/fastavro-1.12.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5854b7b4a0c3fb5fcba38128542da1b26c4e6d69933c923f493548bdfd63ab6a",
                "md5": "57bb66ce33a6d5e635e72f587d32a0f5",
                "sha256": "9445da127751ba65975d8e4bdabf36bfcfdad70fc35b2d988e3950cce0ec0e7c"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp314-cp314-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "57bb66ce33a6d5e635e72f587d32a0f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 1001377,
            "upload_time": "2025-10-10T15:41:59",
            "upload_time_iso_8601": "2025-10-10T15:41:59.241741Z",
            "url": "https://files.pythonhosted.org/packages/58/54/b7b4a0c3fb5fcba38128542da1b26c4e6d69933c923f493548bdfd63ab6a/fastavro-1.12.1-cp314-cp314-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e4f0e589089c7df0d8f57d7e5293fdc34efec9a3b758a0d4d0c99a7937e2492",
                "md5": "66854a2244293abdb60f3c383ae1a4ac",
                "sha256": "ed924233272719b5d5a6a0b4d80ef3345fc7e84fc7a382b6232192a9112d38a6"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "66854a2244293abdb60f3c383ae1a4ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 3320401,
            "upload_time": "2025-10-10T15:42:01",
            "upload_time_iso_8601": "2025-10-10T15:42:01.682976Z",
            "url": "https://files.pythonhosted.org/packages/1e/4f/0e589089c7df0d8f57d7e5293fdc34efec9a3b758a0d4d0c99a7937e2492/fastavro-1.12.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f919260110d56194ae29d7e423a336fccea8bcd103196d00f0b364b732bdb84e",
                "md5": "cf1e6d664901d5e305d66057d8597172",
                "sha256": "3616e2f0e1c9265e92954fa099db79c6e7817356d3ff34f4bcc92699ae99697c"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cf1e6d664901d5e305d66057d8597172",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 3350894,
            "upload_time": "2025-10-10T15:42:04",
            "upload_time_iso_8601": "2025-10-10T15:42:04.073227Z",
            "url": "https://files.pythonhosted.org/packages/f9/19/260110d56194ae29d7e423a336fccea8bcd103196d00f0b364b732bdb84e/fastavro-1.12.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d09658b0411e8be9694d5972bee3167d6c1fd1fdfdf7ce253c1a19a327208f4f",
                "md5": "76d83060bf093566eb9ed5925d06a6a1",
                "sha256": "cb0337b42fd3c047fcf0e9b7597bd6ad25868de719f29da81eabb6343f08d399"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp314-cp314-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "76d83060bf093566eb9ed5925d06a6a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 3229644,
            "upload_time": "2025-10-10T15:42:06",
            "upload_time_iso_8601": "2025-10-10T15:42:06.221189Z",
            "url": "https://files.pythonhosted.org/packages/d0/96/58b0411e8be9694d5972bee3167d6c1fd1fdfdf7ce253c1a19a327208f4f/fastavro-1.12.1-cp314-cp314-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5bdb38660660eac82c30471d9101f45b3acfdcbadfe42d8f7cdb129459a45050",
                "md5": "d89f5ac6415b3d96ac2c208d0ae42a9c",
                "sha256": "64961ab15b74b7c168717bbece5660e0f3d457837c3cc9d9145181d011199fa7"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp314-cp314-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d89f5ac6415b3d96ac2c208d0ae42a9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 3329704,
            "upload_time": "2025-10-10T15:42:08",
            "upload_time_iso_8601": "2025-10-10T15:42:08.384901Z",
            "url": "https://files.pythonhosted.org/packages/5b/db/38660660eac82c30471d9101f45b3acfdcbadfe42d8f7cdb129459a45050/fastavro-1.12.1-cp314-cp314-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc8d2e15d0938ded1891b33eff252e8500605508b799c2e57188a933f0bd744c",
                "md5": "1b31e7c52fec4fb9d649e30269b42b65",
                "sha256": "120aaf82ac19d60a1016afe410935fe94728752d9c2d684e267e5b7f0e70f6d9"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1b31e7c52fec4fb9d649e30269b42b65",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 3541999,
            "upload_time": "2025-10-10T15:42:11",
            "upload_time_iso_8601": "2025-10-10T15:42:11.794898Z",
            "url": "https://files.pythonhosted.org/packages/dc/8d/2e15d0938ded1891b33eff252e8500605508b799c2e57188a933f0bd744c/fastavro-1.12.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a71c6dfd082a205be4510543221b734b1191299e6a1810c452b6bc76dfa6968e",
                "md5": "44147880571781cf5db2f8f10f273ff4",
                "sha256": "b6a3462934b20a74f9ece1daa49c2e4e749bd9a35fa2657b53bf62898fba80f5"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44147880571781cf5db2f8f10f273ff4",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 3433972,
            "upload_time": "2025-10-10T15:42:14",
            "upload_time_iso_8601": "2025-10-10T15:42:14.485872Z",
            "url": "https://files.pythonhosted.org/packages/a7/1c/6dfd082a205be4510543221b734b1191299e6a1810c452b6bc76dfa6968e/fastavro-1.12.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "24909de694625a1a4b727b1ad0958d220cab25a9b6cf7f16a5c7faa9ea7b2261",
                "md5": "74386dd318a3e925c9330fcd2510f971",
                "sha256": "1f81011d54dd47b12437b51dd93a70a9aa17b61307abf26542fc3c13efbc6c51"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "74386dd318a3e925c9330fcd2510f971",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 3368752,
            "upload_time": "2025-10-10T15:42:16",
            "upload_time_iso_8601": "2025-10-10T15:42:16.618004Z",
            "url": "https://files.pythonhosted.org/packages/24/90/9de694625a1a4b727b1ad0958d220cab25a9b6cf7f16a5c7faa9ea7b2261/fastavro-1.12.1-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa93b44f67589e4d439913dab6720f7e3507b0fa8b8e56d06f6fc875ced26afb",
                "md5": "a5e14d12de2db1b7f5dbab3c440b44cd",
                "sha256": "43ded16b3f4a9f1a42f5970c2aa618acb23ea59c4fcaa06680bdf470b255e5a8"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a5e14d12de2db1b7f5dbab3c440b44cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 3386636,
            "upload_time": "2025-10-10T15:42:18",
            "upload_time_iso_8601": "2025-10-10T15:42:18.974411Z",
            "url": "https://files.pythonhosted.org/packages/fa/93/b44f67589e4d439913dab6720f7e3507b0fa8b8e56d06f6fc875ced26afb/fastavro-1.12.1-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9da91672910f458ecb30b596c9e59e41b7c00309b602a0494341451e92e62747",
                "md5": "19a140cf387d55a596d9b6d4fff02eee",
                "sha256": "792356d320f6e757e89f7ac9c22f481e546c886454a6709247f43c0dd7058004"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp314-cp314-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "19a140cf387d55a596d9b6d4fff02eee",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 452911,
            "upload_time": "2025-10-10T15:42:09",
            "upload_time_iso_8601": "2025-10-10T15:42:09.795294Z",
            "url": "https://files.pythonhosted.org/packages/9d/a9/1672910f458ecb30b596c9e59e41b7c00309b602a0494341451e92e62747/fastavro-1.12.1-cp314-cp314-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8fb867f5682cd59cb59ec6eecb5479b132caaf69709d1e1ceda4f92d8c69d7f1",
                "md5": "f8edcb994375603994408124b1e1b535",
                "sha256": "02281432dcb11c78b3280da996eff61ee0eff39c5de06c6e0fbf19275093e6d4"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "f8edcb994375603994408124b1e1b535",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1002311,
            "upload_time": "2025-10-10T15:42:20",
            "upload_time_iso_8601": "2025-10-10T15:42:20.415349Z",
            "url": "https://files.pythonhosted.org/packages/8f/b8/67f5682cd59cb59ec6eecb5479b132caaf69709d1e1ceda4f92d8c69d7f1/fastavro-1.12.1-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93382f15a7ad24e4b6e0239016c068f142358732bf8ead0315ee926b88634bec",
                "md5": "7de8ee15099c0990f4d78f6ef5b8b1fb",
                "sha256": "4128978b930aaf930332db4b3acc290783183f3be06a241ae4a482f3ed8ce892"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7de8ee15099c0990f4d78f6ef5b8b1fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3195871,
            "upload_time": "2025-10-10T15:42:22",
            "upload_time_iso_8601": "2025-10-10T15:42:22.675539Z",
            "url": "https://files.pythonhosted.org/packages/93/38/2f15a7ad24e4b6e0239016c068f142358732bf8ead0315ee926b88634bec/fastavro-1.12.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c1e56fc0250b3006b1b42c1ab9f0511ccd44e1aeb15a63a77fc780ee97f58797",
                "md5": "fcf9ca6e1a6fdfaf26a5f0547ae7ae13",
                "sha256": "546ffffda6610fca672f0ed41149808e106d8272bb246aa7539fa8bb6f117f17"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fcf9ca6e1a6fdfaf26a5f0547ae7ae13",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3204127,
            "upload_time": "2025-10-10T15:42:24",
            "upload_time_iso_8601": "2025-10-10T15:42:24.855965Z",
            "url": "https://files.pythonhosted.org/packages/c1/e5/6fc0250b3006b1b42c1ab9f0511ccd44e1aeb15a63a77fc780ee97f58797/fastavro-1.12.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c6431f3909eb096eb1066e416f0875abe783b73fabe823ad616f6956b3e80e84",
                "md5": "d42b4931f7f597aa5785ece40c621a97",
                "sha256": "a7d840ccd9aacada3ddc80fbcc4ea079b658107fe62e9d289a0de9d54e95d366"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d42b4931f7f597aa5785ece40c621a97",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3135604,
            "upload_time": "2025-10-10T15:42:28",
            "upload_time_iso_8601": "2025-10-10T15:42:28.899296Z",
            "url": "https://files.pythonhosted.org/packages/c6/43/1f3909eb096eb1066e416f0875abe783b73fabe823ad616f6956b3e80e84/fastavro-1.12.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e661ec083a3a5d7c2b97d0e2c9e137a6e667583afe884af0e49318f7ee7eaa5a",
                "md5": "21728ed5a2963fc4c7acb85f965f6205",
                "sha256": "3100ad643e7fa658469a2a2db229981c1a000ff16b8037c0b58ce3ec4d2107e8"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "21728ed5a2963fc4c7acb85f965f6205",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3210932,
            "upload_time": "2025-10-10T15:42:30",
            "upload_time_iso_8601": "2025-10-10T15:42:30.891274Z",
            "url": "https://files.pythonhosted.org/packages/e6/61/ec083a3a5d7c2b97d0e2c9e137a6e667583afe884af0e49318f7ee7eaa5a/fastavro-1.12.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9ebab814fb09b32c8f3059451c33bb11d55eb23188e6a499f5dde628d13bc076",
                "md5": "56658131ebda345877393f079404bb79",
                "sha256": "a38607444281619eda3a9c1be9f5397634012d1b237142eee1540e810b30ac8b"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "56658131ebda345877393f079404bb79",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 510328,
            "upload_time": "2025-10-10T15:42:32",
            "upload_time_iso_8601": "2025-10-10T15:42:32.415840Z",
            "url": "https://files.pythonhosted.org/packages/9e/ba/b814fb09b32c8f3059451c33bb11d55eb23188e6a499f5dde628d13bc076/fastavro-1.12.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "658bfa2d3287fd2267be6261d0177c6809a7fa12c5600ddb33490c8dc29e77b2",
                "md5": "a51a1bf97d0722506e08aa1dcee0e6d0",
                "sha256": "2f285be49e45bc047ab2f6bed040bb349da85db3f3c87880e4b92595ea093b2b"
            },
            "downloads": -1,
            "filename": "fastavro-1.12.1.tar.gz",
            "has_sig": false,
            "md5_digest": "a51a1bf97d0722506e08aa1dcee0e6d0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 1025661,
            "upload_time": "2025-10-10T15:40:55",
            "upload_time_iso_8601": "2025-10-10T15:40:55.410238Z",
            "url": "https://files.pythonhosted.org/packages/65/8b/fa2d3287fd2267be6261d0177c6809a7fa12c5600ddb33490c8dc29e77b2/fastavro-1.12.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-10 15:40:55",
    "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.45176s