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.7
  • Python 3.8
  • Python 3.9
  • Python 3.10
  • Python 3.11
  • 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.7.4

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

Uploaded Source

Built Distributions

fastavro-1.7.4-cp311-cp311-win_amd64.whl (407.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

fastavro-1.7.4-cp311-cp311-musllinux_1_1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

fastavro-1.7.4-cp311-cp311-musllinux_1_1_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

fastavro-1.7.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

fastavro-1.7.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

fastavro-1.7.4-cp311-cp311-macosx_10_9_universal2.whl (917.5 kB view details)

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

fastavro-1.7.4-cp310-cp310-win_amd64.whl (409.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

fastavro-1.7.4-cp310-cp310-musllinux_1_1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

fastavro-1.7.4-cp310-cp310-musllinux_1_1_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

fastavro-1.7.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

fastavro-1.7.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

fastavro-1.7.4-cp310-cp310-macosx_11_0_x86_64.whl (519.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ x86-64

fastavro-1.7.4-cp39-cp39-win_amd64.whl (457.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

fastavro-1.7.4-cp39-cp39-musllinux_1_1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

fastavro-1.7.4-cp39-cp39-musllinux_1_1_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

fastavro-1.7.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

fastavro-1.7.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

fastavro-1.7.4-cp39-cp39-macosx_11_0_x86_64.whl (530.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ x86-64

fastavro-1.7.4-cp38-cp38-win_amd64.whl (458.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastavro-1.7.4-cp38-cp38-musllinux_1_1_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

fastavro-1.7.4-cp38-cp38-musllinux_1_1_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

fastavro-1.7.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

fastavro-1.7.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

fastavro-1.7.4-cp38-cp38-macosx_10_15_x86_64.whl (526.6 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

fastavro-1.7.4-cp37-cp37m-win_amd64.whl (443.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

fastavro-1.7.4-cp37-cp37m-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

fastavro-1.7.4-cp37-cp37m-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

fastavro-1.7.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

fastavro-1.7.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

fastavro-1.7.4-cp37-cp37m-macosx_10_15_x86_64.whl (515.5 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

File details

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

File metadata

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

File hashes

Hashes for fastavro-1.7.4.tar.gz
Algorithm Hash digest
SHA256 6450f47ac4db95ec3a9e6434fec1f8a3c4c8c941de16205832ca8c67dd23d0d2
MD5 787ad71a24d3f38dc69d1228eb41fd8d
BLAKE2b-256 36419dcb98cfb0f5f1061e280a0268ac00c310fb4f0f7917f954c991e13e9c69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.7.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 407.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for fastavro-1.7.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8480ff444d9c7abd0bf121dd68656bd2115caca8ed28e71936eff348fde706e0
MD5 c767009344eca71638fa954c3d17f9b7
BLAKE2b-256 006fe314d26dfa2ce9e37b4099b1412f7212a1dfc45babcdae7b24d0aa5f1582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.7.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bad3dc279ed4ce747989259035cb3607f189ef7aff40339202f9321ca7f83d0b
MD5 222e9f56061f7c51ab13edb5ddfa5ac3
BLAKE2b-256 ab9752f171755b3a9d76015d4510fa1371cfb548214669093954939d288144c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.7.4-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f94d5168ec72f3cfcf2181df1c46ad240dc1fcf361717447d2c5237121b9df55
MD5 be704af3aac12d540d0d0ce693a0801d
BLAKE2b-256 33c4e41be585f5a0587486ba97f9558a8843c8a1dfd7bac7e9ac8cc93fd7379e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.7.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39b10d68c03371b79f461feca1c6c7e9d3f6aea2e9c7472b25cd749c57562aa1
MD5 268c42e28d971b0048ac52a1d00449b2
BLAKE2b-256 05749a10bda3e339170bd55f7e23613dee9e782c09972769540f128c0335fa5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.7.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec396e6ab6b272708c8b9a0142df01fff4c7a1f168050f292ab92fdaee0b0257
MD5 54832b891aa6a8dd349de0e0ee59fa70
BLAKE2b-256 fbd95207bf257c45346e18ab36cda0108911e26eea56053b49f3c9324fed32e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.7.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5542423f46bb7fc9699c467cbf151c2713aa6976ef14f4f5ec3532d80d0bb616
MD5 32c40fa5ada5d6dac4ba490615d4beac
BLAKE2b-256 fe59b01195e14c05ed5f99c046c56e5bf81bda2d43602c8f383766e1efbcb37c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.7.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 409.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for fastavro-1.7.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1d2040b2bf3dc1a75170ea44d1e7e09f84fb77f40ef2e6c6b9f2eaf710557083
MD5 c095f2f0b3b9ed7142a7d5cc0d8fe048
BLAKE2b-256 fc2f509f1dafeafee9a20dae63c5de6227f2ce81491c3d708cd98b3f1560375d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.7.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bb0a8b5016a99be4b8ce3550889a1bd968c0fb3f521bcfbae24210c6342aee0c
MD5 fc46956ee856450506f21018885239a4
BLAKE2b-256 0e2a25cec32892c0fda95725f66d11e4e52ab6c5387893aa467080e1828dcfc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.7.4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b2f0cb3f7795fcb0042e0bbbe51204c28338a455986d68409b26dcbde64dd69a
MD5 44483abab597a09fe4b0119289262f6f
BLAKE2b-256 7c1f0edfa098a3161fc96ce98d3c09fa48b55850ccf7d18302b38300decccaff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.7.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 727fdc1ddd12fcc6addab0b6df12ef999a6babe4b753db891f78aa2ee33edc77
MD5 a5d7cbbd298992bb4b5577f8edaeb8a9
BLAKE2b-256 c603353faaad3e4e99b7bd7ec81d106e6f2745d7816d49feb60f40f2ca8c2a46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.7.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4ec994faf64b743647f0027fcc56b01dc15d46c0e48fa15828277cb02dbdcd6
MD5 29d3567f44652a02958f27d5fbd1a207
BLAKE2b-256 d6e3931effe68748e5ae7e908791953f812787c97f5ae056d7179f2999b4ce42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.7.4-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 7568e621b94e061974b2a96d70670d09910e0a71482dd8610b153c07bd768497
MD5 8d5724f547630beef6e98bd5e13f4c8a
BLAKE2b-256 6614b7e42f92e34af72ce583cf25931a0848a8ff8d6b69a261f577958f8f7750

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.7.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 457.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for fastavro-1.7.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a7ea5565fe2c145e074ce9ba75fafd5479a86b34a8dbd00dd1835cf192290e14
MD5 f3d273752ee0070ebadfd8be04a55626
BLAKE2b-256 508d8cfa087328441dced4f3e9b0a0784943bf92818bb4b80176b09fde09c7e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.7.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 776511cecf2ea9da4edd0de5015c1562cd9063683cf94f79bc9e20bab8f06923
MD5 4fe9ce340dd76f62e0b505d206371cb1
BLAKE2b-256 ebdcaea3a0170e4a194f9c990617a10c02dd2134137bad0428acd267939c5961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.7.4-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b4077e17a2bab37af96e5ca52e61b6f2b85e4577e7a2903f6814642eb6a834f7
MD5 fb41e7df2205acd7e9f0f2aed31cf6b7
BLAKE2b-256 e2df26588236e2ad9473c6a2707d8c0e38da50579c1d2da1d32e13bf22cbc525

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.7.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f087c246afab8bac08d86ef21be87cbf4f3779348fb960c081863fc3d570412c
MD5 8ec75580dc494c11c9bf8c5b20327d20
BLAKE2b-256 8cc9e8c41d24647dde1f10a5d8aabf664ff02707cef6c43e98388e09871006a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.7.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b27dd08f2338a478185c6ba23308002f334642ce83a6aeaf8308271efef88062
MD5 ccf4b26b834f3e7db29fb55c03d5f9f1
BLAKE2b-256 8f7f82b34efd3cc66f0459a3cc714eafc620ae44d3521f4db76e030050efa4fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.7.4-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 8c8115bdb1c862354d9abd0ea23eab85793bbff139087f2607bd4b83e8ae07ab
MD5 d0a7b159fbde46c41bad011a8c0ae3a7
BLAKE2b-256 32a78dd7882c16c601a50a95b4cdf1decc4144edca9dc8444d0b90a5f09c56f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-1.7.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 458.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for fastavro-1.7.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b64e394c87cb99d0681727e1ae5d3633906a72abeab5ea0c692394aeb5a56607
MD5 5039bdba473e1f0cf0da5c1878c34e7c
BLAKE2b-256 b6cc59e980c240fbe0f3f4ca3c2699cdb345be8dae3ff48899c83a5a0d2d61ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.7.4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b244f3abc024fc043d6637284ba2ffee5a1291c08a0f361ea1af4d829f66f303
MD5 5e99cb375baf4cbb2d45b910448d1be7
BLAKE2b-256 726953cabad20ce853515ef10d880b341b3d8dbf0602bebf2275de543366331d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.7.4-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 aeca55c905ff4c667f2158564654a778918988811ae3eb28592767edcf5f5c4a
MD5 b9c634707439f4c1cd0f6c47f6b25889
BLAKE2b-256 6c816c88fede9d478d18a7e6acf31f5b7f3b5a9d3093adf5771ae712c171d455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.7.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f16bde6b5fb51e15233bfcee0378f48d4221201ba45e497a8063f6d216b7aad7
MD5 f76c1504987e2d229724ee2ab1ab9683
BLAKE2b-256 3965fe5fa936d8a69a334f92c3f435fc8ccec5a609aaa0b761f2092ebef90a38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastavro-1.7.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9211ec7a18a46a2aee01a2a979fd79f05f36b11fdb1bc469c9d9fd8cec32579
MD5 6e95a95eca3b02a91ae4e8f01b6c1b5e
BLAKE2b-256 6b9cbb3e5b082547e8325622899bdb2db78dfa4042d8f0761d473143ad6f17bd

See more details on using hashes here.

File details

Details for the file fastavro-1.7.4-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.7.4-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0cca15e1a1f829e40524004342e425acfb594cefbd3388b0a5d13542750623ac
MD5 65e89ac0bae92457a7e265b30a4ec5aa
BLAKE2b-256 691c9d3fa2138a2b56053d813ff003bb34d6cd7e723eadaad8b4b195dcfda117

See more details on using hashes here.

File details

Details for the file fastavro-1.7.4-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: fastavro-1.7.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 443.4 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for fastavro-1.7.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a117c3b122a8110c6ab99b3e66736790b4be19ceefb1edf0e732c33b3dc411c8
MD5 d81505f5c26a89b517ed701a46d85086
BLAKE2b-256 41c453c17c647ac88e15718aff8a03509a1e5c4ec1da022db289c613d0022b54

See more details on using hashes here.

File details

Details for the file fastavro-1.7.4-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.7.4-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6d318b49fd648a1fd93394411fe23761b486ac65dadea7c52dbeb0d0bef30221
MD5 aad052627cb03131898d8ed76cfea527
BLAKE2b-256 58b2fc7fa58266af6931ebb36ba3b509fab7f14d26a074867d393b42d6b2251a

See more details on using hashes here.

File details

Details for the file fastavro-1.7.4-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.7.4-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d2897fe7d1d5b27dcd33c43d68480de36e55a0e651d7731004a36162cd3eed9e
MD5 e4b8bb9266265136a9dd594b58be2a10
BLAKE2b-256 8add04d7c2076febde3db4073d80365de495cf393b6c3a4a40765419ab2cb492

See more details on using hashes here.

File details

Details for the file fastavro-1.7.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.7.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 487054d1419f1bfa41e7f19c718cbdbbb254319d3fd5b9ac411054d6432b9d40
MD5 29312a1a2d45b2fb42e038d0784a3bba
BLAKE2b-256 2488d7765c46dcbbefee33f8844b15ea0d16340c992e8a12e461f14f5419d4d8

See more details on using hashes here.

File details

Details for the file fastavro-1.7.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastavro-1.7.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a312b128536b81bdb79f27076f513b998abe7d13ee6fe52e99bc01f7ad9b06a
MD5 1d57eed678bdbbd5d7ebea62997e741d
BLAKE2b-256 df7f7b6a640ed405ece84937990cfdb4821bb28397153634a3d4083aff49c5c8

See more details on using hashes here.

File details

Details for the file fastavro-1.7.4-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fastavro-1.7.4-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bd3d669f4ec6915c88bb80b7c14e01d2c3ceb93a61de5dcf33ff13972bba505e
MD5 13330d1f6be751200619cfb65c8c392f
BLAKE2b-256 4d766e70bd5371195127f96d4ca951589af69e93a479c018abc578be3f014821

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