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.9
  • Python 3.10
  • Python 3.11
  • Python 3.12
  • Python 3.13
  • 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.10.0.tar.gz (988.0 kB view details)

Uploaded Source

Built Distributions

fastavro-1.10.0-cp313-cp313-win_amd64.whl (484.0 kB view details)

Uploaded CPython 3.13 Windows x86-64

fastavro-1.10.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

fastavro-1.10.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

fastavro-1.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

fastavro-1.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

fastavro-1.10.0-cp313-cp313-macosx_10_13_universal2.whl (1.0 MB view details)

Uploaded CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)

fastavro-1.10.0-cp312-cp312-win_amd64.whl (487.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

fastavro-1.10.0-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.10.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

fastavro-1.10.0-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.10.0-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.10.0-cp312-cp312-macosx_10_13_universal2.whl (1.0 MB view details)

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

fastavro-1.10.0-cp311-cp311-win_amd64.whl (499.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

fastavro-1.10.0-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.10.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

fastavro-1.10.0-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.10.0-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.10.0-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.10.0-cp310-cp310-win_amd64.whl (497.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

fastavro-1.10.0-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.10.0-cp310-cp310-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

fastavro-1.10.0-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.10.0-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.10.0-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.10.0-cp39-cp39-win_amd64.whl (546.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

fastavro-1.10.0-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.10.0-cp39-cp39-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

fastavro-1.10.0-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.10.0-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.10.0-cp39-cp39-macosx_10_9_universal2.whl (1.0 MB view details)

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

File details

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

File metadata

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

File hashes

Hashes for fastavro-1.10.0.tar.gz
Algorithm Hash digest
SHA256 47bf41ac6d52cdfe4a3da88c75a802321321b37b663a900d12765101a5d6886f
MD5 67eb648118a83026c74278ed6d959c1e
BLAKE2b-256 f3677121d2221e998706cac00fa779ec44c1c943cb65e8a7ed1bd57d78d93f2c

See more details on using hashes here.

File details

Details for the file fastavro-1.10.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for fastavro-1.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 86baf8c9740ab570d0d4d18517da71626fe9be4d1142bea684db52bd5adb078f
MD5 35cb244e950109218369bd7cb8353263
BLAKE2b-256 1f2c43927e22a2d57587b3aa09765098a6d833246b672d34c10c5f135414745a

See more details on using hashes here.

File details

Details for the file fastavro-1.10.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.10.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e62d04c65461b30ac6d314e4197ad666371e97ae8cb2c16f971d802f6c7f514
MD5 7cc1a5ac4d18181cfcfa53c66c1479f1
BLAKE2b-256 471cb2b2ce2bf866a248ae23e96a87b3b8369427ff79be9112073039bee1d245

See more details on using hashes here.

File details

Details for the file fastavro-1.10.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.10.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b8227497f71565270f9249fc9af32a93644ca683a0167cfe66d203845c3a038
MD5 55b1f3763f2b572af23cce28294733f3
BLAKE2b-256 534da6c25f3166328f8306ec2e6be1123ed78a55b8ab774a43a661124508881f

See more details on using hashes here.

File details

Details for the file fastavro-1.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e400d2e55d068404d9fea7c5021f8b999c6f9d9afa1d1f3652ec92c105ffcbdd
MD5 5624eb940565f25a2e52d4026c10da20
BLAKE2b-256 a7bf08bcf65cfb7feb0e5b1329fafeb4a9b95b7b5ec723ba58c7dbd0d04ded34

See more details on using hashes here.

File details

Details for the file fastavro-1.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 566c193109ff0ff84f1072a165b7106c4f96050078a4e6ac7391f81ca1ef3efa
MD5 4df0d126f07d92c686548c4a7f514c5a
BLAKE2b-256 3801a24598f5f31b8582a92fe9c41bf91caeed50d5b5eaa7576e6f8b23cb488d

See more details on using hashes here.

File details

Details for the file fastavro-1.10.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for fastavro-1.10.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 82263af0adfddb39c85f9517d736e1e940fe506dfcc35bc9ab9f85e0fa9236d8
MD5 eaabde7da79396689ca74558b5b996b1
BLAKE2b-256 c9c4163cf154cc694c2dccc70cd6796db6214ac668a1260bf0310401dad188dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 567ff515f2a5d26d9674b31c95477f3e6022ec206124c62169bc2ffaf0889089
MD5 580bc0bf857db910d976601294d29377
BLAKE2b-256 0ccecfd16546c04ebbca1be80873b533c788cec76f7bfac231bfac6786047572

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe471deb675ed2f01ee2aac958fbf8ebb13ea00fa4ce7f87e57710a0bc592208
MD5 cbd97dadbad1204f36e70e08fe16f6e6
BLAKE2b-256 4ebc2f6c92c06c5363372abe828bccdd95762f2c1983b261509f94189c38c8a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6575be7f2b5f94023b5a4e766b0251924945ad55e9a96672dc523656d17fe251
MD5 e2913101857e9d87f24fc13e6d7c5aab
BLAKE2b-256 2e4026e56696b9696ab4fbba25a96b8037ca3f9fd8a8cc55b4b36400ef023e49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 203c17d44cadde76e8eecb30f2d1b4f33eb478877552d71f049265dc6f2ecd10
MD5 ae19529747d7cbe4dbc1584b5a234b8f
BLAKE2b-256 a7ba1766e2d7d95df2e95e9e9a089dc7a537c0616720b053a111a918fa7ee6b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74e517440c824cb65fb29d3e3903a9406f4d7c75490cef47e55c4c82cdc66270
MD5 50efcc94c7c094f231e6c8c8e4916b50
BLAKE2b-256 1e01aa219e2b33e5873d27b867ec0fad9f35f23d461114e1135a7e46c06786d2

See more details on using hashes here.

File details

Details for the file fastavro-1.10.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for fastavro-1.10.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 cfe57cb0d72f304bd0dcc5a3208ca6a7363a9ae76f3073307d095c9d053b29d4
MD5 5aae33548920454a6755ac0b2bb1f1e6
BLAKE2b-256 9ca48e69c0a5cd121e5d476237de1bde5a7947f791ae45768ae52ed0d3ea8d18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4f949d463f9ac4221128a51e4e34e2562f401e5925adcadfd28637a73df6c2d8
MD5 43bf9ba684ed62d3d0b727ca793ef6e4
BLAKE2b-256 fd7f21711a9ec9937c84406e0773ba3fc6f8d66389a364da46618706f9c37d30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1fd689724760b17f69565d8a4e7785ed79becd451d1c99263c40cb2d6491f1d4
MD5 eaa1c05b4cfb9dc81b2db62843f61697
BLAKE2b-256 a1dc83d985f8212194e8283ebae86491fccde8710fd81d81ef8659e5373f4f1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67a597a5cfea4dddcf8b49eaf8c2b5ffee7fda15b578849185bc690ec0cd0d8f
MD5 5ae0838c46dadc9de190714f397667e5
BLAKE2b-256 76e33d9b0824e2e2da56e6a435a70a4db7ed801136daa451577a819bbedc6cf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a678153b5da1b024a32ec3f611b2e7afd24deac588cb51dd1b0019935191a6d
MD5 ff9c89bdd5707018a3f2b78c8f320210
BLAKE2b-256 c845dba0cc08cf42500dd0f1e552e0fefe1cd81c47099d99277828a1081cbd87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d7a95a2c0639bffd7c079b59e9a796bfc3a9acd78acff7088f7c54ade24e4a77
MD5 5aa7bee4db35a3365e38a7f499c9e317
BLAKE2b-256 3a9643a65881f061bc5ec6dcf39e59f639a7344e822d4caadae748d076aaf4d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d183c075f527ab695a27ae75f210d4a86bce660cda2f85ae84d5606efc15ef50
MD5 1e67f97e9f1070c03d65c04129cd131c
BLAKE2b-256 acbfe7e8e0f841e608dc6f78c746ef2d971fb1f6fe8a9a428d0731ef0abf8b59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 37203097ed11d0b8fd3c004904748777d730cafd26e278167ea602eebdef8eb2
MD5 a5a3e5bb30d9de74870ed2e9ea8505a3
BLAKE2b-256 6a1d7a54fac3f90f0dc120b92f244067976831e393789d3b78c08f2b035ccb19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e07abb6798e95dccecaec316265e35a018b523d1f3944ad396d0a93cb95e0a08
MD5 5a559d72d91a9d71d32c422dede2ab3e
BLAKE2b-256 1013d215411ff5d5de23d6ed62a31eb7f7fa53941681d86bcd5c6388a0918fc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf570d63be9155c3fdc415f60a49c171548334b70fff0679a184b69c29b6bc61
MD5 86f718584bc8a78b75aa86c77eb2270f
BLAKE2b-256 36317ede5629e66eeb71c234d17a799000e737fe0ffd71ef9e1d57a3510def46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 190e80dc7d77d03a6a8597a026146b32a0bbe45e3487ab4904dc8c1bebecb26d
MD5 0d956f0138bfba85214bcaafeb39d8ce
BLAKE2b-256 e1e37d9b019158498b45c383e696ba8733b01535337136e9402b0487afeb92b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86dd0410770e0c99363788f0584523709d85e57bb457372ec5c285a482c17fe6
MD5 4cc2b8cb8c0deb4041e58dc83193c829
BLAKE2b-256 6a413f120f72e65f0c80e9bc4f855ac1c9578c8c0e2cdac4d4d4da1f91ca73b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1a9fe0672d2caf0fe54e3be659b13de3cad25a267f2073d6f4b9f8862acc31eb
MD5 e0f426310bb4d90ebc0a53c9f362eb9e
BLAKE2b-256 0ce9f5813450d672f500c4794a39a7cfea99316cb63d5ea11f215e320ea5243b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.10.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 546.1 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.10.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 aaef147dc14dd2d7823246178fd06fc5e477460e070dc6d9e07dd8193a6bc93c
MD5 99893babc01c6e68b6de017938d16113
BLAKE2b-256 ebc1057b6ad6c3d0cb7ab5f23ac44a10cf6676c6c59155c40f40ac93f3c5960a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4dd10e0ed42982122d20cdf1a88aa50ee09e5a9cd9b39abdffb1aa4f5b76435
MD5 7e1136b7ca8bff8c832720f2219dbcf5
BLAKE2b-256 07981cabfe975493dbc829af7aa8739f86313a54577290b5ae4ea07501fa6a59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf38cecdd67ca9bd92e6e9ba34a30db6343e7a3bedf171753ee78f8bd9f8a670
MD5 02ff7fd10773120276c9aed689fc0a5c
BLAKE2b-256 5ccba1e043319fde2a8b87dff2e0d7751b9de55fca705e1dbb183c805f55fe73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca37a363b711202c6071a6d4787e68e15fa3ab108261058c4aae853c582339af
MD5 ce8dc48fbb9cb83691053e212572d20f
BLAKE2b-256 f87097cb9512be1179b77e1cf382ffbfb5f7fe601237024f8a69d8b44ba1b576

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0132f6b0b53f61a0a508a577f64beb5de1a5e068a9b4c0e1df6e3b66568eec4
MD5 74be8860069133788ef60e48b013aad3
BLAKE2b-256 64ce03f0bfd21ff2ebfc1520eb14101a3ecd9eda3da032ce966e5be3d724809c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.10.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5bccbb6f8e9e5b834cca964f0e6ebc27ebe65319d3940b0b397751a470f45612
MD5 151c0b44aed00536ef568d8e7da0cdac
BLAKE2b-256 4b434f294f748b252eeaf07d3540b5936e80622f92df649ea42022d404d6285c

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 Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page