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)
  • 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.

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

Uploaded Source

Built Distributions

fastavro-0.22.13-cp38-cp38-win_amd64.whl (367.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastavro-0.22.13-cp38-cp38-win32.whl (316.5 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

fastavro-0.22.13-cp38-cp38-macosx_10_13_x86_64.whl (445.1 kB view details)

Uploaded CPython 3.8 macOS 10.13+ x86-64

fastavro-0.22.13-cp37-cp37m-win_amd64.whl (355.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

fastavro-0.22.13-cp37-cp37m-win32.whl (307.0 kB view details)

Uploaded CPython 3.7m Windows x86

fastavro-0.22.13-cp37-cp37m-manylinux2010_x86_64.whl (1.3 MB view details)

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

fastavro-0.22.13-cp37-cp37m-macosx_10_13_x86_64.whl (433.3 kB view details)

Uploaded CPython 3.7m macOS 10.13+ x86-64

fastavro-0.22.13-cp36-cp36m-win_amd64.whl (354.7 kB view details)

Uploaded CPython 3.6m Windows x86-64

fastavro-0.22.13-cp36-cp36m-win32.whl (306.5 kB view details)

Uploaded CPython 3.6m Windows x86

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

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

fastavro-0.22.13-cp36-cp36m-macosx_10_13_x86_64.whl (452.5 kB view details)

Uploaded CPython 3.6m macOS 10.13+ x86-64

fastavro-0.22.13-cp35-cp35m-win_amd64.whl (334.1 kB view details)

Uploaded CPython 3.5m Windows x86-64

fastavro-0.22.13-cp35-cp35m-win32.whl (287.5 kB view details)

Uploaded CPython 3.5m Windows x86

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

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

fastavro-0.22.13-cp35-cp35m-macosx_10_13_x86_64.whl (415.4 kB view details)

Uploaded CPython 3.5m macOS 10.13+ x86-64

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

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

fastavro-0.22.13-cp27-cp27m-win_amd64.whl (333.5 kB view details)

Uploaded CPython 2.7m Windows x86-64

fastavro-0.22.13-cp27-cp27m-win32.whl (288.6 kB view details)

Uploaded CPython 2.7m Windows x86

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

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

fastavro-0.22.13-cp27-cp27m-macosx_10_13_x86_64.whl (414.9 kB view details)

Uploaded CPython 2.7m macOS 10.13+ x86-64

File details

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

File metadata

  • Download URL: fastavro-0.22.13.tar.gz
  • Upload date:
  • Size: 559.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13.tar.gz
Algorithm Hash digest
SHA256 c1bb045adf28ffaf572042b03ade8c32ab33eb4dac780d8b266b8fa3614c7ed8
MD5 0f6cfd81f703524943d7b98102f327d9
BLAKE2b-256 bfd1f51eae208e96758e2609648f16bf5789d1ab9a63cdbbfaa6f43385fb4f3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.13-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 367.8 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 806f0baf18beb541215b3d79c5288f9a8b615422c7c43b0556906c3774ed322f
MD5 8b7ae4793b77599390f9e7addcb4fab1
BLAKE2b-256 ba3cdc43249e8d7f5c7daaebf3d5393f9c0b42b3b7f678f405ebadfca87193df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.13-cp38-cp38-win32.whl
  • Upload date:
  • Size: 316.5 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8377b0739a97e3c3fc6975b8929818dc84fdbac7902692341a473b00f11095f2
MD5 d2f8ba2986225e18ff091b1e3e225ac3
BLAKE2b-256 54b89755d798e0eda9ff096b2bd62828a2c74ae6a434727410b76d46986ee4ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.13-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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4338b0f822065b5e363a623b004a01fb66131aca6ddca032e90e391a7eed8606
MD5 da03c3e938891903c4d843cd65220735
BLAKE2b-256 f3815461176f38ea415b35c5b325dde389ad9b0fb19b04d41e51c2bd39bc1a29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.13-cp38-cp38-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 445.1 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0456f0dd1b0887bff3b78e1be98cafdda2dc60840f28588d22e3f1464960c174
MD5 4719d9d2b1c9cf8301896498d78e1a89
BLAKE2b-256 cd58a7459619daf86cf049312691d49dc687447337c6be5d7cbd92a4eaab9415

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.13-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 355.6 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 741862281083cbdb071b7667ed1d5bbd0d7dce265aae91ed6f43d6fa9d72befc
MD5 4f699c4f2196e9b41a4198eb98902e91
BLAKE2b-256 bda728a72da7e759511a682c8527ca5d2f4a3ef16b07ed16e81d9f66686c93a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.13-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 307.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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c304da104f7df86229d0f9ebff261dc8909110e297772911f5607c36d7b2427a
MD5 514a7d04055f254685c00d060a024bc4
BLAKE2b-256 28b8110fb80f9a21e5478f97f2891180c504accd39990a8bd931d92dab472620

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.13-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.3 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 60f2ec7a9cfa90fc5ddcd6d916f0163c5e1a32d17f008e8ec50dbbb95b1ecbc0
MD5 3b7ad0ceb0b7a2cb61eeda58df01d5a4
BLAKE2b-256 ba87f3688ebfa942d0ece109dcf31ca678b445b711fa075eca8e7833615682dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.13-cp37-cp37m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 433.3 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f41e959af7f354544b056e32226fc40db560d97dfbc1db5660d6faad6ea37696
MD5 0256c237909271e399fe0f8bacd6416f
BLAKE2b-256 ac4f533808ec6f7aa361e066bc99df2ed321917802118e4d2168e11ec6f69d54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.13-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 354.7 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b2483674f56e8a023191574ead3fc6f92fb0b46a6e61b91a6db3adba00c1ad21
MD5 3def68e268ee3bda8e3996c86b4e55e8
BLAKE2b-256 d46df6501c6bdaa3c858c34a4f49361d602d1b6febd83c30683aed8f56bb8bcd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.13-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 306.5 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 dc91349316c284f4f760ddf5cfb65fa03ef4ca449988f9aa426e8c840f2b81d1
MD5 628b1bee233fd7e4aa12c3e96c90acb0
BLAKE2b-256 8c4c23133d39ec6c3523fb0cc96c68db04e62dd7b34007ee433d5cae48d58c9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.13-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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d90ab3b49876c281383e65380e962fec38337ed58496a53196f48dfd50ab36f3
MD5 775c4203cde1e55b891ad6acdea5c82c
BLAKE2b-256 3e876b9e91cc9c9b20d099dde03461f965bdeef455ca767e050f8115f624d0e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.13-cp36-cp36m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 452.5 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c9a17a59e4b05c7d75d749abd91e61923efce97c89712ceb5e74c57c132ec77d
MD5 6bb7f9609d28d28fe9c3e188b48332cb
BLAKE2b-256 205d3d58c0966495dd875d56b77de5f852b7f536de29e3f9280db7a5a6e676a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.13-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 334.1 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 3dbbd053aafaf513ea00b0b058a5ad9056d519fe803396149498df7b57797169
MD5 97ea8747313c8ce1de49a2047e76693d
BLAKE2b-256 1ffdae76d9d2c0353ac93015210ca9e5bbf593df94fb482b21fb96c3848e4fd8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.13-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 287.5 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 d35bd760a201a384803c5d50c61144a180442251a03f583857a460fc19004e63
MD5 c798ec4abae5c2a5bd8dc48b6ef58032
BLAKE2b-256 34c1ecde56d076437bbfabe5d32acfadaef75c4b8e0b38f7d38e630e2e22ff20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.13-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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 31519ff01c2bcd0554f7963f4d29c5fed3d0dc0b9ca4f812dced4134ae7483ce
MD5 e60dd21288ae7037e63decf9456b06ff
BLAKE2b-256 e8846c34b9d7001389bdcf04ff1bc9f3b695177ab680990c998e2d969208ca27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.13-cp35-cp35m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 415.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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13-cp35-cp35m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 36d482398bc5bd4a70cbd18e003e6b434c55fb0e874b2e67785bf914c80c4e70
MD5 61f5c1b511ba6d798afedc3e663f6d1a
BLAKE2b-256 b92ac73114c15cd717fa6bb317038d91d1ad30f92446469e3842f4963ffd9e6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.13-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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1244735758e8e7dac85c9f11fcef3044eb7977a28a225cad7da465d4189488be
MD5 5ad4fcacf27637203d29100cf45c7ad2
BLAKE2b-256 ebb65b9c76d98e0eb1dfec4dea432eda0351178674b1eaf9532a10488b37a557

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.13-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 333.5 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 e5fc98a72c9a2e5dfd04d2a4790bdf389db8cf2c1bc2eeac59801ff0972b4d70
MD5 3bf3c6688c8c6606f49e439d23368078
BLAKE2b-256 724597e7337c52022d19d31f1396f6bc822845299c20b4286440ecff55a1c424

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.13-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 288.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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 343af15333093329b1066bf3cfd04e8a911b852c3da6805d30acefdecd8649cb
MD5 aad059e79525dd516a099fc23bc1af74
BLAKE2b-256 01d6d701e1e95a9f6adc2d52f2fc4b4cbd158d4b4d6239eb2249cfc6375589d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.13-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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e4f2803f0731871c606c08d93ed6d777ccc70b6dd09fd66a9271c11b7f698737
MD5 c18c4e52d349cbf557b9b31fca0b95e6
BLAKE2b-256 16a6735974bbcdc0119e13190043eb511c8bc1dce12dade08ad768c365a11d0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.13-cp27-cp27m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 414.9 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.22.13-cp27-cp27m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ff08d511b9b2a07373b290c0025dc40d93820d20f5c78841ba1447d596b2bbcb
MD5 663b7d84f7355360414eb2399509ecba
BLAKE2b-256 a2603e49f3b95a30af7e9889b4f34f62f3b3d3b818f0b828fca6925946e1e212

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