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

Uploaded Source

Built Distributions

fastavro-0.24.0-cp38-cp38-win_amd64.whl (352.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastavro-0.24.0-cp38-cp38-win32.whl (310.8 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

fastavro-0.24.0-cp38-cp38-macosx_10_14_x86_64.whl (437.6 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

fastavro-0.24.0-cp37-cp37m-win_amd64.whl (339.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

fastavro-0.24.0-cp37-cp37m-win32.whl (302.4 kB view details)

Uploaded CPython 3.7m Windows x86

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

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

fastavro-0.24.0-cp37-cp37m-macosx_10_14_x86_64.whl (425.4 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

fastavro-0.24.0-cp36-cp36m-win_amd64.whl (338.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

fastavro-0.24.0-cp36-cp36m-win32.whl (301.7 kB view details)

Uploaded CPython 3.6m Windows x86

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

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

fastavro-0.24.0-cp36-cp36m-macosx_10_14_x86_64.whl (445.6 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

fastavro-0.24.0-cp35-cp35m-win_amd64.whl (317.5 kB view details)

Uploaded CPython 3.5m Windows x86-64

fastavro-0.24.0-cp35-cp35m-win32.whl (281.9 kB view details)

Uploaded CPython 3.5m Windows x86

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

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

fastavro-0.24.0-cp35-cp35m-macosx_10_14_x86_64.whl (400.7 kB view details)

Uploaded CPython 3.5m macOS 10.14+ x86-64

fastavro-0.24.0-cp27-cp27mu-manylinux2010_x86_64.whl (1.1 MB view details)

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

fastavro-0.24.0-cp27-cp27m-win_amd64.whl (318.7 kB view details)

Uploaded CPython 2.7m Windows x86-64

fastavro-0.24.0-cp27-cp27m-win32.whl (279.6 kB view details)

Uploaded CPython 2.7m Windows x86

fastavro-0.24.0-cp27-cp27m-manylinux2010_x86_64.whl (1.1 MB view details)

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

fastavro-0.24.0-cp27-cp27m-macosx_10_14_x86_64.whl (404.4 kB view details)

Uploaded CPython 2.7m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: fastavro-0.24.0.tar.gz
  • Upload date:
  • Size: 576.7 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.0.tar.gz
Algorithm Hash digest
SHA256 28b2462c83164cf5a4a6944fc8a5425d15499dffeadb1b8a328ed78988d02022
MD5 f7c8ee554f5fe982f601c8f5bdaa2f20
BLAKE2b-256 64276cacb70babcaf9a6ec4bb2bdffdfa8c9ae5bf430055841bde58d2c665fc4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 352.3 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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0b02c1750551e083712631ed074d4025a453b31a8cf938294555db9719d8f51f
MD5 0ed8b4a56a0426799bbb04a19df395e9
BLAKE2b-256 6a641248a59bec343989eddaac0c06cc79d60b8c8b9963b0638fed5d9f0a0522

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 310.8 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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 41be776e853f46d50a859e317e17fcdfb7fd13b3607c4a7166151ba07aaa6bab
MD5 61b449e725004ff52c211c3a1f0e9b29
BLAKE2b-256 fc603ccf6dc2466c10ff130528f466671549200f1c393b8457a94bc8de576535

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.0-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.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 014a7be33a147382574066ea84187dcd51b141734886b06d1f0a5cee78d97152
MD5 9ad6b324df424389b3c042af51856aff
BLAKE2b-256 24c569621737b68e80886895f56411bccbebcfa3a108e2acc193c99c1c6f3631

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.0-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 437.6 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.0-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e2e00b62520d6607cda21318524d8d735ac858e32f88bdc03cc8440dbb1707d6
MD5 e412d70e7d21d703035136c64ca9a284
BLAKE2b-256 4def8f0c08b27d83e708b39701bf3b2e47fb41f3929a7630cf0374afc2b3323d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 339.5 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.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 78a2d37017fbcf5129b6738006b3f7eb79f8160fa4a30f2746c2edba43d63217
MD5 ad10151bc53d8c682a7a2e5efe0edcea
BLAKE2b-256 f459ac760d3b90094402391646ac27c1d1053c8e757017929d755657f7b46959

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 302.4 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.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 4ea53ed61ff8022d4ddbd633d9b89e53781b0103a5a08e206d700f958f923573
MD5 3865eb28b0a6c6b373b81f1abfe7910d
BLAKE2b-256 03826a4a902b3e12db5ff9cbd43d3625b0c4e95df025478aa89056d6455d8c0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.0-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.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 418246adc0f6f37e1798b707eb6809ca1abda0fc430237217494178ecd9651f9
MD5 b0403b684e2b2c5505908a20e21d9fb0
BLAKE2b-256 f9a256f9c67e02cfd0993abdff2fab9edae2cc8870a563c9bbdea79311272c0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.0-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 425.4 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.0-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 eb4ba6d6c7b41552dd3b650af4380a04ec78f8935b643fb9a31418619e9d66fd
MD5 34fb3f43db3604494c3c40717fa1bf02
BLAKE2b-256 983f75421f91ef745848bd839fd4cbb58c3677c0eb8227cac2f9053411525e6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 338.4 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.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f3897f068f9838a1a9ceccbe3d7ca63d339cbed1ab883f46110ac64a21fb147d
MD5 b26025f2ed7e1885acd384b9fdcb3bd9
BLAKE2b-256 4d78f492e4837f78d5ccd430b0b665ae2efb5fb3f7c37cb545ce002375ac5ed6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 301.7 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.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e3f8ef203a256e4b0417847647cfd4612966d88b36bd0bb815f162ab08c86081
MD5 93586d30c14d00b1fc6fe4471d01fdb6
BLAKE2b-256 500fe630fa3b03e5b31231f15accdeda2be8f3b6051935265cdf66dae89e5167

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.0-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.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 07ee13f885db65a9c8da4b8cef2e1f5edb9c7b7bf67281e5b88f09958e0f7fb3
MD5 f6f1765d8ce6ac23d85445c205090f81
BLAKE2b-256 ff8a3bd861b280ad9486eac44d6686cfc94f8f9db2e9d294de20413fde417afa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.0-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 445.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.0-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e9f2074c043697e5d7d881a6d3c0169b906a5a3dad9adf870a23485046752fb7
MD5 79f01211d25927160de98cd6a4785b51
BLAKE2b-256 02685a739671cce4c26afb72bc11211c5dabb1c36cfa67abfab8fa45f7e9b1a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 317.5 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.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 e73f5c2035b6a977ccd7bfef7a790fa2076f8d7571a9b78b26435f3f8a8eb67a
MD5 af978bc12d47817f6258511ab092ac92
BLAKE2b-256 ac25eb2bd1fc91ce0db6b58dbb1608ccb8210a70ca7ef044ef146f664ff15409

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 281.9 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.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 7f58a9fbf2d5c9e2c50729870b28f84a6b6346bf0f05edc493957926e32599f3
MD5 784012fb2eca17b9f5e3ffe41719d70a
BLAKE2b-256 e4873c159224bae4d184969e1f0705e02451c0d6fca598d8cf56850fb0d48be2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.0-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.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1f6aff816277a39e8a176b6da05789e5ab40259fd72c789a32cf79c9721e7136
MD5 7b110e0f4cb23ca6db0b18be27dd3161
BLAKE2b-256 4d2c7da31c1764ac0cee203badc083bde9f35c669ff217a5efbd1782627deb9e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.0-cp35-cp35m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 400.7 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.0-cp35-cp35m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a6b7c04c55b1f94fc0279cc683acf356906a7225212219e66b0a40fe5b6ac6ff
MD5 2991d9d8396ab903c41216e11e553b74
BLAKE2b-256 023d87fcbfe80a6af4f5ebcd77858d3a0bc140a59daa8cd461fa7d96189d2dc9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.1 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.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9aedf11262201d62e75733e59138949133e81d79b9eff8c3b80316d0767b8dea
MD5 0790cda0218f924ea61bed8e08afc061
BLAKE2b-256 21f18d5b9e88a37612bd8be6b20629b6f5e17e5196d98568bd17b60d00f0994f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 318.7 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.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 830fb690a7b8a6113b4fa206569faf30afcdea3ed9713d64cf4c1ece53d9ee17
MD5 d17db6bf4cab5ad29216623f7afb6965
BLAKE2b-256 7212b7648ee4d6cbda47a85b4d9b5ebca5ea5f33840ba85a759bb2c471d11b01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 279.6 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.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 37ab048bbb54e3eaf9a197ca5fa322de91ecff12d50e42a288e33b8d60fa9002
MD5 6193ec7c59978183ae5bb174b5db4aae
BLAKE2b-256 2e6b72386045e2a34f69b21027f2baa6e2d2d8ec6cffb42ae460beae4b95cd85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.1 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.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1f22938edb53eafcbdd5c12aad330b77c3768e01307cd016f46cd19cdd394f67
MD5 c8558ba2fe982e73442cf3ffd1eb1d37
BLAKE2b-256 d0245d9a03f714423b220551259fa83632bb4fb09dcfdaa2f44a52f3ddad4f35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.24.0-cp27-cp27m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 404.4 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.0-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 45ef3dacc097e938af6094f8ef36f7f15c856ad475267dbd5669bcdf4dd409a1
MD5 c138be3f1c5de404758a4e7b5deb4600
BLAKE2b-256 0f6ee8c7aa6edf0dac94ee8b60210b52087c31a86bb3d1e901e20676a9687cab

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