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 2.7
  • Python 3.5
  • Python 3.6
  • Python 3.7
  • Python 3.8
  • PyPy
  • 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

Missing Features

  • Anything involving Avro's RPC features
  • Parsing schemas into the canonical form
  • Schema fingerprinting

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 FASTAVRO_USE_CYTHON=1 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 availabe, 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 dependecies 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.

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

Uploaded Source

Built Distributions

fastavro-0.24.1-cp38-cp38-win_amd64.whl (358.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastavro-0.24.1-cp38-cp38-win32.whl (316.7 kB view details)

Uploaded CPython 3.8 Windows x86

fastavro-0.24.1-cp38-cp38-manylinux2010_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

fastavro-0.24.1-cp38-cp38-macosx_10_14_x86_64.whl (447.3 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

fastavro-0.24.1-cp37-cp37m-win_amd64.whl (345.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

fastavro-0.24.1-cp37-cp37m-win32.whl (307.1 kB view details)

Uploaded CPython 3.7m Windows x86

fastavro-0.24.1-cp37-cp37m-manylinux2010_x86_64.whl (1.4 MB view details)

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

fastavro-0.24.1-cp37-cp37m-macosx_10_14_x86_64.whl (434.8 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

fastavro-0.24.1-cp36-cp36m-win_amd64.whl (344.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

fastavro-0.24.1-cp36-cp36m-win32.whl (306.8 kB view details)

Uploaded CPython 3.6m Windows x86

fastavro-0.24.1-cp36-cp36m-manylinux2010_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

fastavro-0.24.1-cp36-cp36m-macosx_10_14_x86_64.whl (454.6 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

fastavro-0.24.1-cp35-cp35m-win_amd64.whl (323.2 kB view details)

Uploaded CPython 3.5m Windows x86-64

fastavro-0.24.1-cp35-cp35m-win32.whl (286.2 kB view details)

Uploaded CPython 3.5m Windows x86

fastavro-0.24.1-cp35-cp35m-manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

fastavro-0.24.1-cp35-cp35m-macosx_10_14_x86_64.whl (409.1 kB view details)

Uploaded CPython 3.5m macOS 10.14+ x86-64

fastavro-0.24.1-cp27-cp27mu-manylinux2010_x86_64.whl (1.2 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

fastavro-0.24.1-cp27-cp27m-win_amd64.whl (325.4 kB view details)

Uploaded CPython 2.7m Windows x86-64

fastavro-0.24.1-cp27-cp27m-win32.whl (284.9 kB view details)

Uploaded CPython 2.7m Windows x86

fastavro-0.24.1-cp27-cp27m-manylinux2010_x86_64.whl (1.2 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ x86-64

fastavro-0.24.1-cp27-cp27m-macosx_10_14_x86_64.whl (412.7 kB view details)

Uploaded CPython 2.7m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: fastavro-0.24.1.tar.gz
  • Upload date:
  • Size: 586.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1.tar.gz
Algorithm Hash digest
SHA256 d9cdee09dc5f0dc6fc0f67a01a3eb97ebcbbc7a77bf9bdd72d566e21aeb9a9dd
MD5 608ff567938e990ee6ebab7174b29e4f
BLAKE2b-256 aaab2d101718816bc0ef46a8e59e02c8a26e125d421dd8b2110f8be32abfb8ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 358.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 47e6ecd602a6512f844531762fee83f4dc8907895e5357dcdc5f3537c42100fa
MD5 5c804da2f2570f283abdead41b97deae
BLAKE2b-256 58e96c517e81228ac67f220b46cee5c6eef9d4837b93a56b90e5b9dc1de1381c

See more details on using hashes here.

File details

Details for the file fastavro-0.24.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: fastavro-0.24.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 316.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e549d1eb01b9ca6c6ab0a603703c937bc1ae44d2cc5c0e71fd375fa144a006a1
MD5 f116fafde3c4ca0bb0a82c48d82a1a2b
BLAKE2b-256 f9741d41b9ce4572a3142e3e76b60be28e1b997b5b0cd1239db567fbf79f0398

See more details on using hashes here.

File details

Details for the file fastavro-0.24.1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: fastavro-0.24.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7444f66d8a8d6d3ca296f0ebd6e3e5b092a78f1e3650d7ca5eef4724f16e157d
MD5 26c094de5eb58266e250cac9a2edf2e2
BLAKE2b-256 2c00e6fd117b5ac4e16f258640eca5e09664bbc7b681a2d5168c6e8139adcd19

See more details on using hashes here.

File details

Details for the file fastavro-0.24.1-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: fastavro-0.24.1-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 447.3 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 301bc571d85a204747bc71c1ee992c3623903b86c5b44bff1ac951499daa1171
MD5 f98224105f082699b3201e6e1b3f1e01
BLAKE2b-256 a8aa4bc267bedb94c8aa26b6403717a876dd76c153291a79b6da6e0448c3c602

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 345.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 77908e7ca5545dc7c75c0faed7d245a713378bf0f7e0a6f21fbd2bcc67914515
MD5 9fb07df67c43e687c7d8fa0adfce1102
BLAKE2b-256 86824859989ada604d57ec5f2a9a9476025d723953995d28fa0f0ae75f0f76d0

See more details on using hashes here.

File details

Details for the file fastavro-0.24.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: fastavro-0.24.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 307.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c41b81aded33a06dc42b75a3c07d80bb851d051c7d8e9804914c325a606af98c
MD5 b9ce797c49c5a2c3c2f9450ae2ee8fb7
BLAKE2b-256 fd65da536487b86b80a234757ec8bd5340f54a6aa769f640354b111633b9d0f9

See more details on using hashes here.

File details

Details for the file fastavro-0.24.1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: fastavro-0.24.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ee739e25f601178bb4f9548db364d568871c7c98eb4e42fedc84b7d3722b4f29
MD5 e8823ec1bdbba70a4a32a7bff16faf73
BLAKE2b-256 5137532ffac0f642e95a2ab7969220f883147fc78d686d28759feb75c66770c9

See more details on using hashes here.

File details

Details for the file fastavro-0.24.1-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: fastavro-0.24.1-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 434.8 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e4242ca105016af86293fae98e45a4acc9b5c61e01714df7ddee0e307f5b0bdd
MD5 d8e50257a5d5de5496e26399fb56012d
BLAKE2b-256 8feb96aa87be5980e8d91857f9147a61424f02543a9681dc403ece522fe68e67

See more details on using hashes here.

File details

Details for the file fastavro-0.24.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: fastavro-0.24.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 344.5 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7ef515c34f6183cd800333274eef8af6c956ce67284f1cafb3c43f1672a6a1ca
MD5 4bd61845b8db97298b3f6db6dbf8ee8b
BLAKE2b-256 549b060e5f76e04fb771d189f0a7616d3fa1803ade82453264f441fecb62f8f2

See more details on using hashes here.

File details

Details for the file fastavro-0.24.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: fastavro-0.24.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 306.8 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 3bbee021af6834aba467cd8954337debff6e6c3067d3ecb90eb93729d28fe647
MD5 c4e8a269a720e1b76a364b62b7b79cae
BLAKE2b-256 732cc72555d8a7332175ad6bdce61057f8a13ad6aa14d8383f13626101ef4632

See more details on using hashes here.

File details

Details for the file fastavro-0.24.1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: fastavro-0.24.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c2662afb27d6ce46e129f3ef25411f607b6d5502894aca2b7a144ddee0a49dd2
MD5 02a5011bb2ec698f92ce3e3d21d1801b
BLAKE2b-256 a8f2513574dcc71e3e3929244b3e50fca510e9e33b65a820de7991806c1270c1

See more details on using hashes here.

File details

Details for the file fastavro-0.24.1-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: fastavro-0.24.1-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 454.6 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f7267a772968a8492e6161288356276b64032650f0a60c8c0e8a76fac959d6e2
MD5 d9e4c9e840d91f94fe19cebc0601a345
BLAKE2b-256 2b7692fd09e08971bfa06eac52d8fe68b840ba56cf961d88b852bf0345c256b7

See more details on using hashes here.

File details

Details for the file fastavro-0.24.1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: fastavro-0.24.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 323.2 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 489ed6a03a1e85f3ff652619cc23a23af1e1facb37dd3adba18696faa07429cf
MD5 5452389075ed299872b23884bd53a7d9
BLAKE2b-256 28515d5398143868795a27f07a46d87665b0aebca8e762bcbed46176e0b6eee9

See more details on using hashes here.

File details

Details for the file fastavro-0.24.1-cp35-cp35m-win32.whl.

File metadata

  • Download URL: fastavro-0.24.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 286.2 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 da8b5385317fcd6ba6b71f6136fbe83e5e4443546917d03fa12171d88be9ad75
MD5 67ce986285c8189fe98ed48dc4123707
BLAKE2b-256 2168b138126687996ef3f47f713e03f2567ee7f1ba7b52386bd5b656ff94a6c6

See more details on using hashes here.

File details

Details for the file fastavro-0.24.1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: fastavro-0.24.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 127423bedb4cf339f20056f0ba9a01f9b841c1212e844a59002231772dcc81c3
MD5 a5f7fa82261941cfcabf43d9733b575b
BLAKE2b-256 212d8f7f7860156fdac3a3238ad173409778b8e601f39202edca06f1ea4eb7fd

See more details on using hashes here.

File details

Details for the file fastavro-0.24.1-cp35-cp35m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: fastavro-0.24.1-cp35-cp35m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 409.1 kB
  • Tags: CPython 3.5m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1-cp35-cp35m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 286cde1aba0a6f63d5aada8d51f9cb4ddca2e4785b9fba934efd08fb8cfed115
MD5 4959ee8145de1ab185bffa266aa188cf
BLAKE2b-256 ec2f21280d98ba340caf98e4c2ec7fe234e75c96ecb89a8b5e3d59bd80c1540a

See more details on using hashes here.

File details

Details for the file fastavro-0.24.1-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: fastavro-0.24.1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 90560e1b3a85b0cde64cd3d315db8d15d93e4b160f9c355d5fee08431213c544
MD5 f7a8d6da0a1fda0b5f1a3d0629818fd3
BLAKE2b-256 45413fc15291b4561f6a3f5f9976cbd8ed4c945b67006f58dfa56d17f7ec892b

See more details on using hashes here.

File details

Details for the file fastavro-0.24.1-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: fastavro-0.24.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 325.4 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 0d309031827df3c2b530cce33fc3c192043db16572e122d597828140e576b1ce
MD5 9bd4ab0e899060edb54db0a418b3391d
BLAKE2b-256 a95dd5cd09adc287f3deaefc2d8c976764fcc0ce9c3c38175335031e1ded8fa3

See more details on using hashes here.

File details

Details for the file fastavro-0.24.1-cp27-cp27m-win32.whl.

File metadata

  • Download URL: fastavro-0.24.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 284.9 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 2eee0a6b2b9763ad628064cc2ec0c8b390bf3671d8d98fd26fb677eeee19beec
MD5 1eb6cb51c2d588d195fe8c4fe9b6896e
BLAKE2b-256 fbcd181c94dd6f87c58fdaa8aea6f3fd5490bd34f9d3836f1aa19ca991b364c9

See more details on using hashes here.

File details

Details for the file fastavro-0.24.1-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: fastavro-0.24.1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0ae736b753f588e6745585ce351406a82035bb90a36717f3c02d6c608ef1c55a
MD5 89cc7f84df8d430623090498ddc6dacc
BLAKE2b-256 9e94c2c9906d9d47cbbddd07cc9de49d3e590fb4064b4c5d7d97e992fe273b53

See more details on using hashes here.

File details

Details for the file fastavro-0.24.1-cp27-cp27m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: fastavro-0.24.1-cp27-cp27m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 412.7 kB
  • Tags: CPython 2.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.24.1-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 7c0fd50f792807bdc37eb24c5ca3e0b720786a54974299698d6eb1c9a7c3bfd5
MD5 a22f76efa8d7e3ce0f5505596343624a
BLAKE2b-256 812851bbe5755fcbd8e26fc3f6aa07f4ccd06f7aabcd1b92c1c9c44b0e98c7b7

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