Skip to main content

Fast read/write of AVRO files

Project description

fastavro

Build Status Documentation Status codecov

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
  • 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

Documentation

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

Installing

fastavro is available both on PyPI

pip install fastavro

and on conda-forge 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 and to conda-forge.

We assume you have twine installed and that you've created your own fork of fastavro-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

Changes

See the ChangeLog

Contact

Project Home

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastavro-1.11.1.tar.gz (1.0 MB view details)

Uploaded Source

Built Distributions

fastavro-1.11.1-cp313-cp313t-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

fastavro-1.11.1-cp313-cp313t-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

fastavro-1.11.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

fastavro-1.11.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

fastavro-1.11.1-cp313-cp313t-macosx_10_13_universal2.whl (1.0 MB view details)

Uploaded CPython 3.13tmacOS 10.13+ universal2 (ARM64, x86-64)

fastavro-1.11.1-cp313-cp313-win_amd64.whl (443.1 kB view details)

Uploaded CPython 3.13Windows x86-64

fastavro-1.11.1-cp313-cp313-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fastavro-1.11.1-cp313-cp313-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fastavro-1.11.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fastavro-1.11.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fastavro-1.11.1-cp313-cp313-macosx_10_13_universal2.whl (931.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

fastavro-1.11.1-cp312-cp312-win_amd64.whl (442.8 kB view details)

Uploaded CPython 3.12Windows x86-64

fastavro-1.11.1-cp312-cp312-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fastavro-1.11.1-cp312-cp312-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fastavro-1.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fastavro-1.11.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fastavro-1.11.1-cp312-cp312-macosx_10_13_universal2.whl (939.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

fastavro-1.11.1-cp311-cp311-win_amd64.whl (451.6 kB view details)

Uploaded CPython 3.11Windows x86-64

fastavro-1.11.1-cp311-cp311-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fastavro-1.11.1-cp311-cp311-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fastavro-1.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fastavro-1.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fastavro-1.11.1-cp311-cp311-macosx_10_9_universal2.whl (957.5 kB view details)

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

fastavro-1.11.1-cp310-cp310-win_amd64.whl (449.2 kB view details)

Uploaded CPython 3.10Windows x86-64

fastavro-1.11.1-cp310-cp310-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fastavro-1.11.1-cp310-cp310-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fastavro-1.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fastavro-1.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fastavro-1.11.1-cp310-cp310-macosx_10_9_universal2.whl (944.2 kB view details)

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

fastavro-1.11.1-cp39-cp39-win_amd64.whl (509.1 kB view details)

Uploaded CPython 3.9Windows x86-64

fastavro-1.11.1-cp39-cp39-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fastavro-1.11.1-cp39-cp39-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fastavro-1.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fastavro-1.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fastavro-1.11.1-cp39-cp39-macosx_10_9_universal2.whl (946.3 kB view details)

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

File details

Details for the file fastavro-1.11.1.tar.gz.

File metadata

  • Download URL: fastavro-1.11.1.tar.gz
  • Upload date:
  • Size: 1.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for fastavro-1.11.1.tar.gz
Algorithm Hash digest
SHA256 bf6acde5ee633a29fb8dfd6dfea13b164722bc3adc05a0e055df080549c1c2f8
MD5 a6daa2cd1e7c858d99de6eb197afe93a
BLAKE2b-256 488f32664a3245247b13702d13d2657ea534daf64e58a3f72a3a2d10598d6916

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1bc2824e9969c04ab6263d269a1e0e5d40b9bd16ade6b70c29d6ffbc4f3cc102
MD5 0125438b264b9ede7ddb6c8f5464f925
BLAKE2b-256 fe849c2917a70ed570ddbfd1d32ac23200c1d011e36c332e59950d2f6d204941

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2c0cb8063c7208b53b6867983dc6ae7cc80b91116b51d435d2610a5db2fc52f
MD5 07632c1fda859fab7134740258028576
BLAKE2b-256 f217508c846c644d39bc432b027112068b8e96e7560468304d4c0757539dd73a

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e0babcd81acceb4c60110af9efa25d890dbb68f7de880f806dadeb1e70fe413
MD5 72eb4c5930cd78e5c87e99ec56a64e5c
BLAKE2b-256 be8402bceb7518867df84027232a75225db758b9b45f12017c9743f45b73101e

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8cd3c95baeec37188899824faf44a5ee94dfc4d8667b05b2f867070c7eb174c4
MD5 362b2d848e3af66a38b258a40af4eb40
BLAKE2b-256 567aa3f1a75fbfc16b3eff65dc0efcdb92364967923194312b3f8c8fc2cb95be

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp313-cp313t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e5ed1325c1c414dd954e7a2c5074daefe1eceb672b8c727aa030ba327aa00693
MD5 77b8cb3376a0f06c4425efc686d0b5b8
BLAKE2b-256 d0570d31ed1a49c65ad9f0f0128d9a928972878017781f9d4336f5f60982334c

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fastavro-1.11.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 443.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for fastavro-1.11.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cde7ed91b52ff21f0f9f157329760ba7251508ca3e9618af3ffdac986d9faaa2
MD5 08d88b458cb994e5fa403b1f5055dcfb
BLAKE2b-256 b85138cbe243d5facccab40fc43a4c17db264c261be955ce003803d25f0da2c3

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8224e6d8d9864d4e55dafbe88920d6a1b8c19cc3006acfac6aa4f494a6af3450
MD5 f796d18cae2dc40a72a66c087a67b9f7
BLAKE2b-256 a76f8ed42524e9e8dc0554f0f211dd1c6c7a9dde83b95388ddcf7c137e70796f

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 76af1709031621828ca6ce7f027f7711fa33ac23e8269e7a5733996ff8d318da
MD5 4c19d37c7dccf60a48a7b170aa906671
BLAKE2b-256 094c46626b4ee4eb8eb5aa7835973c6ba8890cf082ef2daface6071e788d2992

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca637b150e1f4c0e8e564fad40a16bd922bcb7ffd1a6e4836e6084f2c4f4e8db
MD5 f0f5f211a395765ed0cf35fc27ded9e2
BLAKE2b-256 b331f02f097d79f090e5c5aca8a743010c4e833a257c0efdeb289c68294f7928

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0253e5b6a3c9b62fae9fc3abd8184c5b64a833322b6af7d666d3db266ad879b5
MD5 ca60cc0375be1f529dd8e1c6b7f4b7c1
BLAKE2b-256 02ee7cf5561ef94781ed6942cee6b394a5e698080f4247f00f158ee396ec244d

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f963b8ddaf179660e814ab420850c1b4ea33e2ad2de8011549d958b21f77f20a
MD5 0b63e10bb4c6da4f2ffee413e27f6201
BLAKE2b-256 ec088e25b9e87a98f8c96b25e64565fa1a1208c0095bb6a84a5c8a4b925688a5

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fastavro-1.11.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 442.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for fastavro-1.11.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7bb9d0d2233f33a52908b6ea9b376fe0baf1144bdfdfb3c6ad326e200a8b56b0
MD5 18736544fce309bc17cc7125828bd945
BLAKE2b-256 ef115c2d0db3bd0e6407546fabae9e267bb0824eacfeba79e7dd81ad88afa27d

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5120ffc9a200699218e01777e695a2f08afb3547ba818184198c757dc39417bd
MD5 703db0f9650f15eeefd78dee15beb768
BLAKE2b-256 8e1cb69ceef6494bd0df14752b5d8648b159ad52566127bfd575e9f5ecc0c092

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 059893df63ef823b0231b485c9d43016c7e32850cae7bf69f4e9d46dd41c28f2
MD5 aad8181a6c9b5d6a8ad2fde0f0bcb9ac
BLAKE2b-256 39773b73a986606494596b6d3032eadf813a05b59d1623f54384a23de4217d5f

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f6ecb4b5f77aa756d973b7dd1c2fb4e4c95b4832a3c98b059aa96c61870c709
MD5 49da3734b51863e4654b1e589e2a1d57
BLAKE2b-256 ccbc9cc8b19eeee9039dd49719f8b4020771e805def262435f823fa8f27ddeea

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b403933081c83fc4d8a012ee64b86e560a024b1280e3711ee74f2abc904886e8
MD5 9e8fc9b36fa1c35ad79703100de8093f
BLAKE2b-256 343f02ed44742b1224fe23c9fc9b9b037fc61769df716c083cf80b59a02b9785

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e8bc238f2637cd5d15238adbe8fb8c58d2e6f1870e0fb28d89508584670bae4b
MD5 76cf13596faac64a849e40c44c6fe149
BLAKE2b-256 99588e789b0a2f532b22e2d090c20d27c88f26a5faadcba4c445c6958ae566cf

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fastavro-1.11.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 451.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for fastavro-1.11.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9134090178bdbf9eefd467717ced3dc151e27a7e7bfc728260ce512697efe5a4
MD5 999c868c8fa39bf4b369552b89639e4e
BLAKE2b-256 48652b74ccfeba9dcc3f7dbe64907307386b4a0af3f71d2846f63254df0f1e1d

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad99d57228f83bf3e2214d183fbf6e2fda97fd649b2bdaf8e9110c36cbb02624
MD5 2c55615ddaa68f8741b769539354744a
BLAKE2b-256 62127800de5fec36d55a818adf3db3b085b1a033c4edd60323cf6ca0754cf8cb

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8758317c85296b848698132efb13bc44a4fbd6017431cc0f26eaeb0d6fa13d35
MD5 4065d2fdf7e38db63d9bb388ddd6ea35
BLAKE2b-256 adea122315154d2a799a2787058435ef0d4d289c0e8e575245419436e9b702ca

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf3bb065d657d5bac8b2cb39945194aa086a9b3354f2da7f89c30e4dc20e08e2
MD5 87c58fcd33e289b1480aa2142e5aafa0
BLAKE2b-256 8670d6df59309d3754d6d4b0c7beca45b9b1a957d6725aed8da3aca247db3475

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7291cf47735b8bd6ff5d9b33120e6e0974f52fd5dff90cd24151b22018e7fd29
MD5 b25cda4e370fd6cc1a82da70984c82ea
BLAKE2b-256 f409a57ad9d8cb9b8affb2e43c29d8fb8cbdc0f1156f8496067a0712c944bacc

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3573340e4564e8962e22f814ac937ffe0d4be5eabbd2250f77738dc47e3c8fe9
MD5 82c87c083f7248667bce2ea6eb24dadd
BLAKE2b-256 8e63f33d6fd50d8711f305f07ad8c7b4a25f2092288f376f484c979dcf277b07

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fastavro-1.11.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 449.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for fastavro-1.11.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7423bfad3199567eeee7ad6816402c7c0ee1658b959e8c10540cfbc60ce96c2a
MD5 2810e2d09c1c88e401d1ac46864ebb4a
BLAKE2b-256 0ee717c35e2dfe8a9e4f3735eabdeec366b0edc4041bb1a84fcd528c8efd12af

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da9e4c231ac4951092c2230ca423d8a3f2966718f072ac1e2c5d2d44c70b2a50
MD5 5cabb0b47163fe1a87f9c3c8945e1b91
BLAKE2b-256 5ea866e599b946ead031a5caba12772e614a7802d95476e8732e2e9481369973

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f878c9ad819467120cb066f1c73496c42eb24ecdd7c992ec996f465ef4cedad
MD5 dedb57a92e4e8c8b75ac0a4b7273a22f
BLAKE2b-256 e5b81ac01433b55460dabeb6d3fbb05ba1c971d57137041e8f53b2e9f46cd033

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 998a53fc552e6bee9acda32af258f02557313c85fb5b48becba5b71ec82f421e
MD5 335c693592247199b29a34bead30e017
BLAKE2b-256 48ff5f1f0b5e3835e788ba8121d6dd6426cd4c6e58ce1bff02cb7810278648b0

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45653b312d4ce297e2bd802ea3ffd17ecbe718e5e8b6e2ae04cd72cb50bb99d5
MD5 dc74ae3d5100716ca2f20d8abda08447
BLAKE2b-256 d0ccc7c76a082fbf5aaaf82ab7da7b9ede6fc99eb8f008c084c67d230b29c446

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 603aa1c1d1be21fb4bcb63e1efb0711a9ddb337de81391c32dac95c6e0dacfcc
MD5 04444239f0ff9477b44a33c24a351b56
BLAKE2b-256 aebe53df3fec7fdabc1848896a76afb0f01ab96b58abb29611aa68a994290167

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fastavro-1.11.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 509.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for fastavro-1.11.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cebb7433b860d9b13090d0e53f6db075e4e2042aeb2c577f515e73d2b9c98075
MD5 4bb5464c860722167b258f15cb640383
BLAKE2b-256 94e21f7f6f9a625325bc7617659bbbe7342fde255416a5103bf7a001f184be98

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88876568ef387996fbfc6b193a5b9830de3c0497af7d07e5c839a70b86bb47e7
MD5 5240f2cbbecce423468adc57f8350e7b
BLAKE2b-256 c0d27ae4d7bc5901cbfdacf6bc789552aa4c44cd602747a0c9aca7d5da94cebc

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8fd87ee1e9101b45172fb3cff21b56ce08270d9474eec1d436393677daa95938
MD5 6c15652dcef12d3472d256a6da1d81b1
BLAKE2b-256 e410f7ade6953cfabe14ece1bf96d958e7fd96da3fd745ff541d693d9fee498a

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2915324e1edb0e06f0be0c18279c60f4cff49f6fe01626594707eb75cd9952fc
MD5 f434942aa6ff6cfd8042b0d4cffde3ce
BLAKE2b-256 0310810330a5ea0b69ea80802e3bec0b5645ce6de06683250660a77898b0b361

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c646f07c7827fea7425b6936a27f67f356a2a80ac19e6100ed6d3bb0610cc3d
MD5 a5311f1f8f1960b88966b6b4b8fd1c2c
BLAKE2b-256 7d4d388b2b354959b73d8e6cc52230f0a58dfdb6489a08cfdd242b8df8464351

See more details on using hashes here.

File details

Details for the file fastavro-1.11.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fastavro-1.11.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8b579bab31ff87fcb5ef9f6f13baaf99f189b92ed287af60348777583628c327
MD5 de920d70fcdc13ea906ed2337a638d74
BLAKE2b-256 4031687980316c3385389adfddf699a4c11c8b1d99ce69ceed047546a040f2f4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page