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

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

Uploaded Source

Built Distributions

fastavro-1.8.4-cp312-cp312-win_amd64.whl (481.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

fastavro-1.8.4-cp312-cp312-musllinux_1_1_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

fastavro-1.8.4-cp312-cp312-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

fastavro-1.8.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

fastavro-1.8.4-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.8.4-cp312-cp312-macosx_10_9_universal2.whl (1.1 MB view details)

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

fastavro-1.8.4-cp311-cp311-win_amd64.whl (497.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

fastavro-1.8.4-cp311-cp311-musllinux_1_1_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

fastavro-1.8.4-cp311-cp311-musllinux_1_1_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

fastavro-1.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

fastavro-1.8.4-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.8.4-cp311-cp311-macosx_10_9_universal2.whl (1.1 MB view details)

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

fastavro-1.8.4-cp310-cp310-win_amd64.whl (494.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

fastavro-1.8.4-cp310-cp310-musllinux_1_1_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

fastavro-1.8.4-cp310-cp310-musllinux_1_1_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

fastavro-1.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

fastavro-1.8.4-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.8.4-cp310-cp310-macosx_11_0_x86_64.whl (586.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ x86-64

fastavro-1.8.4-cp39-cp39-win_amd64.whl (544.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

fastavro-1.8.4-cp39-cp39-musllinux_1_1_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

fastavro-1.8.4-cp39-cp39-musllinux_1_1_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

fastavro-1.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

fastavro-1.8.4-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.8.4-cp39-cp39-macosx_11_0_x86_64.whl (587.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ x86-64

fastavro-1.8.4-cp38-cp38-win_amd64.whl (545.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastavro-1.8.4-cp38-cp38-musllinux_1_1_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

fastavro-1.8.4-cp38-cp38-musllinux_1_1_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

fastavro-1.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

fastavro-1.8.4-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.8.4-cp38-cp38-macosx_11_0_x86_64.whl (588.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ x86-64

File details

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

File metadata

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

File hashes

Hashes for fastavro-1.8.4.tar.gz
Algorithm Hash digest
SHA256 dae6118da27e81abf5957dc79a6d778888fc1bbf67645f52959cb2faba95beff
MD5 ed459609cf142e07185be95b06458a12
BLAKE2b-256 3c3f16c6e903d274e052d3269d01b871c7e349db9b85aacc9df22ad820a8be90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.8.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 481.4 kB
  • Tags: CPython 3.12, 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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7095ae37a5c46dacb7ef430092e5f94650f576be281487b72050c1cf12e4ee20
MD5 d4d5fc11c5d602563567604bf9f2f11c
BLAKE2b-256 27f33b36ee7666d8240946b1573643cc11bc8f83d90af0ce66177453128c62ff

See more details on using hashes here.

File details

Details for the file fastavro-1.8.4-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.8.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 39771719fa04b8321eeebfb0813eaa2723c20e5bf570bcca3f53f1169099a0d7
MD5 03fe0e3fb75e50cac12275b93153a398
BLAKE2b-256 8a2b21b3c73e80015deb62c9790db91fe0f7d99f42091d78367178c5c5b09792

See more details on using hashes here.

File details

Details for the file fastavro-1.8.4-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.8.4-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3201880149e1fb807d616ab46b338a26788173a9f4e8a3396ae145e86af878a1
MD5 543936839f8a8a0aeca0c4bd1dbe2c5e
BLAKE2b-256 73ab3753cefaf7a11a7bf48a1d6b4d2de22659be65da1ed2eeccfb75f09d4398

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6281f4555659ed658b195d1618a637504013e57b680d6cbad7c726e9a4e2cf0b
MD5 69bf60e1c1faa4b1cfe23795693ec518
BLAKE2b-256 94efcd1ec993bb70a6b56b51180cc2ee5cf3db636fb4789813edbf1b3c8b0afb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04e26b3ba288bd423f25630a3b9bd70cc61b46c6f6161de35e398a6fc8f260f0
MD5 a83cf82a3131ed1b61dfce69b2fdc524
BLAKE2b-256 c9013f124ff23c5255f94c07716e5068daac40f07c3071f0728301f8d186521e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e331229acef15f858d9863ced7b629ebef4bd5f80766d367255e51cbf44f8dab
MD5 053964d45bcf0326c65b1237f190172d
BLAKE2b-256 5fbbc32c432d79d7e8e6ca355c18ad2932432cf6ea600a5de919ea6dfea9f005

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.8.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 497.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.8.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c8fb27001b7023910969f15bee2c9205c4e9f40713929d6c1dca8f470fc8fc80
MD5 478d7d6ca9e29e6f6b52cbe99e895685
BLAKE2b-256 73d7d716b8a2d31af0a8984ff43e4d6b96739cc6f98264505aaa7255e273613e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 14d7cd3df019d41c66733b8bf5d983af9e1f601d4cb162853a49238a4087d6b0
MD5 f5f7bcc5aefed4ab333200d75d19e2f0
BLAKE2b-256 486622f5fb9be7a2b8c9e9cb19ebbdd14c36e50a3ce4712f20594fa0929ba4db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b79baefd61554d9f03c4beaebbe638ef175d0efc1fb01f25e88ee6ae97985ab3
MD5 e48355404d246c65b498a440a48b541d
BLAKE2b-256 11a49bc396f94adbdd9988a15f35ef7f697bf62da75eb672b1bf89743b50649d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9293b303955acd34a6f69dd4ef3465bd575dbde0cd3e3f00227a0ba5012430b4
MD5 647ea7068f7589b70635c439bda2b0e5
BLAKE2b-256 bc2669b31a1ac015d34d87418dfddd595e2ecf67f988358b9d9e6f3e738c4a15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1eaed91d6e1fb06c172e0aaf4b1ca1fd019c3f4a481e314bf783a4c74f6b7015
MD5 aaeab623b53b2ced9d70787e7c88adef
BLAKE2b-256 ce79ace76c544d7f234c4f1a153a973893b44e4d215e55d5b7ba1175e665c184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d353aec9c000b96c33ad285651a2cba0f87fe50fcdecc6120689996af427194d
MD5 71c44ffd9b6acd537b8640869922446c
BLAKE2b-256 6ab7e7795baf3288623a5253fe0d3cce24c5e00ae1adda800ea3e313fb27e1d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.8.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 494.6 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.8.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f12f9914d6196695d3208ea348145a80d0defefe16b8a226373fe8ce68f66139
MD5 f3eaeddd28f205b56ec7131428879ad3
BLAKE2b-256 0a4a97f84f29149b6c01d5236d1e62a703338df4573ffc4f71e6e6e325fdd962

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ce2ccfa9aff8df6da683c48542b7b2a216dde6d3a4d1c505c5e1b8ca2ec0abbb
MD5 8e0b034031a5909fea2ce6d6bda95770
BLAKE2b-256 5f90dbc77eab932583677e993823407c44f42405887e4b2e6fc98f4af8e09092

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d950542b3263653f00b695cbc728b5c60ab9ea6df32a7017ad9a6a67235386e7
MD5 27b3c5bb78ec838828d303b0523762ef
BLAKE2b-256 adf6010c04ef856815b20e11c89a8c4d9c8253b3ab03267e8ee0bb2a02009976

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78fdf1ba47e43146af72ac48d7b2247a06c4f2d95dfdaad6129c481014b07a6b
MD5 d286816f44bfb0bd3b0280548c4cafea
BLAKE2b-256 cfc8ad9be65a4aba47496c5e135d36ca318491e335a2f14b8652233ea5247d7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5fd73609f3c1ac0d90ae3179d2fb9d788f842245db2656ff9225fce871fc5b7
MD5 6de3345325bbc2967777e8a3def79a87
BLAKE2b-256 70b37f47f3de41c4511aaca70e3c5ed58d4e73021c31247d452143c5043ece49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 7afe1475e8a967c04e2b0ef4d33bc10bffa66b4fa6e08bd2ee9d91b6768cba2a
MD5 61c04813b96b44310b7ef93d232c085c
BLAKE2b-256 c29e07d19f18fc2079b368b4128a4627d29aa78f405452ddb380be3e2a9a8818

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.8.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 544.9 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.8.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3b73472e8da33bcbf08ec989996637aea04eaca71058bb6d45def6fa4168f541
MD5 41197bad64649b9615882143f7d924f2
BLAKE2b-256 13900fdaa1fed01dea75280d4602b421c08c18778e0fe9c7dce588405ee1db33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2d39c6b5db7014a3722a7d206310874430486f4895161911b6b6574cb1a6c48f
MD5 c84220e564358875d0b14448d9ac159b
BLAKE2b-256 13965b48baac0f2e836f0f732a725d79e5451debef93df7d258fe250cfef8a0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 94448dc749d098f846f6a6d82d59f85483bd6fcdecfb6234daac5f4494ae4156
MD5 4a3aaebad1b7f8267296f42cf9c180e6
BLAKE2b-256 0971ede3762a467d870d166b83b3c8fe6c2e346d05bf65743bb7d960cfde02f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2610a8683b10be7aaa532ddddbcb719883ee2d6f09dafd4a4a7b46d5d719fc07
MD5 7111a922c78090de8496c59c5cbcd3cb
BLAKE2b-256 a72ad08d871255c8d90909f600ba5681033bb738187a167cd3ff51c7b0618bf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b921c63fcfb9149a32c40a9cd27b0e900fcda602455cbce4d773300019b9ce2
MD5 dd8eb762ad15283dd314c3edd0c35e5f
BLAKE2b-256 9c4c8d26be0c26290744d27f6de3a8d795b04ef689739e5db8cfca1440207999

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 687a2f8fa83a76906c4ec35c9d0500e13a567fc631845f0e47646c48233c7725
MD5 bc0a513494e1299c4ec4fd0d55afa6c8
BLAKE2b-256 31908248cabbdadc7b6499ab73e3aad0147db7fed314e3d9cf68db5fa31f0b58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.8.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 545.3 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.8.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bc8a1af80b8face4a41d8526a34b6474a874f7367a900d0b14752eacebb7a2b8
MD5 05703230d2be9566c1e3fb7ce5e7831c
BLAKE2b-256 04ce440f79ff8767f2e53d734a7ca2c48348e2d611261a9ea0883c86ca005ba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 01c8c7f22172174f2c2c0922801b552fbca75758f84b0ad3cd6f3e505a76ed05
MD5 fc154cfb00ad0d73570da2b5105dfdbe
BLAKE2b-256 6ae3f336ac8cbfe1e0b9d0a16402b4e8825db1506089a608f94fc0289ceaaf56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1060318f3ab31bcc4b2184cea3763305b773163381601e304000da81a2f7e11f
MD5 94e255c9a8fd5370e01c18e54f5b3d5b
BLAKE2b-256 3886c7e3dcc5a3bf1041ac92efc88a84a1e1e3cf65c80fc06133cbb54506ab1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9f0ef601943ea11cd02a59c57f5588cea3e300ac67608f53c904ec7aeddd232
MD5 d43bb53130aaeefd92951d3a40de06c0
BLAKE2b-256 2c78917aeb551bd7419d0f9dc5bea1a2c10f55a21e3c636e7f2f57b7a813a484

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71ebe1cf090f800ca7d4c64d50c81c2a88c56e6ef6aa5eb61ec425e7ae723617
MD5 6238728f00786f82cb3f85fc87b527fc
BLAKE2b-256 7d18eb759ec2d740c9ce5a8f6aea41aab6371db3d984c253c9e9286630471011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.8.4-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 eb76f5bfcde91cde240c93594dae47670cdf1a95d7e5d0dc3ccdef57c6c1c183
MD5 4d01c7c38e04fe9226cea2d2ee089262
BLAKE2b-256 f9006d7a84707cd1b19c384ac0ddaa899d386d7cc8f4ca30f71c234c9eb10c4d

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