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

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

Uploaded Source

Built Distributions

fastavro-1.9.1-cp312-cp312-win_amd64.whl (486.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

fastavro-1.9.1-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.1-cp312-cp312-musllinux_1_1_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

fastavro-1.9.1-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.1-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.1-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.1-cp311-cp311-win_amd64.whl (498.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

fastavro-1.9.1-cp311-cp311-musllinux_1_1_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

fastavro-1.9.1-cp311-cp311-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

fastavro-1.9.1-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.1-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.1-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.1-cp310-cp310-win_amd64.whl (496.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

fastavro-1.9.1-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.1-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.1-cp310-cp310-macosx_11_0_x86_64.whl (589.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ x86-64

fastavro-1.9.1-cp39-cp39-win_amd64.whl (545.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

fastavro-1.9.1-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.1-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.1-cp39-cp39-macosx_11_0_x86_64.whl (590.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ x86-64

fastavro-1.9.1-cp38-cp38-win_amd64.whl (548.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

fastavro-1.9.1-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.1-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.1-cp38-cp38-macosx_11_0_x86_64.whl (590.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ x86-64

File details

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

File metadata

  • Download URL: fastavro-1.9.1.tar.gz
  • Upload date:
  • Size: 976.6 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.1.tar.gz
Algorithm Hash digest
SHA256 f37011d66de8ba81b26760db0478009a14c08ebfd34269b3390abfd4616b308f
MD5 862fbbf551d7ac06695472cf3a2d68c2
BLAKE2b-256 0829008a1e50b064269a286aab7be465850fb56ab607c3320835c951aaac8bcb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastavro-1.9.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 486.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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 28886022b9c5e5175e44aa04ed10d733b7503028092e38e61ecafe006f839362
MD5 3be0b285b0a98ba003882b67f193ce00
BLAKE2b-256 e52c9fafd3d23e1e1c35a5a055e85486e6026097d6244acba5f09c63a923f7dc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e21c23b7d19df260244ae8fb4470ce27399dc1c0129fa523285e39d8ff7b5ef8
MD5 39fc8bed4298d1bd0132924c9152f09e
BLAKE2b-256 8fe1d61501df6016388aacd175c3fb764bbddae0db33bb40ca1e34063f35fa57

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2d52c69089f6ce7110665149ced29cb68f2f1cd6812b28ebb53b158b53e069f7
MD5 1c923d14acbd7b6a1df402a3aacabd1d
BLAKE2b-256 21010da4bd484f9cfc45d25f13a57bbdfa3b0e7e22f2c248a5bb9147099a2f53

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b5ebcf4ea3b50cfb80c7cd363e57daab8c2662b85de9ced838e32b5a46a106f
MD5 d84e78d7e0243af530555bce3b34882c
BLAKE2b-256 9b45fa91d6accf899c8d8883c6bc3afdedb59f6b8fce75f541e5c862888e64d2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16ebff73e08bc6437746e36a131f3a025d49b5867f5975bcc4a3e57cafcb3338
MD5 f997f3ca40fd95c0cc53c54fb235ba00
BLAKE2b-256 de6ec528f04c0e8ee2afe7f15988fab6cec08b926ef88b0f9342f67321a4ca43

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7ce88e5bc88d3d210dca99b69cffc6a7a0538815e86e806730cd79914ac9c17f
MD5 a7973c804a0cbdc72e0409febae0a701
BLAKE2b-256 fb527ccdd8ec76f2a26b7d143c3c65b26d77d299241f3c7d0b6d0c5d1a917aec

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastavro-1.9.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 498.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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 47f18c4f3f5a945c32d386402cf007f700433fd1b9b6af78eb35ee09a29ba8ad
MD5 456bcbf7ca5cdc6e0a5ae905bbd02ddd
BLAKE2b-256 8c73a68d7460a8fbc0d05773cf33a20be902f755b471d7d1716f15e1cc756957

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a06ae6b12b4dfe8fa6c84019a949b44067bf5d7fb051f7101a9093dc2c8c7631
MD5 ff13f596f1741e992294ca45b06c30c8
BLAKE2b-256 b2a3e7353d26f82265cdb91ea61f2dfb0f6f0b7d47414671c408c9321951f008

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 46e69d9fe30ccba8a1a22c2ed2e88deb4ae1ce42f47495f59bd1cac60c3f3e75
MD5 908a6cbf1a7fbe6e47b5a25bae4de26f
BLAKE2b-256 c8918c2ec5bb1ff0a0379783062bcbad37326cf557ff694bc7663b20346019d6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5a6d15fd3783165113b8292058f06c555fecb7b0bbc0dfd391dc6f320675157
MD5 110dc9099f85e75fedf24ecb96f03e45
BLAKE2b-256 9e6b44acd76f038c2200b97597e4293dd7ff7a7c27c53993fcaee4793103898c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d8037a800914acfd2d17894accfdd9ba96e316bce173e3ac2bc36c9d6f91adb
MD5 6676b420b14588d5ce38e85510eec623
BLAKE2b-256 de00aa5ce775e7a17d7798a7f2cfbfc43b13dbae9ea8931c1bc3e81a35e76e27

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cd00aa7a7e463538b3930b27ea98270af11de3a6436b658086802964ae53cfc7
MD5 600fe4656474a5bf18ae3ef766957f24
BLAKE2b-256 9099dade14b90b635250829003081078f823cf7729a9917d2463ff006fc0ce25

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastavro-1.9.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 496.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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b558a789b1a24be3b471a2d430a1583e4e18b09896a27ce80211d40c91d3895a
MD5 fa28543750e0e1993ebbd6b986c65ce4
BLAKE2b-256 341b848b8d6b88b81ce1052d1cac0ef001f048a39a96d1cdd413681332993548

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 47f66f8282f7b2b70d4edc1c1853c154a9db14693a20fc1fa78859eb091c6beb
MD5 3a018ecaf69aa6466d4c26dbee4d8183
BLAKE2b-256 ffdb97efef9d2c59a3c1b43d186ea5dce863b2daea6f18b4dac469599b38261e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 70df5a6428e5c60b08d92a3cf955d2c658e0460059654b0490c908d429bcf332
MD5 36cdd52a5d4c01f0880e8d14d3f675a0
BLAKE2b-256 c303f3592de78895f9967c8cce4e283bb8b99b3eebee0606440b7774fccf98d0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eee78b13e118468e6796a97857a02dd2a8076f2946c6ab992a25597ee60a8963
MD5 ece5bcd891c9df8ad43eb4b49767bfa6
BLAKE2b-256 f4d458b89eb184f2516c6b070327a5cba3147b20a48594ce1f4c1739333590c8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84616dae53581733aac1161685d35c269922cee79170d8a1f7dbc56c8e2c6a95
MD5 db40bc75e3df28a6631c2fd0c69ca8ab
BLAKE2b-256 b14ead0d585f4627cb34ad17deab2fbb5ae61055eba5e26f89da4a3a5d448b3b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 de181b2e67f1f42f0c15f87ff530dda88cfe2efc91653b6d38d0aaf4c8800bbf
MD5 5c90ccbfac014ec1a0eed45bb1fa95c9
BLAKE2b-256 908f4465dda97f1ba57584890ee82f209e3b0c4b8536405abea484b1c30d3223

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastavro-1.9.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 545.0 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 abfef36fdd2cdbf3b7e7551f6506b908f24e241eebc2ab14e7ff6862679fd1ef
MD5 ea2942f16d456f5327d543ac6d14bb9f
BLAKE2b-256 dd94ebd9b9914e52e396a3b4e1015315a2696d31c4fcece51f55fc779f8e5959

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0b9e9cb05500ed8578ce614a5df4b2b525ded2674320725d405435925addd446
MD5 20931f6135ada0594737fdeeaecd481a
BLAKE2b-256 277a36e6fad2a72611cdfb58292c02656085c44dc55ab87305cd6ce15868ebde

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9a9a7213d80eb5e47ffb471c089cfbc19ec5b2390b75f6ef2e09e8678c0f7aeb
MD5 aab867fa9bda843efc80c014cb5cff98
BLAKE2b-256 882b30a32b0df50d44d292b03d54edf5b34ff8fc8c85e79933cd4e5dc8fcb504

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b786f872d5caa34b8c18f2ed73efd99b8b8e1c404342a4242cf3ad7344bdd46c
MD5 319ea3559873a6be42fe5fa00ab00372
BLAKE2b-256 9576b803d811333084563cd61d57f7123de974b8c70f630c2208dce98b14ae06

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8dc30d9fa7592b0a652911466a7898547277e7f054e23f95fc5d0e8b88788174
MD5 f3386fb703bbecfc42783e11e584988f
BLAKE2b-256 001505558360b13d64021ceb3a8753201f6207bcfa073796fcca77fafcce0ced

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 0533a430aafe75bc02fe66391361a5f374f08375a89ec93365cb15c016e7f911
MD5 869be036d42d6d302a1cf39530bf3a53
BLAKE2b-256 1810c2c453d0fcb220af176644f3aa961b5b603b3be5cffa0ba941e110fa09a4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: fastavro-1.9.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 548.6 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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b0265fbec0a268baadf3482eb92d0a4f644f68f8dc266a19a0440b7a28987564
MD5 8ebef927712ed2bb7ffd9c961ab28828
BLAKE2b-256 601da1cc892ad9632863faa757c188464cee20ebe64c76668f1a6935bc57dbbb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a9f549ee83ae4df5bc952552caad2011272d20a9fb0cddd50ff3fa1edd8d11a9
MD5 61c689f1c0a26ed975765f8124f63705
BLAKE2b-256 4e094e1a89f9d53682122ddfc6074cd564b1f5bb5fd4c6592df3a44b960f2c53

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 13ae31bb1b9ee69109e4032946d94ab92c1f1c49194917e64bb7f5923ba4f8fd
MD5 a3badf383e8d31bba952ac85b3c3b31d
BLAKE2b-256 f6391ca6cd59a7c78ec85eefb7e36389882e119a0871051a07cfa0b9d8d31ea0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ff2184d82788ff6d986372e72add561700ccdedea13b649593604d078dbf674
MD5 c39d3f12b54db3cdb14fa0e1e91ba3c0
BLAKE2b-256 19d0966570f18596511a628dc236032e110c1bdb12558e07e5e06f11f9c0eca7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9b1edaebef41500028b6bfbef1a46dc2e5b23f8a5dbde8d8c087b290572e5d2
MD5 457c0af26e3ceec6093e7ae189fa0aac
BLAKE2b-256 c846158c0d092d2c9321fd977985424159b8f774c8aa42f2be7bb33b9b5c07f0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.1-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 dfdfb3706646397f1c71e6652c9ca23ed29698c5f1bd20f32903589d3ae62219
MD5 96935fe7d8d3846d2db17532ad2f072c
BLAKE2b-256 9bb5df4376c9102c6c553fafd198ed37a97f6a3a802bac6d4658b643bc7d19fd

See more details on using hashes here.

Provenance

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