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

Uploaded Source

Built Distributions

fastavro-0.23.2-cp38-cp38-win_amd64.whl (374.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastavro-0.23.2-cp38-cp38-win32.whl (321.3 kB view details)

Uploaded CPython 3.8 Windows x86

fastavro-0.23.2-cp38-cp38-manylinux2010_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

fastavro-0.23.2-cp38-cp38-macosx_10_13_x86_64.whl (455.0 kB view details)

Uploaded CPython 3.8 macOS 10.13+ x86-64

fastavro-0.23.2-cp37-cp37m-win_amd64.whl (361.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

fastavro-0.23.2-cp37-cp37m-win32.whl (312.0 kB view details)

Uploaded CPython 3.7m Windows x86

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

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

fastavro-0.23.2-cp37-cp37m-macosx_10_13_x86_64.whl (443.1 kB view details)

Uploaded CPython 3.7m macOS 10.13+ x86-64

fastavro-0.23.2-cp36-cp36m-win_amd64.whl (360.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

fastavro-0.23.2-cp36-cp36m-win32.whl (311.7 kB view details)

Uploaded CPython 3.6m Windows x86

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

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

fastavro-0.23.2-cp36-cp36m-macosx_10_13_x86_64.whl (461.7 kB view details)

Uploaded CPython 3.6m macOS 10.13+ x86-64

fastavro-0.23.2-cp35-cp35m-win_amd64.whl (339.3 kB view details)

Uploaded CPython 3.5m Windows x86-64

fastavro-0.23.2-cp35-cp35m-win32.whl (292.3 kB view details)

Uploaded CPython 3.5m Windows x86

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

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

fastavro-0.23.2-cp35-cp35m-macosx_10_13_x86_64.whl (423.4 kB view details)

Uploaded CPython 3.5m macOS 10.13+ x86-64

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

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

fastavro-0.23.2-cp27-cp27m-win_amd64.whl (339.0 kB view details)

Uploaded CPython 2.7m Windows x86-64

fastavro-0.23.2-cp27-cp27m-win32.whl (292.6 kB view details)

Uploaded CPython 2.7m Windows x86

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

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

fastavro-0.23.2-cp27-cp27m-macosx_10_13_x86_64.whl (423.2 kB view details)

Uploaded CPython 2.7m macOS 10.13+ x86-64

File details

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

File metadata

  • Download URL: fastavro-0.23.2.tar.gz
  • Upload date:
  • Size: 561.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2.tar.gz
Algorithm Hash digest
SHA256 29fb4b2613c5be5f1f643e171efab1b167e5fe3a24fdcd6acbcc1d2aa4275a8c
MD5 00e060a9a029d2c3293a22d92f9f6663
BLAKE2b-256 c8f6040ad34c5b63af88ef2faa0247865d80468946989c42a77a23d345dd155e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 374.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 90cef7ecaed000428f493be63794617649658ea37736208bf7d6cb30bb5b2b6c
MD5 7caa6da77d04b861214213f4f3a38e68
BLAKE2b-256 1acfea8b8f88f51eedd85a60d64d909212667054f150dd2ed118bfc37e60eb52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 321.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 17206544ab57b93a9e2489ec33ae3884cc8115bbc786ae1196e3db8bdbeb5029
MD5 98f6459d6e331f052c31970737c9b8fc
BLAKE2b-256 1592d7ecb5d129ab8d715dd03ccd6125117025be69ca6516a73e6e9b842584ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 be0c6eddd244162a04f518bb9e4eb92fbb3a0c8ad747177ac3d09c07a80ab9b4
MD5 c38ddd3a9674305ab110bb6e0557ac89
BLAKE2b-256 2d1e20756a87bb9145b601333063b1ac1a3f4478e923d9276427d146eeafdb25

See more details on using hashes here.

File details

Details for the file fastavro-0.23.2-cp38-cp38-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: fastavro-0.23.2-cp38-cp38-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 455.0 kB
  • Tags: CPython 3.8, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 049f48964d3d14096f21a0096a86793f8b04d8b0e4eef57cc384198ca1deb348
MD5 3e9ac98192be209d10a36c74639e56bc
BLAKE2b-256 2aed34a8434226ab0244e773529105d929a7aff163cf3dde8f4ea73e14f345f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 361.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 305be4138850085f60d0f9c46d1854633a68adc3e69ebbed870a5b5108ee8e2d
MD5 926528847a0e398e3e502f4bbd0cc920
BLAKE2b-256 99ba8156160b1060e573dadd3b4e8e94aaf8dfffda4274ccb8fcb5fd59064e53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 312.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 fe20714c4fdc110691c5e6404733b02bceb27af11538b305c3877d77121f4c1e
MD5 7024cae481e3df34e9218478b25601c9
BLAKE2b-256 a89f03277270c0f3885d991c758eebf9f58f2ab1be45017db0f6e70e870d2274

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.2-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.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e8e6ae9cc1b79cbc5472330627d1afbad57a9a9b0dab4cb4e93bff19d2eb48c1
MD5 8480c85ea60d04c32d54e98c5ba1d64b
BLAKE2b-256 e85ce950223e22d3fe6d92325ab6801948a0f3b30938328acda8b40edc6ab454

See more details on using hashes here.

File details

Details for the file fastavro-0.23.2-cp37-cp37m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: fastavro-0.23.2-cp37-cp37m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 443.1 kB
  • Tags: CPython 3.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 176407cac6acc60bebb9df03e899c703ec76b0af6cc03b3d19df1878e7a606f7
MD5 5b3a74cdcb03217f0595a358c4c7e541
BLAKE2b-256 c310caea7c0ab8061a5aa0ba67ea127abef3a0476b9c78e55f39dbc49e06c78f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 360.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 af75245018aa2c82c7c799c02671fc37a55932259fa3718ad875860f90a42244
MD5 af49ef5c1539613843410bb21c31aa08
BLAKE2b-256 21b4d6d7d26b0ea236ef35e9a088fb9d46cb6cc15ce66b3e5d5ca524003efd20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 311.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 6c909c47fe49f33185a36ca0e917b1c71ecfdad30e341c633d595e67f2c38c81
MD5 5edb77e2a9526995c5e398d1d17963b3
BLAKE2b-256 d165f88373608e32e7f9f65f1498675215f6fbb6556bce9394e1711e9e2e34de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.2-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.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f85f27e7e32ce515c9fbe76e9833ee4287090eaf4dd584e6d9d010c472664f97
MD5 6b776abc52e82988663ea0b1194ff2dc
BLAKE2b-256 6cca0e6df24cb47db256786c708aebc14bb1a0415925c42cff0f4575eed310fb

See more details on using hashes here.

File details

Details for the file fastavro-0.23.2-cp36-cp36m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: fastavro-0.23.2-cp36-cp36m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 461.7 kB
  • Tags: CPython 3.6m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1a9d7583d2be69733db253940bd3e52807b01c2ec7b86d853316a26fb0695167
MD5 9c8c74237a96d08e09ffb5736f18e2b7
BLAKE2b-256 b0455cc0df5937f7205f98b7da0b2be162b28b810360351bfb76e6d4d4febc7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 339.3 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 a7bc69dc090aa6567b2da303e33c079c5bf4643993f0530ced94138a03da3346
MD5 84fb4ed412fdd394055df02261f662f7
BLAKE2b-256 bdbaabe927be3c4c7bb4fbee118e34fe9178700d6bcd1b31090e3bb7806d2057

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 292.3 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 9428ce88f3a17b914dc214007efda3dafad3dfa55ec8301de5e51103337e2374
MD5 7300d27516e1dea5b540584400249322
BLAKE2b-256 f95c190878ca2a2f0dcd32a499c8165e6b7eab6ac28bbe9ad1dc094aa8f477ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.2-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.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 202121aa53ddab32e538d36c690bf3551fb3e6fb1f4416916c6ba5e2a5347dfd
MD5 4dfe66f3476570e03d7d0cef24e7ae28
BLAKE2b-256 b5ba2d103564f6e70ed5d088ec86ab70bdb287ff2b1e09cbfda45e133e5b451a

See more details on using hashes here.

File details

Details for the file fastavro-0.23.2-cp35-cp35m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: fastavro-0.23.2-cp35-cp35m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 423.4 kB
  • Tags: CPython 3.5m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2-cp35-cp35m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c191f10876976235391bead69689f2190e829cb8cb23cefcd193c9b5bebb0b7a
MD5 3bcc50882795e2201cf71470bf4ff38e
BLAKE2b-256 c53c305a4bd3e3622d6d9ebe4c8aa5b747b6c5b6275aeaca49619e89b082e440

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.2-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.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 849ade1b289ed74a90891a4bb06285c0673e7cbd58e0ec3a3a992b40038856f3
MD5 6d6a48ccc7f72c580b2bd5ed5839ef6f
BLAKE2b-256 1378dd01d36b1a7f2a1bcb5fb8d75eda3ba86698f419bccf3ea0dc63d9fa8ae8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.2-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 339.0 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 d1ef2c154e34594a4bb01708de0c509d0b0eefef6b4d845bc19c8d9289073daa
MD5 208fc7f0e129423c2909020d01be63cb
BLAKE2b-256 6d69676ab0bd1dd941b1e77a97f92355120f42fe2ccd6448c8a825a41b8f7f33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.2-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 292.6 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 aa00439d234f3d7af43d9aef65fcf2f9ccd5781c5aef3c05840e4da09cf00814
MD5 0c5e2bb6ed9807bae7a9bedd816c2e74
BLAKE2b-256 050f9f92cec6463318df715950e6740227a4b8a67ac78b1880791e411bae08a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.2-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.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6ed017e351ef6876f27111e9d92d7f02aaa4da6d8c1146784171781d4decc0a5
MD5 248c2c2013bbad830edd84359a030cc0
BLAKE2b-256 cfd912e2249143543f340676ec0a8123ad2f310f046c40f671663d93938110f1

See more details on using hashes here.

File details

Details for the file fastavro-0.23.2-cp27-cp27m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: fastavro-0.23.2-cp27-cp27m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 423.2 kB
  • Tags: CPython 2.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for fastavro-0.23.2-cp27-cp27m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e9513f00a8288a0b434ab191d2ec7b39ffbbe400707d32426c34b1c600cde748
MD5 0e31be54bb5b37205d4f4f62e3b05e3a
BLAKE2b-256 2769513fa4bd3e6686dd0a95ca3a68ed75c8f898ab1b909e43f11f29c080795f

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