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

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

Uploaded Source

Built Distributions

fastavro-1.9.3-cp312-cp312-win_amd64.whl (487.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

fastavro-1.9.3-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.3-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.3-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.3-cp311-cp311-win_amd64.whl (499.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

fastavro-1.9.3-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.3-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.3-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.3-cp310-cp310-win_amd64.whl (497.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

fastavro-1.9.3-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.3-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.3-cp310-cp310-macosx_11_0_x86_64.whl (590.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

fastavro-1.9.3-cp39-cp39-musllinux_1_1_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

fastavro-1.9.3-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.3-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.3-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.3-cp38-cp38-win_amd64.whl (549.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

fastavro-1.9.3-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.3-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.3-cp38-cp38-macosx_11_0_x86_64.whl (591.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ x86-64

File details

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

File metadata

  • Download URL: fastavro-1.9.3.tar.gz
  • Upload date:
  • Size: 985.5 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.3.tar.gz
Algorithm Hash digest
SHA256 a30d3d2353f6d3b4f6dcd6a97ae937b3775faddd63f5856fe11ba3b0dbb1756a
MD5 c623398e2f89e3c7381438adef068f0c
BLAKE2b-256 b046397429bb5dee5b765aff69cd53d0351b26df8b193c9aa8669044573baf27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 487.1 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 033c15e8ed02f80f01d58be1cd880b09fd444faf277263d563a727711d47a98a
MD5 73dd0b3a72c1e04ef217d55a431ed41f
BLAKE2b-256 ab6c7bf7673a464edf8eaeda5e603fceb2f758792f27d631814cc1df0ec082ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 967edefab470987c024cd5a1fcd04744a50a91e740c7bdf325181043a47f1083
MD5 dce185947b1b7b16527cfc06c7eb1b43
BLAKE2b-256 e5d04694fc4b8fb0b42d6c4314dd6e2323fb5914863f94d53ba11b292a9e846e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a509b34c9af71a109c633631ac2f6d2209830e13200d0048f7e9c057fd563f8f
MD5 32b88dad2d5649481dfeafbe2900c58a
BLAKE2b-256 aacee446650f35542ebb816425f0553950f54e17be97aebac885185d1fc4d278

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 338c7ec94dd2474c4679e44d2560a1922cb6fa99acbb7b18957264baf8eadfc7
MD5 08b9d0d5f931363902bf240e6160c120
BLAKE2b-256 4fcf1c6c452c190e2a2c768bd61d5531f9690a0d33afc42e3df23ca9ea969922

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b8c96d81f0115633489d7f1133a03832922629a61ca81c1d47b482ddcda3b94
MD5 bd5bb197f6861e50d0b4350d129962b0
BLAKE2b-256 e6f5f10df65e36dc18a2df30141570dab16a2a412e5b2228685d552174154a25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6b665efe442061df8d9608c2fb692847df85d52ad825b776c441802f0dfa6571
MD5 253d89811a6eac44ac17664d3e42405c
BLAKE2b-256 bd83acf9f60fa785852b8acf9fa9848c68d5f5fd8f27a433ce54a45c15778449

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 499.3 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e502579da4a51c5630eadbd811a1b3d262d6e783bf19998cfb33d2ea0cf6f516
MD5 14ebb736a82163a3f190147a1cd06f17
BLAKE2b-256 b61a79777ffce907e1bc50365c22f2090cf5cdfbd36394c5c1bafb73ab250c31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8807046edc78f50b3ea5f55f6a534c87b2a13538e7c56fec3532ef802bcae333
MD5 90db6874de2978049837b1653cb3a5d7
BLAKE2b-256 07ae2fcef7eae3f002aea5c5f6e6487e1c1b03421d337b301e4c16df7b67a586

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 63d6f928840f3fb1f2e1fe20bc8b7d0e1a51ba4bb0e554ecb837a669fba31288
MD5 8487ee462cae7c23b136c829f1d43c5d
BLAKE2b-256 119569659caa715e1fa45cd700a3b4be3b0b00050d4a13acf6d3dfb25cd71964

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5a279cda25d876e6f120950cadf184a307fd8998f9a22a90bb62e6749f88d1e
MD5 172e9c538e390633f8b0040d5d0aed73
BLAKE2b-256 116699df69f74a4054e287ac7ba11caee92ae91d58276571bc726a4ec5b9a1b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 853e01f13534d1baa0a3d493a8573e665e93ffa35b4bf1d125e21764d343af8e
MD5 a4d266491640d906b6de8b5b352a3b15
BLAKE2b-256 b218fe640a15021f88a1064023bc742cfefa673978e5bc4ed475d13018298396

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2a7053ed10194ec53754f5337b57b3273a74b48505edcd6edb79fe3c4cd259c0
MD5 1cfc4dbfaad51e603af2bf9a00e48647
BLAKE2b-256 505aa4ab64dd38f4098014b5e074bb7c47d6303b1e394e0b43f4af29fbddf1ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 497.1 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a435f7edd7c5b52cee3f23ca950cd9373ab35cf2aa3d269b3d6aca7e2fc1372c
MD5 d4133001325272bf998e37993d82fc61
BLAKE2b-256 bf7aa8287ece522cefdbad885b84cb4d05312bb6193525208b1bd95e6309fe14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d80f2e20199140eb8c036b4393e9bc9eff325543311b958c72318999499d4279
MD5 f119064720f19e6497855781de341bc8
BLAKE2b-256 4d470e898de0be94f40d89f3d4b77984a7536cb6c9c20cdf162852f4b8bc0eae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4a36cfc0421ed7576ecb1c22de7bd1dedcce62aebbffcc597379d59171e5d76e
MD5 a3229f00d683c29a504d918351c237ce
BLAKE2b-256 1ef5822c2cf656016ee477cdf368e61573009b0676d1824b9fe74f195f452750

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 280ef7ab7232ecb2097038d6842416ec717d0e1c314b80ff245f85201f3396a4
MD5 1988ddaecbce0fb09317811310786b22
BLAKE2b-256 1be258e42cd1337010ce7139363151583a83cff4739333fea212980248640e87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4ef82f86ae276309abc0072598474b6be68105a0b28f8d7cc0398d1d353d7de
MD5 bdf2e33121dd7cbe3feff8ada0d2c6df
BLAKE2b-256 0001024952325e1fec5f541dcb573c7a398f86147c5c35a0dacd1c8603511c09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 5e9b2e1427fb84c0754bc34923d10cabcf2ed23230201208a1371ab7b6027674
MD5 15125ae5a5a96d8a930e81395becf8ed
BLAKE2b-256 25b829db1e18b09bd6da96fd89d9192f6176b4b8311d8277f044547606837277

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.3-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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d021bbc135023194688e88a7431fb0b5e3ce20e27153bf258f2ce08ee1a0106b
MD5 19f7390ee1d7a39deed23b407bae0f3c
BLAKE2b-256 f68ec61bd28dc5ce8dfee69e5693b245782565b182546ddf65f7f6820bdd0d72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 00698e60db58a2d52cb709df882d451fb7664ebb2f8cb37d9171697e060dc767
MD5 c2a12646810bdf5ba206c7d5a1f58d7d
BLAKE2b-256 680da90e71e7af7a15626e517d7b3d5354fb127682a7f4b75d25f970f2e38c66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d98d5a08063f5b6d7ac5016a0dfe0698b50d9987cb74686f7dfa8288b7b09e0b
MD5 84ef9b5c0362a7fc10149a18982fb2b6
BLAKE2b-256 75616bb46bfa70aac4f0f18b87536b4d2aef96af4f47bce685ed39126bc4fde5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f756f0723f3bd97db20437d0a8e45712839e6ccd7c82f4d82469533be48b4c7
MD5 401da44938c9cbcc98f6b5a0744c928d
BLAKE2b-256 f8967549bc8f1af4adf1c9ef35660086ec56b1955df463d76bf034b2604c1aae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b46a18ebed61573b0823c28eda2716485d283258a83659c7fe6ad3aaeacfed4
MD5 aa05c13fa882596b8ab4aa9e6b0c2e10
BLAKE2b-256 c1805b7c4d9c6a8b68d1aa9de4da8ad8ff40831259a88bd6bcb74cca6a49a000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 0a57cdd4edaee36d4216faf801ebc7f53f45e4e1518bdd9832d6f6f1d6e2d88f
MD5 69931ededd7dfc70c07782097a642ace
BLAKE2b-256 99e92197af95c83340a7c1e6129bac5f4db84c9aca48cca9503c14492ae1f61c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 549.9 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.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 652072e0f455ca19a1ee502b527e603389783657c130d81f89df66775979d6f5
MD5 6f5ef78dd9c2953706c932cd6d9483be
BLAKE2b-256 a7f5a03218a34645c9aba6b90296b765972ce895564583076796cf0bbb1fedf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2aa0111e7ebd076d2a094862bbdf8ea175cebba148fcce6c89ff46b625e334b4
MD5 b9c89b1bc3052d6ef956cbc8389a2965
BLAKE2b-256 e960dc52b14e9f568a40b3296f73b0c6b9e3f1afd3793862c370942883c24023

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c562fcf8f5091a2446aafd0c2a0da590c24e0b53527a0100d33908e32f20eea8
MD5 c720bffc06712aa3f002f4b72a92f1ac
BLAKE2b-256 f1dfe013b792c6141dfa7cf736ae6069aa4a61763935e1fb13ec486c342801a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87ab312b8baf0e61ee717878d390022ee1b713d70b244d69efbf3325680f9749
MD5 0220bd07ed10582d38928119c66a59b4
BLAKE2b-256 ba09ae347323cc0bfae01505970e0a9b41ef4b81e503fe6387ae6665ea33be49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 046d75c4400941fd08f0a6855a34ae63bf02ea01f366b5b749942abe10640056
MD5 919d5bac5a8d5205c56334e35e4e6ad0
BLAKE2b-256 c1332433db532981db690735cf8aba4d786b84adf1801ce69ba1d97f44f2dd10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.3-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 6b38723327603d77080aec56628e13a739415f8596ca0cc41a905615977c6d6b
MD5 b283c90f0d83114d9e45baa121248441
BLAKE2b-256 4be807c5aefa77ec83c535feaecbce4f6dbbe2f845b3bb9efc1aa62d3d79c11c

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