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

Uploaded Source

Built Distributions

fastavro-1.9.0-cp312-cp312-win_amd64.whl (483.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

fastavro-1.9.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.9.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.9.0-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.0-cp311-cp311-win_amd64.whl (497.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

fastavro-1.9.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.9.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.9.0-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.0-cp310-cp310-win_amd64.whl (495.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

fastavro-1.9.0-cp310-cp310-musllinux_1_1_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

fastavro-1.9.0-cp310-cp310-musllinux_1_1_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

fastavro-1.9.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.9.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.9.0-cp310-cp310-macosx_11_0_x86_64.whl (589.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ x86-64

fastavro-1.9.0-cp39-cp39-win_amd64.whl (544.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

fastavro-1.9.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.9.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.9.0-cp39-cp39-macosx_11_0_x86_64.whl (589.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ x86-64

fastavro-1.9.0-cp38-cp38-win_amd64.whl (548.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

fastavro-1.9.0-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.0-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.0-cp38-cp38-macosx_11_0_x86_64.whl (590.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ x86-64

File details

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

File metadata

  • Download URL: fastavro-1.9.0.tar.gz
  • Upload date:
  • Size: 976.2 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.0.tar.gz
Algorithm Hash digest
SHA256 71aad82b17442dc41223f8351b9f28a60dd877a8e5a7525eaf6342f45f6d23e1
MD5 83583008f972a2b9f3d2d32096e17e83
BLAKE2b-256 9d64b23f1042d88660dd19ef99803c35bcdd5e14dcf3a509d6d57f3ed6a40342

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 483.5 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 718e5df505029269e7a80afdd7e5f196d24f1473ad47eea41061ce630609f80e
MD5 2a85465ae7c7acdae687714caca7db49
BLAKE2b-256 d2a5d2426470125deb106db3e46007b51489e9d94ffa251c1ca2b8b83a34d9a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a0d2570052b4e2d7b46bec4cd74c8b12d8e21cd151f5bfc837da990cb62385c5
MD5 b0aecda5b223fb577fc34fac32597554
BLAKE2b-256 72bafc38b6bf4ba0becc4cf8ddd93a88558062a7327c84de6a23aaae79d0217e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cc3b2de071e4d6de19974ffd328e63f7c85de2348d614222238fda2b35578b63
MD5 300b4983f6974ea039040c3903f40d99
BLAKE2b-256 3e97aa7665de11fdb7d231093d3ba90996cbf0084b55d54419a597eb3f7e767f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f45dfc29de276b509c8dbbfa6076ba6562be055c877928d4ffa1cf35b8ec59dc
MD5 34dcbe60ac4c129e9f941623c62127c0
BLAKE2b-256 193e36d532eb3a067865c4ec7f59adcbe4af50096cbfd643220c12b9bbdd0377

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8629d4367373db7d195672834c59c86e2642172bbebd5ec6d83797b39ac4ef01
MD5 e7741dee929d8e0e817e6cdad1891a99
BLAKE2b-256 a576c16e9419fda31dbc8a0bf40240c9ccc1a47217cc01638902cd3392a11e7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1cea6c2508dfb06d65cddb5b90bd6a79d3e481f1d80adc5f6ce6e3dacb4a8773
MD5 3843f0e1694d6525d65e3a29941655f1
BLAKE2b-256 37300551160a3a8a233d9fd00674536337dd9bf803ebbb3ab722d22dbbd45150

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 497.5 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 602492ea0c458020cd19138ff2b9e97aa187ae01c290183dd9bbb7ff2d2e83c4
MD5 f5fe95170b420069b825eebbc24979b8
BLAKE2b-256 1cd5d8a47ac699fcdd83c2d54d095183a715170ce56162d67e451c6d61bf7565

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b3704847d79377a5b4252ccf6d3a391497cdb8f57017cde2613f92f5274d6261
MD5 cdec2b246fc8fd093f865d8e00bc925c
BLAKE2b-256 fd2942e84ffde92cec29d0d83073a84739f38d03b36d5be0a531f86ad32efb2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 83402b450f718b690ebd88f1df2ea70609f1192bed1498308d29ac737e992391
MD5 604ad9ed1a8664685e018825add90a86
BLAKE2b-256 3d2438a38577bbd6f9c4e825d97aec0d9204f8a69afad3948fab74bf684c4a11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07dee19dcc2797a8cb1b410d9e65febb55af2a18d9a7b85465b039d4276b9a29
MD5 02c7c6dd8e2f5c793e86c89ea05cfd3a
BLAKE2b-256 ba479b0fd7881a0be92e4927033b88eb809ce5a224aafc1ecf4753c371491459

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 172d6d5c186ba51ec6eaa98eaaadc8e859b5a56862ae724413424a858619da7f
MD5 4551f20e51672918b8d4733412278509
BLAKE2b-256 af3d57bea9f07081aa6ff34d19f945acfa2a7ab587be72c8bc3249ce1be8558c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0f044b71d8b0ba6bbd6166be6836c3caeadd26eeaabee70b6ac7c6a9b884f6bf
MD5 4347869c00e5e64b40761acc3c4766e0
BLAKE2b-256 59e8fa1a508bf0bb43c75b7e7f1f1c415b65edc124d2dc49edcc9a809c759ca1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 495.3 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d694bb1c2b20f1703bcb698a74f58f0f503eda8f49cb6d46209c8f3715098348
MD5 a366235e1fc932ed7aabcf2c8edcae05
BLAKE2b-256 2733af5baf8a7e9c37e68d5676781a51787426f8c0d7ddb0993125d3931191e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 228e7c525ff15a9f21f1adb2097ec87888933ef5c8a682c2f1d5d83796e4dd42
MD5 5d6919effd9d54f464fa419f7c2a9ce8
BLAKE2b-256 043f28638956ce05b4523a9cdd16dd4cb9624540ed4755918c052d9f8f7b8fee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 35a32f5d33f91fcb7e8daf7afc82a75c8d7c774cf4d93937b2ad487d28f3f707
MD5 75d324fb73c31ff83f08d33d56021dd5
BLAKE2b-256 14175c7589f6053b35a3acf0cbfbdc9587c4f454c2295202043c1fa3d3d1e41b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c251e7122b436458b8e1151c0613d6dac2b5edb6acbbc35de3b4c5f6ebb80b7
MD5 39534b7c1f7b5afd59d8e70b2f99df24
BLAKE2b-256 7b28091c86dd278b223be373bd71bb2f52a1918c37e3c6bd4eff62662c382cf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ff7ac97cfe07ad90fdcca3ea90b14461ba8831bc45f02e13440b6c634f291c8
MD5 8bec2aba9e038efb276c681a2001b4f9
BLAKE2b-256 7222f42ff731d11cb1bbddae3bd7d05b45f2eebf492f561a17f4f8e14ff1c5ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 00826f295f290ba95f1f68d5c36970b4db7f9245a1b1a33dd9d464a382733894
MD5 035910455f0e259bcd925a29fe538fea
BLAKE2b-256 b09f25d45a4ff7d953b73180a73a0ed47104b153d92cdb02c763dd1ecd76dfd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 544.9 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0c046ed9759d1100df59dc18452901253cff5a37d9e8e8701d0102116c3202cb
MD5 a4344eee7e972ef7f873effc0f16fe0b
BLAKE2b-256 d39a1ea0678bafa639a3498ef223a126e95f634b084db827a52222345d7a6803

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 215f40921d3f1f229cea89af25533e7be3fde16dd85c55436c15fb1ad067b486
MD5 f83ab3ff2d5c13a173b17e86da614163
BLAKE2b-256 06b4e77a7b2e067a030a998ab28a357bb320ba7d7e2370c1d7c5e4419b8a4e47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 52e7df50431c21543682afd0ca95c40569c49e4c4599dcb78343f7c24fda6145
MD5 193a6b54992fd32a7bce3fe4c83f90db
BLAKE2b-256 04bf0b668f36467ce5b2468c2dc43456b7e906fe39f78ce0507e776a8d595f16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44fc998387271d57d0e3b29c30049ba903d2aead9471b12c20725284d60dd57e
MD5 8d8d459a6bb588d2d61342d606339876
BLAKE2b-256 89493bbd9e2acebb886a5d6f9f521b3fe5edea7dc6eb42328899b620fecaeedf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00361ea6d5a46813f3758511153fed9698308cae175500ff62562893d3570156
MD5 2be3664713408c2f5b52f5863ab15cea
BLAKE2b-256 a83503423e7e5ae20a85c31270fcb1937b7403024a728147a7da8afd7787cd99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f803c33f4fd4e3bfc17bbdbf3c036fbcb92a1f8e6bd19a035800518479ce6b36
MD5 28f80ba08316a9420bfbdf279de5e99c
BLAKE2b-256 f060a7e1bf060f03c3ea3b1531a94254e7dd721c7f43dca4e71f6c58fd76b0d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.9.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 548.5 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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3d4a71d39760de455dbe0b2121ea1bbd85fc851e8bab2970d9e9d6d8825277d2
MD5 cc1ed6c04d78869905c784e54a7f57f9
BLAKE2b-256 0caad391137b866753fca7a689590b2ce6e641ed5171bdff5f86c7d5f57fa702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 48d9214982c0c0f29e583df11781dc6884e8f3f3336b97991c6e7587f509a02b
MD5 e40bfa85269fd5d99dc11b3467bbe5ae
BLAKE2b-256 57bf657fb7d63e80783c99b86da97f2910a8ccbf312cdf7c80d45008380e90c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 db30121ce34f5a0a4c368504a5e2df05449382e8d4918c0b43058ffb1d31d723
MD5 8481ca6f43d5b9edd4671a7944e06e28
BLAKE2b-256 396e1910c07b00feba63010e3eddea1771e9aec799c0d2232bbe998c48bdb5c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5af71895a01618c98ae7c563ee75b18f721d8a66324d66613bd2fcd8b2f8ac9
MD5 81154b009210c44d0cd8e79c0de068c9
BLAKE2b-256 f1b40fb3f8f6e3d57f2bce9199e5e823d9b995bc99ef4f480851e458f4a60d99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb7e3a058a169d2c8bd19dfcbc7ae14c879750ce49fbaf3c436af683991f7eae
MD5 11d16708b95b248cb66351dfb18a00cb
BLAKE2b-256 340e89821225e9b4543e4ebb7932ded0c603f5f059beddb43f2a5b5544acb09d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.9.0-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 6cebcc09c932931e3084c96fe2c666c9cfc8c4043520651fbfeb58575edeb7da
MD5 ba4c8fffd297da849864b2d5e8580bd1
BLAKE2b-256 30a7027adf1a3c9554803461cceee261b28b0f0c35dfc98bf3b9863ae786cbd4

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