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

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

Uploaded Source

Built Distributions

fastavro-1.9.4-cp312-cp312-win_amd64.whl (487.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

fastavro-1.9.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.9.4-cp312-cp312-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

fastavro-1.9.4-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.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.9.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.9.4-cp311-cp311-win_amd64.whl (499.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

fastavro-1.9.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.9.4-cp311-cp311-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

fastavro-1.9.4-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.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.9.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.9.4-cp310-cp310-win_amd64.whl (497.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

fastavro-1.9.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.9.4-cp310-cp310-musllinux_1_1_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

fastavro-1.9.4-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.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.9.4-cp310-cp310-macosx_11_0_x86_64.whl (590.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ x86-64

fastavro-1.9.4-cp39-cp39-win_amd64.whl (546.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

fastavro-1.9.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.9.4-cp39-cp39-musllinux_1_1_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

fastavro-1.9.4-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.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.9.4-cp39-cp39-macosx_11_0_x86_64.whl (591.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ x86-64

fastavro-1.9.4-cp38-cp38-win_amd64.whl (550.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastavro-1.9.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.9.4-cp38-cp38-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

fastavro-1.9.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.9.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.9.4-cp38-cp38-macosx_11_0_x86_64.whl (591.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ x86-64

File details

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

File metadata

  • Download URL: fastavro-1.9.4.tar.gz
  • Upload date:
  • Size: 985.9 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.4.tar.gz
Algorithm Hash digest
SHA256 56b8363e360a1256c94562393dc7f8611f3baf2b3159f64fb2b9c6b87b14e876
MD5 7e5c4afc64327e83e1869cc082f9a820
BLAKE2b-256 9092c6b038c0a00230906810e665ed787cb5ec975ef339630cb03fbd8d667a6a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 487.4 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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a4b02839ac261100cefca2e2ad04cdfedc556cb66b5ec735e0db428e74b399de
MD5 0f736039b628f46eb8c071fd538d88f9
BLAKE2b-256 771c9a22bfde3308535510bf5ecff1633d7c0f5d603e8d8f0b28c1e86439e26e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 eca6e54da571b06a3c5a72dbb7212073f56c92a6fbfbf847b91c347510f8a426
MD5 02c49e360a870deb6c871655e407e660
BLAKE2b-256 1daef6f360a917d146b75b9da2f3c83ae29c562dcf3ba140f5a376461383fd0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 90c9838bc4c991ffff5dd9d88a0cc0030f938b3fdf038cdf6babde144b920246
MD5 1dde56a8bd1316b24f7281e4ce2d19c2
BLAKE2b-256 947cc9c60190f7ea1d1f3ada4ed205daf526cf1c8f7e19bd61d62db1c68f94d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b928cd294e36e35516d0deb9e104b45be922ba06940794260a4e5dbed6c192a
MD5 7acf4464d2846f4924ae75419a6a7ff6
BLAKE2b-256 03d1b1841585269d3afa8e29bc5ea06a9c15dae09ce287f803f64ea6e446ccc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6925ce137cdd78e109abdb0bc33aad55de6c9f2d2d3036b65453128f2f5f5b92
MD5 3e7e770b18aa1fd9f73fa84435f5524d
BLAKE2b-256 4bca3e93282feb21da7525935f042c35c3dd709f0ce168e46f84b58f109db84c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 68912f2020e1b3d70557260b27dd85fb49a4fc6bfab18d384926127452c1da4c
MD5 936ee607a1c1e871af157501167f4ace
BLAKE2b-256 b3fbe9d780d1ce74ff407c58b9427e39dca0bc1157c7ac4d2bf97291466e67e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 499.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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cf7247874c22be856ba7d1f46a0f6e0379a6025f1a48a7da640444cbac6f570b
MD5 3d777f34764b25611b8df5a94f186fcc
BLAKE2b-256 2b7e18d9b5c3e1621f58c1f4bee67ec1e4dd8ce8287e70c97262088a5673145c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ac26ab0774d1b2b7af6d8f4300ad20bbc4b5469e658a02931ad13ce23635152f
MD5 4f967853c8ad450edb0f9bffaa9d9c8c
BLAKE2b-256 ba73e64ed287a8786731ea00f83e4fb1d863f7932eb5ca8ac388e150a4780339

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c443eeb99899d062dbf78c525e4614dd77e041a7688fa2710c224f4033f193ae
MD5 3797b8354eacb2953e63b3dc0c3a61a3
BLAKE2b-256 3f94871f19fd0885228b9698c40cf79a3a3fe9d231ec36c1fa99e1db10f6d3f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 903d97418120ca6b6a7f38a731166c1ccc2c4344ee5e0470d09eb1dc3687540a
MD5 bc674bc95d674c08e40789ddc6063e84
BLAKE2b-256 bbf10b2f1ef950e948f8eab7bcf6fcbbccdfcd5468cf269c1133b3bd02648a1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4a138710bd61580324d23bc5e3df01f0b82aee0a76404d5dddae73d9e4c723f
MD5 9469d9f58399846c6682ecd6d48251ab
BLAKE2b-256 75653948dd27dd38169437376e1017ccaa423094d4b52b6b8aae26700273b161

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 af8c6d8c43a02b5569c093fc5467469541ac408c79c36a5b0900d3dd0b3ba838
MD5 ae55f03de3475d7e98e9e01d08f2331f
BLAKE2b-256 4535ed6a09aa1bcaf3cf49f158ff6b7fa91cabe070f10e5d4f0618af8614c8c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 497.2 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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0cd2099c8c672b853e0b20c13e9b62a69d3fbf67ee7c59c7271ba5df1680310d
MD5 e34b0c447cf282b09f6c961e6ac00f4d
BLAKE2b-256 212c413f8edb84b499855c38ddb43659c953efdae62051b54c0571323f51b89f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 56bed9eca435389a8861e6e2d631ec7f8f5dda5b23f93517ac710665bd34ca29
MD5 00df81f975d1c5d789d95b308bf8b516
BLAKE2b-256 73ba4c354c6e9849b482f0d982688eb395543225fd15ef98956a09168df16c1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 02bf1276b7326397314adf41b34a4890f6ffa59cf7e0eb20b9e4ab0a143a1598
MD5 3e574a2e407843dfea4d504a38216a11
BLAKE2b-256 7cb1c222300cc347be178d4b2f8139f2aa941bcfe30c01f736e8bc7b1d697302

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87a9053fcfbc895f2a16a4303af22077e3a8fdcf1cd5d6ed47ff2ef22cbba2f0
MD5 5f67c05d4c0a2f3bf4b66d37d71556f2
BLAKE2b-256 e900c4e381c35eaee93cab9653bb345c5ffddc8ace5e84ddaa9cdb2f7a1022c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 063d01d197fc929c20adc09ca9f0ca86d33ac25ee0963ce0b438244eee8315ae
MD5 915f348003106e19dce9b5b215d95957
BLAKE2b-256 744948607a240f47a9e1560c4bfb9a8270289c368a0ced2ddc88d6b15d8c80ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 60cb38f07462a7fb4e4440ed0de67d3d400ae6b3d780f81327bebde9aa55faef
MD5 4e3a91de1d96f0751cd7c5ba998d15c9
BLAKE2b-256 3a6f7a7886b601cd7260c36c54e71cef8fa6eb554592694c07fa51689a0b38aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 546.3 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.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f05d2afcb10a92e2a9e580a3891f090589b3e567fdc5641f8a46a0b084f120c3
MD5 f6642b4ace3b819c6caada4db4b74f68
BLAKE2b-256 c4fd2f5035b7e1b3f03fbe9492cf26b159928b0e31b7104ec528cd9393b3c921

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c293897f12f910e58a1024f9c77f565aa8e23b36aafda6ad8e7041accc57a57f
MD5 e07a1a8378c1ba3d3d968196f4a16c17
BLAKE2b-256 4a0248caa03ff871b02dd141bb70aba017195d51c55b84ed9aa8747341bb2f08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d47bb66be6091cd48cfe026adcad11c8b11d7d815a2949a1e4ccf03df981ca65
MD5 2253dc335c6054a6c63803d538331f81
BLAKE2b-256 7860aa5cf89460dca597ff1b228f7f9f25f1febf590f8b5c101aea5ddc9f8f87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24d6942eb1db14640c2581e0ecd1bbe0afc8a83731fcd3064ae7f429d7880cb7
MD5 fd4b481e09baa23127bdcfced0a0e7c0
BLAKE2b-256 e443b9de81c64a13f70d4edd25116ff7b44cb420a3c16cbbd8d8e41231409b9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 253c63993250bff4ee7b11fb46cf3a4622180a783bedc82a24c6fdcd1b10ca2a
MD5 6539d4b0484d07e1aa4c0d70754e2b38
BLAKE2b-256 8b3f3a62f14869f0ada5da7b9c806ee030eee6e127a7e59790703f0f56eba680

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 7e05f44c493e89e73833bd3ff3790538726906d2856f59adc8103539f4a1b232
MD5 3dda9cfde8e8a2eaf34c225509fc2599
BLAKE2b-256 91263a2556e69b645f0901254de811061e29c3abc4e6a9cdbdfaf987cdcd1a4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 550.0 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.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 64d335ec2004204c501f8697c385d0a8f6b521ac82d5b30696f789ff5bc85f3c
MD5 a21fedbb653cb7d9e5bea7f69809265d
BLAKE2b-256 4c5b0809b30aef873572f67e76b69efdcd2a65991d3e8d9f820d920d94c5941b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2e6ab3ee53944326460edf1125b2ad5be2fadd80f7211b13c45fa0c503b4cf8d
MD5 35b3272f618ab37164321d330984b68e
BLAKE2b-256 cb520a50b4806854932117957b8b3d2ed0996293974da41ecf15a690196ac6ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 23d7e5b29c9bf6f26e8be754b2c8b919838e506f78ef724de7d22881696712fc
MD5 708dfb3b4f49ad6656975adaaa1c53ea
BLAKE2b-256 e0334d6a903f5e562ad19f7601549a96f5f176e06b02df94f7b53bade2986269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33d0a00a6e09baa20f6f038d7a2ddcb7eef0e7a9980e947a018300cb047091b8
MD5 db0c2587e9ec356632ab27d53531fb86
BLAKE2b-256 5d3770ef969b2c6c3c1076878959cb695b583eb964e430bb98bf960ff4a94574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8524fccfb379565568c045d29b2ebf71e1f2c0dd484aeda9fe784ef5febe1a8
MD5 4b76dcd4c89fa4e7f1074c8423547c3c
BLAKE2b-256 cfb14aeb9055309b4137197da822185eb955a0e2c6d332879cbb393ade9197b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.4-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 4451ee9a305a73313a1558d471299f3130e4ecc10a88bf5742aa03fb37e042e6
MD5 8205e66ddff76072d516b022838de7b4
BLAKE2b-256 fc96f65656f1d6956cab3034812b120e5ea727aff253372f35399660939d7825

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