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

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

Uploaded Source

Built Distributions

fastavro-1.9.6-cp312-cp312-win_amd64.whl (487.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

fastavro-1.9.6-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.6-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.6-cp312-cp312-macosx_10_9_universal2.whl (1.0 MB view details)

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

fastavro-1.9.6-cp311-cp311-win_amd64.whl (500.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

fastavro-1.9.6-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.6-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.6-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.9.6-cp310-cp310-win_amd64.whl (497.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

fastavro-1.9.6-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.6-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.6-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.9.6-cp39-cp39-win_amd64.whl (546.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

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

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

fastavro-1.9.6-cp38-cp38-win_amd64.whl (550.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastavro-1.9.6-cp38-cp38-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

fastavro-1.9.6-cp38-cp38-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

fastavro-1.9.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

fastavro-1.9.6-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.6-cp38-cp38-macosx_11_0_universal2.whl (1.0 MB view details)

Uploaded CPython 3.8 macOS 11.0+ universal2 (ARM64, x86-64)

File details

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

File metadata

  • Download URL: fastavro-1.9.6.tar.gz
  • Upload date:
  • Size: 987.7 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.6.tar.gz
Algorithm Hash digest
SHA256 6a4f2f188675837938df6178cba8495fed7e7713ac1072c434e10d903310e601
MD5 fcd2965fbd8b28f837dc85d23f83f9c6
BLAKE2b-256 6aafd09c04c6eac1ca316e1b89c9b840825fd493d2cc4c497d54be40f6b46579

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 487.7 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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b2b1b01057941f1a90ad11f0303de7a91195a077de16b15eb4d527a9d0119846
MD5 66b7689fc6e00daa73a50e0550dd4641
BLAKE2b-256 84dcd36106c6f292bde76ed76a638f54e5912aa974c1ef57c6e2ee32d57f1a09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ef7e14f310ca731735a5b0a124109d4345cf7f5b8beb7cc94fdf5712422d61b
MD5 af587610101b77b4945156468948e1d5
BLAKE2b-256 59e6686a14048eecba57499ed23a2d22e1b54dc6b4f44d4d87dcfad30aff1f54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 348d1851d6e5dcfc95d0a42b789000dd0bf36918c7a874e26ab777dce35b5caf
MD5 4407b1d266d5fc234e5dffc0c0002c04
BLAKE2b-256 010b1ca437605553fd268a55173f32b169bc6b5ee7a6b8b60c37fb234f4fef03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85d59ee968e708364231d3c77cd915e55cda303abdd85da21792e26846e274ee
MD5 b0283e17b04efc28c694b12f5de78b5a
BLAKE2b-256 1823c6a74d123e77e3b6fd12a9edd07cdc737c218193b490260e36c1d800540b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55ec99786e8643e5801578d88613c212cb64ac6db5c2fde108a7775f7f95b88b
MD5 128046f48d48db6a7179445f332ef64e
BLAKE2b-256 46404dc4d218ff057989097d095fbf3869b06133bdfbc83a744660eeecac0477

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bdd61070d6c85d784ab78a92e75b84ce9bae5ec0dcfa50def0c674499dc8372c
MD5 74d9a0979cec9cb5a1fa7b162999218f
BLAKE2b-256 ad18bde4df3dd1e6ac4278381a2f281106d6fc44c5b36de647551c74e37bdb93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 500.0 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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dceb28c7efdb103575eb6601eca6916f9465aab603f2b2e8c927461dc9f49d44
MD5 9056cd7bb8f55dfd479acfe65dc3e453
BLAKE2b-256 835801e934e31ee42f4c881cdd67a19a034d8b3669403097e804e112c4b5cf12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d687ddf5428bfca71912e083f42c4e2cbd151f2322b7224c1ce682c0d2c35dc3
MD5 2aba893690a32fd8ea0371482af0c8c8
BLAKE2b-256 b64db718c5ac034bfbb52b744af7b1005d8d41e6e5298ea8b480ce310dd794d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a91cdd249c0ce33a58bddf01cee546028f268136cdc38e3746436d1d1b39b7d
MD5 63e02676302e387011c6f49ea87ba995
BLAKE2b-256 2f3e2626ed98f208287afd2075dd5797541793d0c1ed7d0f8e7ad5c9f4fe1f0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 820d0bbbb56eca8a76194bb2ea2d04d2c137a2efb6b3ccea7a23f811f413d902
MD5 1f9042c64ac5a35ed758c2d520b8acb8
BLAKE2b-256 f4ff1cbac8174ffdb81aa243f463126f56ee6551a0ead093be5228adb4396243

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11af0363eb075474af982ac34369f7e577a0d150e5ec7c832665874550e31778
MD5 1865e63a70f6b50b0018236ddf25fe0d
BLAKE2b-256 3d63db5387e0dee1e44377c6082de68c603a097c9274e784161fb5621ef022cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e18782eaf8919b22c691203a2d9f26960e8f557fd6891a0ed506952ca49b91d5
MD5 4c817c0f59743a49ebe7e310104bd943
BLAKE2b-256 5708d2943ba58b70a2284cbb66f2f8caf23d2b4673c566b5d58bce775991490e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.6-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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 214c8f510dfd61cbc6c3f1c2f50bf547f14e012eff1d454a9c652877a8b281a9
MD5 cd76459ed42cd383dbcbbbd69eb470c4
BLAKE2b-256 6ac3a8f32c01e4fbb617eaf2dd5180ff5dd6360c0b7580cd3062c53c68858183

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b6f7f96ba1ddd5f5a906fcc699c669598a09e63f1b8049d2aa992fc552ee504
MD5 c9ca2fda16ee4d54f83be26adbb296cd
BLAKE2b-256 602372c854dfda82eec5f82dcef3628cadbc1f1bbbd8446c29e3046fb3594aad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b5537bc39322d536761d73587eb0030cafa48d95db99636a29d99e795802012c
MD5 7833607e132b657988001e6eb27d04ef
BLAKE2b-256 7561efe886006a4f642650fc4da3059088616fb18b0a434d4480f00f1e02b36b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94fd2f59289b5ec43b6484f2977722008e78beae65f200e9d6f235f680ca3899
MD5 497254f5b3dde52af2b58f24f40a2f52
BLAKE2b-256 3cd6e317f2f863d23375552538ce207fe1a322db462b747094cce580c96fe3f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 327d125ee63f86b94ee078e4d7792d2cd7336ad15a28cd5f557c7dd7946c911f
MD5 7fd987a406758cf3d875d9a89bcd6b1d
BLAKE2b-256 eb9fd8bddea384c7ece6fa82f0523b14ac7aa3ee5c0dd3c426dc01b0fd85d15e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c408b904be228dfa4811b69ec94757e0343028871821a2b7dc9b2efbdbbe1c29
MD5 102e2229d22b7d36a5136bde0af3fbed
BLAKE2b-256 d9e0e76a91a8b1d91540b34f24558b9e90b5077fbcf2637560e4dede3c8d0535

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.6-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.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f92bdae42862ba40095bf8a3a1f79ed309a3c49bac1c37a2c198045af11cb948
MD5 ec66f1cf6ff75faf5d3ce45a27218344
BLAKE2b-256 f52298fc567f976ba562e0fe54fcd167fdfc15b4d1f9356e44c2440a1a0919ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b9670133b1110a68dbd52ddfada1e2e07b60d04a05a157eab5dfea3bbf01736
MD5 8ca1d6f8d634beaebadb91e6f2ae3a3d
BLAKE2b-256 743cb5b830374f2bcaf045516147c2491c8befabc3c1b82a84aa6eaeb234c2ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ebd1e85ec4457d8ece2db57372226e6750b583b28183b2deca6c2cdc67994e1
MD5 f0bb85d7f1fefeda8d224f7462dcc283
BLAKE2b-256 aed954bef584ad3d22665e6f92a5a5c7fccd7f6f65e6ddc08b7cddaa66fdd169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60a46c41aac96b72af2fe0e5427ede1d7ee541324ada0202092cd83788ded98c
MD5 859912fd12b1aec68c616043e4d10319
BLAKE2b-256 60689283140513186d2cd549be33459c897395a67674ce7975dfcde6ee563cbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99ee8ff2a53bd6b94606cc07f93276bd6ce0dbb0a282ce0b0ad53c0d9adbad56
MD5 a42bc636dd0cc53c30414fb06934f12e
BLAKE2b-256 d03fc4d140837d97a1cbc7fd18957d5ce73d8538dbaf9b52aec1de0de45a32f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 27b2e9da851dba123e49bca5cbf7353acde537a1091c74e12527e3b75e954834
MD5 407dc361270112a4896fa866d6e762b0
BLAKE2b-256 72c282e2031125b8e617098c330e39ea57f338a1368248d471300a9fd4583012

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 550.2 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.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3ffe34f64a7b5d5c262f3d850f35a35b5332ba88716f6fde0cf173f717c8d21d
MD5 c70085f195c108bbe4ac4c3501fc31f3
BLAKE2b-256 c13f6e2d72f345c57bf25d1087c2cb2c34321192460ac0d0a13639a40437bdd9

See more details on using hashes here.

File details

Details for the file fastavro-1.9.6-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.9.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 253752f84a882cc8e1e1cb63b0f89a75f6e2fdf323920fcfa85fadcfefc67def
MD5 050193cb7bfef2104f68df43881a0584
BLAKE2b-256 680dce6f354a257bfbcf010110f4527c4a76180c4cd4b77345e2437f8575db0b

See more details on using hashes here.

File details

Details for the file fastavro-1.9.6-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.9.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49e258df7cd24713e79bd1433f646390168858b29dfca62154c9889838d7dabc
MD5 296d8d7fae49650654d25eab7b9aa7a7
BLAKE2b-256 0a60b8af0439df0f5bd1124cf61237aacbfbc25d224b60296527afd342a7e910

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33e560a78a4bf795addde52f7c481fb683b217b0f8fd38a8bec69c3ec93254bd
MD5 4ae0d6205da8895026759862d0f26933
BLAKE2b-256 d9943c0a92ec9b1464e1c27a94b6a71f38ecb2ddf3bccaa6ebb9ad7aa1056afa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ccb6dede9fc5a9ea46b1ed21c3ee91995829f9b16c9f6d18024158d00d3fdfd
MD5 93dafc6963ddb0c3817ee158f0b8cb7e
BLAKE2b-256 48bd4594909658636bdf5492b365186af01b4047ca9bfe8d1a83838f4f818e35

See more details on using hashes here.

File details

Details for the file fastavro-1.9.6-cp38-cp38-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for fastavro-1.9.6-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 9f966230ecf575d6e645cb503261de98f9403e59823cf59e76105f977a44741a
MD5 ff11d7e3de76f858099f0e1bb8a7467e
BLAKE2b-256 49f378ca29983d2daf34d219dd136535a1b2ee77ba5d083784c12b9a7edbf8e9

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