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

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 the the Github release
  • Run make publish
  • The conda-forge PR should get created and merged automatically

Changes

See the ChangeLog

Contact

Project Home

Release history Release notifications | RSS feed

This version

1.9.5

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

Uploaded Source

Built Distributions

fastavro-1.9.5-cp312-cp312-win_amd64.whl (488.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

fastavro-1.9.5-cp312-cp312-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

fastavro-1.9.5-cp312-cp312-macosx_10_9_universal2.whl (1.0 MB view details)

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

fastavro-1.9.5-cp311-cp311-win_amd64.whl (500.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

fastavro-1.9.5-cp311-cp311-macosx_10_9_universal2.whl (1.0 MB view details)

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

fastavro-1.9.5-cp310-cp310-win_amd64.whl (498.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

fastavro-1.9.5-cp310-cp310-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

fastavro-1.9.5-cp310-cp310-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

fastavro-1.9.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

fastavro-1.9.5-cp310-cp310-macosx_10_9_universal2.whl (1.0 MB view details)

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

fastavro-1.9.5-cp39-cp39-win_amd64.whl (546.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

fastavro-1.9.5-cp39-cp39-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

fastavro-1.9.5-cp39-cp39-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

fastavro-1.9.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

fastavro-1.9.5-cp39-cp39-macosx_10_9_universal2.whl (1.0 MB view details)

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

fastavro-1.9.5-cp38-cp38-win_amd64.whl (550.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastavro-1.9.5-cp38-cp38-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

fastavro-1.9.5-cp38-cp38-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

fastavro-1.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

fastavro-1.9.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

fastavro-1.9.5-cp38-cp38-macosx_11_0_universal2.whl (1.0 MB view details)

Uploaded CPython 3.8 macOS 11.0+ universal2 (ARM64, x86-64)

File details

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

File metadata

  • Download URL: fastavro-1.9.5.tar.gz
  • Upload date:
  • Size: 987.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for fastavro-1.9.5.tar.gz
Algorithm Hash digest
SHA256 6419ebf45f88132a9945c51fe555d4f10bb97c236288ed01894f957c6f914553
MD5 b26660db14c193aed9365ef4b8d3b415
BLAKE2b-256 c88379f4a4f83a0bb067777ed7fe085b167604da2277ddd8d922b9b11bc3a1df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 488.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for fastavro-1.9.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d84b69dca296667e6137ae7c9a96d060123adbc0c00532cc47012b64d38b47e9
MD5 388a28f38fc553bd8ab544eb00feb65f
BLAKE2b-256 ff7903df863fee78c9710efcf05f0dba630d4059bf8a106eca41c0161512a811

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9827d1654d7bcb118ef5efd3e5b2c9ab2a48d44dac5e8c6a2327bc3ac3caa828
MD5 4371102c0e4e949896f9804be17637e4
BLAKE2b-256 9ae00aa19657ba3034a390762ca31b16561ea26d132ecee57c64e2f837681cd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bfd11fe355a8f9c0416803afac298960eb4c603a23b1c74ff9c1d3e673ea7185
MD5 96302ce9c907451eacf0b8f6a8816e10
BLAKE2b-256 7820a166b4b9cde971ddcf2af926fa286db9ebb0cbc19051c295c94c551b619d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 724ef192bc9c55d5b4c7df007f56a46a21809463499856349d4580a55e2b914c
MD5 3aa49a3daa40c335a7bf2b491cbba272
BLAKE2b-256 79812689af5a2fb557ff906241cc8b03497fc2250b41577b7e7b381afb715ee6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf586373c3d1748cac849395aad70c198ee39295f92e7c22c75757b5c0300fbe
MD5 bafc85ff7176fdf0cc092cffbfd081d1
BLAKE2b-256 617ac50fd8d30a9615588df4bdd0fab0892614ac02749eda155f770f4ffac3f3

See more details on using hashes here.

File details

Details for the file fastavro-1.9.5-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fastavro-1.9.5-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b133456c8975ec7d2a99e16a7e68e896e45c821b852675eac4ee25364b999c14
MD5 8e96b5863f6fcda0deb6f4d199878ca2
BLAKE2b-256 abdf7ac4db277677cf222c915ca389fd1088c674123968f39d36744f0ef3b3e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 500.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for fastavro-1.9.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 be612c109efb727bfd36d4d7ed28eb8e0506617b7dbe746463ebbf81e85eaa6b
MD5 6b93ee29f40df198cab73b2862d1971f
BLAKE2b-256 2992d15eacf9ef5c832a4ad6f32e93748d848a344c96821af0ecad02716efbe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 195a5b8e33eb89a1a9b63fa9dce7a77d41b3b0cd785bac6044df619f120361a2
MD5 3e97a988a2eb63bfecdeb36b439f1397
BLAKE2b-256 64326e58960e2bc240d1b58125d80e7b1ff71b4ab052c60faef042475572841c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27820da3b17bc01cebb6d1687c9d7254b16d149ef458871aaa207ed8950f3ae6
MD5 7ca7466f4552b7f5b32ce3e13da9cffb
BLAKE2b-256 bce0e6e4d2ddec06955995d83a251266fccf82554b42c909d7f256a0e7ed0d3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06e6df8527493a9f0d9a8778df82bab8b1aa6d80d1b004e5aec0a31dc4dc501c
MD5 2a97de28a34dc38d931f7f5d67c5566d
BLAKE2b-256 49f2a09dead40e62b0660bf1e7590a1e110602e35c8acd2643dd14c9872abd8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85e05969956003df8fa4491614bc62fe40cec59e94d06e8aaa8d8256ee3aab82
MD5 a8faab4ba6661b8a61fa301a69c990d0
BLAKE2b-256 8ce9389d0d095ef1dd7875178aa728d9d3400efc3c1bf08c8eb01e6a624290d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.5-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c52d7bb69f617c90935a3e56feb2c34d4276819a5c477c466c6c08c224a10409
MD5 68a39129dd2f241c3e16552b5a731b4e
BLAKE2b-256 cbcf50cbe11609b47aa323ce02016d3feda9fddbfe456f70ddd4a74099160739

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 498.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for fastavro-1.9.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ef08cf247fdfd61286ac0c41854f7194f2ad05088066a756423d7299b688d975
MD5 f7a04e1533b166de13e662b30cda3917
BLAKE2b-256 5b9d88e19802f0f10a1c8c5b041bb3ddf9b3cc6932df145d0ed4a12896f7da90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07b6288e8681eede16ff077632c47395d4925c2f51545cd7a60f194454db2211
MD5 4b0089da429105f15fb6bb74fe67cb1c
BLAKE2b-256 c4067aa5c43273dcd51526e1778285998145b2c2151ce7a162e8d593403bc6e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 53d838e31457db8bf44460c244543f75ed307935d5fc1d93bc631cc7caef2082
MD5 618fa82c93cf2032a362b430476eb963
BLAKE2b-256 fd209d956d934112ccf9774e8c00368787ca854bb8ffcf8c6d2afa06a0ac65aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0adbf4956fd53bd74c41e7855bb45ccce953e0eb0e44f5836d8d54ad843f9944
MD5 ad5332049d7a1fcbfc9e2f296097ee2e
BLAKE2b-256 fc3fddb2f935c95c12cda4904d91da192677acdbdfab15c0e4aa165fa72387cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b604935d671ad47d888efc92a106f98e9440874108b444ac10e28d643109c937
MD5 b5f353393ea3dd1c530db976676e7bd7
BLAKE2b-256 066198146671ed5930d2da462a438db6074d115b7868813529270d8a786545ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.5-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 61253148e95dd2b6457247b441b7555074a55de17aef85f5165bfd5facf600fc
MD5 b55ca017131b7f7a81daad2372800d6d
BLAKE2b-256 c0e4bbab02562d799c2427407c6da6e0c83551dad3ab1907b64b1ca4b0612ef5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 546.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for fastavro-1.9.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 753f5eedeb5ca86004e23a9ce9b41c5f25eb64a876f95edcc33558090a7f3e4b
MD5 e5afb1f8e53de585e2319d4ea26fb76e
BLAKE2b-256 2d26abb677d7685bf87323aca3796dfdd7ff49790c53a8d5570834665fff792a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88fbbe16c61d90a89d78baeb5a34dc1c63a27b115adccdbd6b1fb6f787deacf2
MD5 503a53544b0ff7dd616f498fdd9b9eb7
BLAKE2b-256 ceabd4e6bcc03a8ba8b21eeaf261b8223685c8a518d41260eecfc7c60a659b7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b5f7f2b1fe21231fd01f1a2a90e714ae267fe633cd7ce930c0aea33d1c9f4901
MD5 6ae6e474542f53fd0e2de2b4765aaebf
BLAKE2b-256 9beea427eef211346e58d4b899b5a912fd5dbd0b77dce222725df2c337fdab93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44cb154f863ad80e41aea72a709b12e1533b8728c89b9b1348af91a6154ab2f5
MD5 1317b21b2ec16e9f47f12fac3e5a96a7
BLAKE2b-256 8324f4ce3e2c9b41992db12a6b370c32347a102dc82dd3e3466ff7467447943c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85b7a66ad521298ad9373dfe1897a6ccfc38feab54a47b97922e213ae5ad8870
MD5 d0217712ac112e3505faff0d78860cd7
BLAKE2b-256 e490a84418ed5c2cf29c64120b9dc12469367508c5c4e02ae99e18591e1e80b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.5-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5b47948eb196263f6111bf34e1cd08d55529d4ed46eb50c1bc8c7c30a8d18868
MD5 d8d8c931eceb2831482bda02d9c74b58
BLAKE2b-256 38a2c790b0421814cc32395becfb7cf6cd6c870d346b7f7871a31b1a437b4e54

See more details on using hashes here.

File details

Details for the file fastavro-1.9.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: fastavro-1.9.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 550.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for fastavro-1.9.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 05d13f98d4e325be40387e27da9bd60239968862fe12769258225c62ec906f04
MD5 1ca253016363fdd5d98e5c8ec72abae7
BLAKE2b-256 198bf39328b9206939eb6843fbe02583f889311d0e16ee32d9759dd81d70cb21

See more details on using hashes here.

File details

Details for the file fastavro-1.9.5-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.9.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48c7b5e6d2f3bf7917af301c275b05c5be3dd40bb04e80979c9e7a2ab31a00d1
MD5 acfad8fceda88d6fb3595132aba0948c
BLAKE2b-256 fd80f0b42c1934ad1c789f7b2c699c4dc2e019864031cb29bdad354343a10794

See more details on using hashes here.

File details

Details for the file fastavro-1.9.5-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.9.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b47a54a9700de3eabefd36dabfb237808acae47bc873cada6be6990ef6b165aa
MD5 548672216b350e68fc3c053a447ab3e5
BLAKE2b-256 ca1763a62b6c9d7529fde872c27262af55c9be2ff36a041d30828e657e6f81f2

See more details on using hashes here.

File details

Details for the file fastavro-1.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3bb35c25bbc3904e1c02333bc1ae0173e0a44aa37a8e95d07e681601246e1f1
MD5 e02331e131887c7cf168fcfe7c30105b
BLAKE2b-256 6dce306e33eaa0eb58dbacbe79fa337f5019b4a30b178db71d0fa43d2d041ab7

See more details on using hashes here.

File details

Details for the file fastavro-1.9.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.9.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 240df8bacd13ff5487f2465604c007d686a566df5cbc01d0550684eaf8ff014a
MD5 37ef3ff0d3203959b08d0e8c42dd2fb2
BLAKE2b-256 b7b1cdddfd250d7858ba105c547bab71bffd5a7de0ae2c67f9a528c96f45a7ac

See more details on using hashes here.

File details

Details for the file fastavro-1.9.5-cp38-cp38-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for fastavro-1.9.5-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 fb744e9de40fb1dc75354098c8db7da7636cba50a40f7bef3b3fb20f8d189d88
MD5 ee66c2a9dec0a4dca109fb0df952ff83
BLAKE2b-256 6f5ff3de1d8d969a5d4cd5e54b89904129066bbba78267577b93478e8a9a9bb6

See more details on using hashes here.

Supported by

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