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.7
  • Python 3.8
  • Python 3.9
  • Python 3.10
  • Python 3.11
  • 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.8.0

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

Uploaded Source

Built Distributions

fastavro-1.8.0-cp311-cp311-win_amd64.whl (408.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

fastavro-1.8.0-cp311-cp311-musllinux_1_1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

fastavro-1.8.0-cp311-cp311-musllinux_1_1_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

fastavro-1.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

fastavro-1.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

fastavro-1.8.0-cp311-cp311-macosx_10_9_universal2.whl (920.9 kB view details)

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

fastavro-1.8.0-cp310-cp310-win_amd64.whl (411.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

fastavro-1.8.0-cp310-cp310-musllinux_1_1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

fastavro-1.8.0-cp310-cp310-musllinux_1_1_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

fastavro-1.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

fastavro-1.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

fastavro-1.8.0-cp310-cp310-macosx_11_0_x86_64.whl (521.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ x86-64

fastavro-1.8.0-cp39-cp39-win_amd64.whl (459.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

fastavro-1.8.0-cp39-cp39-musllinux_1_1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

fastavro-1.8.0-cp39-cp39-musllinux_1_1_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

fastavro-1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

fastavro-1.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

fastavro-1.8.0-cp39-cp39-macosx_11_0_x86_64.whl (533.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ x86-64

fastavro-1.8.0-cp38-cp38-win_amd64.whl (459.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastavro-1.8.0-cp38-cp38-musllinux_1_1_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

fastavro-1.8.0-cp38-cp38-musllinux_1_1_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

fastavro-1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

fastavro-1.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

fastavro-1.8.0-cp38-cp38-macosx_11_0_x86_64.whl (528.0 kB view details)

Uploaded CPython 3.8 macOS 11.0+ x86-64

fastavro-1.8.0-cp37-cp37m-win_amd64.whl (445.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

fastavro-1.8.0-cp37-cp37m-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

fastavro-1.8.0-cp37-cp37m-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

fastavro-1.8.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

fastavro-1.8.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

fastavro-1.8.0-cp37-cp37m-macosx_11_0_x86_64.whl (516.2 kB view details)

Uploaded CPython 3.7m macOS 11.0+ x86-64

File details

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

File metadata

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

File hashes

Hashes for fastavro-1.8.0.tar.gz
Algorithm Hash digest
SHA256 f41c5c04157ad7e7ac6e93bbabbb61fbdef0c2542f1a610f1db461bfe6141d57
MD5 c6dcd15b3f5dff02e3068fe4f6ccba1f
BLAKE2b-256 4f0679fa40827fbf55143d488758fb4ca8e82a6b6c5c7932c93301f3b65a5a63

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fastavro-1.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 82b69bf97d34ad616aded7ac57deb2bbf75eba65b3aea25d32ead5765ed24b61
MD5 772b98c05d9b65044a9459f520fd9d28
BLAKE2b-256 83ab417975d1294a4fc1f6d819aaef8d6c0e03043e316b1cbb6ef50bb3a3b4e8

See more details on using hashes here.

File details

Details for the file fastavro-1.8.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.8.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a0218cf28c63054d1bb9b5cde5a3822f7ad776be9048d354aa49f065aff0aacf
MD5 eb9b4db2bb1e534f76993a2de95f7aa8
BLAKE2b-256 8fe1a4077ec5dc40b0ad3e70dee6f023351bba1341367df053e4c417115c3125

See more details on using hashes here.

File details

Details for the file fastavro-1.8.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.8.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1905016f84acf7d1304ac99f2d7d5efa2717f9bb8c686f350b570ea806ca4fd9
MD5 48a161b1f3dc8886d0b53f6229b5921d
BLAKE2b-256 98c5ab19d4b3c2e0dbba87f6d7aa9cafbdf631d1e15d0a4e5a2a3920f23f02ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6a40ab76634317a8ae0cc49a3c5fb3472f3bda7a36a2f24b6989cede45baa2d
MD5 1c8b5e47c960c7d3230b4f90a74fac42
BLAKE2b-256 b7230621082acd58efb1a4233eacd9b50a58aed4820f28f38df6658dac93041c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a280fa9bf178eb00c9d453725cff47f7afc8cbaf9afced1c3d089d7c68a90e58
MD5 687a4f28ddd1a0bb033392dbd91df023
BLAKE2b-256 ec8a2a203cf841aea3c012b01bb718ba1178a8d1361add47f58e9aa59498d7d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 69ef96ebda26e5565d00785414462708bd78c608a870b05c7bdd24a8f5387cc6
MD5 32011e423f36af114ec144493e1fca87
BLAKE2b-256 45afc18ffbf51b9924f5d9a325933334c6638525a04c314baf8ec95fc39edc33

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fastavro-1.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bfcdf0f37b352a8aeb7367e055ecc6610343365dccb4ad922294442b2753b657
MD5 d83e6a107a8303790504b3598a0c54f3
BLAKE2b-256 5498d008553dad0a5bd878b194af2ee2876713eb8e9490c53029defb4f18a4ad

See more details on using hashes here.

File details

Details for the file fastavro-1.8.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.8.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 34476d67628d51ef5cc59c726f94e94aa216725b7e24eae7c76ea2acbe414727
MD5 fa7565dff1e60b39d5bca9961ec9f327
BLAKE2b-256 33f8c91babe59034eff1f1a6a232ffa1c2cefc54a907b2b08ff576255cb7d23b

See more details on using hashes here.

File details

Details for the file fastavro-1.8.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.8.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 71c9b69c89cbce0d088988e3b3baee9c6de4f51c7e8d11c8c2e5e0bdd0cbc282
MD5 851c1d96b6777c5ae18c7d041e5814dc
BLAKE2b-256 3a1332af0cfe51d96a03ce3f3f9ee01532e89745213f048acfeaa319e54edb21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 516112ca8d8b90f6663341733e8bff6dfe573e655f485aab0a7d76b80393128e
MD5 3fa0b51439e95f28705da56fe123f4db
BLAKE2b-256 e2d33cfd0421a2ac9e739c66c26f36d4c59fd7792bd9747dd5c2efe26e420849

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79e0748c2dda1097bdc58cd2f71b24f0d09b6d0aafe671b56d45ca26c4379fe1
MD5 dfe116dadc584fa8cd74174a05e68be4
BLAKE2b-256 6f88159f57f64d88083c3abc5519afb11beab3cdcd59743b211834679e25727a

See more details on using hashes here.

File details

Details for the file fastavro-1.8.0-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.8.0-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 157275f6682f374dae644002ad77c9df1b16c46f100a691165dd7f5d9d4ba34d
MD5 d35f578bd12b4bb6ee51fd2a6b409b6f
BLAKE2b-256 1b246ca63096ec67ceaa40fddc2fdc5b093f013b79d6c59d00c90bd4b432cfa9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fastavro-1.8.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c1145576977e093c8321a83d2642259cc4233369b0a6f35ddaaef55545f71f5f
MD5 6f2f7b006e0e9736e0eaa6be88e5e0ad
BLAKE2b-256 5a8f59b84c56a578e3aba2f46fc105b013908c74c03e178e3d30132cd8d26c3b

See more details on using hashes here.

File details

Details for the file fastavro-1.8.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.8.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a0a372f2f4597af0e1aa69fe0fdc7c83df7bc3420cc03302604905c634c39c26
MD5 56b425c57c7c8c9ed9c05ca31fe97a8e
BLAKE2b-256 437247eb0368239242b651aecd444649a2766726b905a47f90cbff943aa4ec68

See more details on using hashes here.

File details

Details for the file fastavro-1.8.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.8.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8b324859e1dc09b7e5d17cd81f2d5fda00612e29f147793a00f55c60047e883d
MD5 78d2ec773312f26a236d03fb5b7a09a5
BLAKE2b-256 f7765a2b4aa670e7b4b62f1a147bacc0b83c5fcb0cdaefa17f7d70a96bd86e86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa6e10e90e1d1a3e9f9e4ee89144a62cfe092f9ddd2bb6fe216779b00166e176
MD5 c63ebe35a2735dc19c1ef85f7a6bab17
BLAKE2b-256 907b5a542d4da3f7d67c2bdda5942a1ed90e5e3e6bfd2f9c24654cfc2449a3d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ac5e02dac5b5ef5a8835db8bd77f7d2f21fdd4df2e35136e96d340f46707cbf
MD5 e40407b185c0671af72c5898cda14995
BLAKE2b-256 1b870a265349c90642238bd32a8110c33ecd6dec514ef9bac94ec7223fde4b8a

See more details on using hashes here.

File details

Details for the file fastavro-1.8.0-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.8.0-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 c4df57043f78764f4a7b1909b66452ed4abc7cf8834a147a37d3ae2a5abcf1c9
MD5 603c4425e71100bb6aff4773fe0d79aa
BLAKE2b-256 f2f1b54b552abb386ce050216751364348b29a195a9a235653e2baed7f267440

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fastavro-1.8.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0f077c71d8905b5d4e073546185c2c929b302ff031ff41ad2aa31f191076493f
MD5 ae707972b0ee8e2cc6362c5ac4425bda
BLAKE2b-256 337b99254ff4cdcce9e0f2b1500ad08f5459e27526bd7b6ac661a141bd4b5ed0

See more details on using hashes here.

File details

Details for the file fastavro-1.8.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.8.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e54688ff3765aa68dc70157e81451c2bc095655a37ed153d0c00377a86cffbd0
MD5 8c890bf702037acff742824369c00f2b
BLAKE2b-256 16c4d8c0c76cca8fe03336733253292dbc36e0fb19bcf1022270d596dce734a4

See more details on using hashes here.

File details

Details for the file fastavro-1.8.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.8.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dd32ee75bb111e9d26195c93c9c744219b87f43e2da6c36cf8a4a2bf14c19e1d
MD5 81d1d4b121976a83d8909a943ffd261f
BLAKE2b-256 30b10b8f3e91c321c70bd0013d13208d6420e755520b572cbf803ea4e7d3b17a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72844d74e748b7cc5c1feb1a5e85f8be4bd93006eef74c51ad8b286b6dde312e
MD5 8a84adf7556b627730cf0e6b8451bc3e
BLAKE2b-256 d74b6226c08a707daa9b9230bba74ee5fea3d192cc56cb201266a7cc097ff977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12afbec1625736bdb76ec8bd2a188290ceafa625d1f412b8229d9ee5f6c4a861
MD5 d8296bf58a79ab4d2e5b155af3258338
BLAKE2b-256 63748736c09faf173a3b05de06d965d1bfd99f10fc94f1002ce6562e63fb2b9d

See more details on using hashes here.

File details

Details for the file fastavro-1.8.0-cp38-cp38-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.8.0-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 1edc80c0b162417514725df3cab10fd5437b6a2623f973f82cd5ece73ecfe451
MD5 ff8de2ea2e90d8fd6b0af275be63f876
BLAKE2b-256 8e60ad084da1f4ef7caaa3ebe0dec726f8347179cc6201ec095b4946a088883b

See more details on using hashes here.

File details

Details for the file fastavro-1.8.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: fastavro-1.8.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 445.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for fastavro-1.8.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5315149ad284c3f384c8fcb81b6a7b6a7a7852ed420e4d2c1966a23d858f62a5
MD5 f71123decbcec6920133a6b212344a16
BLAKE2b-256 e48d74f987ce7efa420991314a7711eaf38e48213d91de83f3b35e9671ac07e3

See more details on using hashes here.

File details

Details for the file fastavro-1.8.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.8.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d09b3c23c82eb8c1bc8f4271ee2ac14e5e2dff25156b62e98393c58bb11cc879
MD5 d1b6cd0ff7cb6f31a18db9dc06468114
BLAKE2b-256 8261c9facd1ded27488f5beb149da568c3cb11e7fcb60483e692f4bc8ada1f06

See more details on using hashes here.

File details

Details for the file fastavro-1.8.0-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.8.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5695b971ddb70f6808cc74fa15dcf2c9f14f70014f802866e4714af3d8a241bd
MD5 bbf4b5f9dc83d25f50175c63f94e59f3
BLAKE2b-256 ab5a9fe731597c4d8ef1406f102192b5d7f85a5ff61dcb906562915691368728

See more details on using hashes here.

File details

Details for the file fastavro-1.8.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.8.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47644cc11ee6ba93761a11e0df53a68f12bc6f7fb5ed511982cb84432a43bf73
MD5 9c659074ab3bc17ba0403a661aee4137
BLAKE2b-256 7db78e19773409e1ce6866f87c9467cf44e84fc9e3328add4aa1a42538ac8120

See more details on using hashes here.

File details

Details for the file fastavro-1.8.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.8.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c805bffc12c5997239fd9026ca2fb4f1bd68c03a4efb883c132870fdfeafd351
MD5 6f0d206837d33097157a5bbe5de05cab
BLAKE2b-256 9d5e6a906728c4ccd422e6bfddc4d5c5a1354b1865a5f4985d742870fe5e0fde

See more details on using hashes here.

File details

Details for the file fastavro-1.8.0-cp37-cp37m-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.8.0-cp37-cp37m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 3c825392f63c0de86ec99b5d691811770f34092a8283beff9e6fe5ec7bb398f6
MD5 4b35337b6b3e2177b56fae6bd25e42c6
BLAKE2b-256 ffa90b3391841c3a3cb52a0e6fe8a9c6ecb3eda8c2b938834815c2da53098a03

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