Skip to main content

Fast read/write of AVRO files

Project description

# fastavro [![Build Status](https://travis-ci.org/fastavro/fastavro.svg?branch=master)](https://travis-ci.org/fastavro/fastavro) [![Documentation Status](https://readthedocs.org/projects/fastavro/badge/?version=latest)](http://fastavro.readthedocs.io/en/latest/?badge=latest) [![codecov](https://codecov.io/gh/fastavro/fastavro/branch/master/graph/badge.svg)](https://codecov.io/gh/fastavro/fastavro)

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)

  • Schema resolution

  • Aliases

  • Logical Types

## Missing Features

  • Anything involving Avro’s RPC features

  • Parsing schemas into the canonical form

  • Schema fingerprinting

[Cython]: http://cython.org/

# Documentation

Documentation is available at http://fastavro.readthedocs.io/en/latest/

# Installing fastavro is available both on [PyPi](http://pypi.python.org/pypi)

pip install fastavro

and on [conda-forge](https://conda-forge.github.io) 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.

### Releasing

We release both to [pypi][pypi] and to [conda-forge][conda-forge].

We assume you have [twine][twine] installed and that you’ve created your own fork of [fastavro-feedstock][feedstock].

  • Make sure the tests pass

  • Run make tag

  • Copy the windows build artifacts for the new version from https://ci.appveyor.com/project/scottbelden/fastavro to the dist folder

  • Copy the linux build artifacts for the new version from https://github.com/fastavro/fastavro/releases/tag/ to the dist folder

  • Run make publish

  • Note the sha signature emitted at the above

  • Switch to feedstock directory and edit recipe/meta.yaml
    • Update version and sha256 variables at the top of the file

    • Run python recipe/test_recipe.py

    • Submit a [PR][pr]

[conda-forge]: https://conda-forge.org/ [feedstock]: https://github.com/conda-forge/fastavro-feedstock [pr]: https://conda-forge.org/#update_recipe [pypi]: https://pypi-hypernode.com/pypi [twine]: https://pypi-hypernode.com/pypi/twine

# Changes

See the [ChangeLog]

[ChangeLog]: https://github.com/fastavro/fastavro/blob/master/ChangeLog

# Contact

[Project Home](https://github.com/fastavro/fastavro)

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

Uploaded Source

Built Distributions

fastavro-0.22.7-cp38-cp38-win_amd64.whl (358.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastavro-0.22.7-cp38-cp38-win32.whl (308.3 kB view details)

Uploaded CPython 3.8 Windows x86

fastavro-0.22.7-cp38-cp38-manylinux1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8

fastavro-0.22.7-cp38-cp38-macosx_10_13_x86_64.whl (432.1 kB view details)

Uploaded CPython 3.8 macOS 10.13+ x86-64

fastavro-0.22.7-cp37-cp37m-win_amd64.whl (346.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

fastavro-0.22.7-cp37-cp37m-win32.whl (299.6 kB view details)

Uploaded CPython 3.7m Windows x86

fastavro-0.22.7-cp37-cp37m-manylinux1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m

fastavro-0.22.7-cp37-cp37m-macosx_10_13_x86_64.whl (421.1 kB view details)

Uploaded CPython 3.7m macOS 10.13+ x86-64

fastavro-0.22.7-cp36-cp36m-win_amd64.whl (345.7 kB view details)

Uploaded CPython 3.6m Windows x86-64

fastavro-0.22.7-cp36-cp36m-win32.whl (299.1 kB view details)

Uploaded CPython 3.6m Windows x86

fastavro-0.22.7-cp36-cp36m-manylinux1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6m

fastavro-0.22.7-cp36-cp36m-macosx_10_13_x86_64.whl (438.1 kB view details)

Uploaded CPython 3.6m macOS 10.13+ x86-64

fastavro-0.22.7-cp35-cp35m-win_amd64.whl (326.6 kB view details)

Uploaded CPython 3.5m Windows x86-64

fastavro-0.22.7-cp35-cp35m-win32.whl (280.9 kB view details)

Uploaded CPython 3.5m Windows x86

fastavro-0.22.7-cp35-cp35m-manylinux1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.5m

fastavro-0.22.7-cp35-cp35m-macosx_10_13_x86_64.whl (403.4 kB view details)

Uploaded CPython 3.5m macOS 10.13+ x86-64

fastavro-0.22.7-cp27-cp27mu-manylinux1_x86_64.whl (1.1 MB view details)

Uploaded CPython 2.7mu

fastavro-0.22.7-cp27-cp27m-win_amd64.whl (324.9 kB view details)

Uploaded CPython 2.7m Windows x86-64

fastavro-0.22.7-cp27-cp27m-win32.whl (281.7 kB view details)

Uploaded CPython 2.7m Windows x86

fastavro-0.22.7-cp27-cp27m-manylinux1_x86_64.whl (1.1 MB view details)

Uploaded CPython 2.7m

fastavro-0.22.7-cp27-cp27m-macosx_10_13_x86_64.whl (403.9 kB view details)

Uploaded CPython 2.7m macOS 10.13+ x86-64

File details

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

File metadata

  • Download URL: fastavro-0.22.7.tar.gz
  • Upload date:
  • Size: 545.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7.tar.gz
Algorithm Hash digest
SHA256 b50ac77e0f4199f66e496c835bddaee23fdf8936ff4a1c9e19206b331f4c4952
MD5 9d3ad393e7b3d806668ccab71df72fc7
BLAKE2b-256 763d483b210ce745d24aa62b75bd3715ec61a9a2603ceebb38a4edfe1508cbae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.7-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 358.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b6089075590cbbea3ba82e188d9aca7ca147f536357151b94bb8297e14b50638
MD5 de11b5cb780eda2f5daf839772eb26d9
BLAKE2b-256 be4945ac71b6029fa81a249ee9b89030f6feeabec9a6eac8ec43e6df80dc4f5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.7-cp38-cp38-win32.whl
  • Upload date:
  • Size: 308.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 58aaaeeba464efeec2c5b7d581cd1543ecc7841bee386ce069b82ce408cd2096
MD5 aca8d8c1ab35d5c2e6c5e452c2b7bd99
BLAKE2b-256 be23b13a7385b2def8a9f85cf577941fe82ab0309cee85d386ad7124967af143

See more details on using hashes here.

File details

Details for the file fastavro-0.22.7-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: fastavro-0.22.7-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d1ba430ad3ace6797c0d87084590e5e14822c4d114064dc21fd8b47a9dd4f28b
MD5 c55f687a74ac9450cb745479dc07bad6
BLAKE2b-256 7ead1b4b7e757868da2a221af6fe6cbbaf47173961e28a80b1fe5f71635253ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.7-cp38-cp38-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 432.1 kB
  • Tags: CPython 3.8, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e4e3d939286e5bee89b23ec6ad6ffcc1e163dbdc481eec3b1234c7c442f30435
MD5 c1c6547ef6bd7f0c583c3358c1f12907
BLAKE2b-256 ce9722a03c38446bd28bd4d3b6f252505a9c5cb39f83e8a8938db41a51c1fd81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.7-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 346.5 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1be02463920853c7a80f04e10235d2730a352b3284b80cc4f12ab52fc78f10c3
MD5 2e49cd328a4ad621ac02933b4fa4dfb2
BLAKE2b-256 bb8d944f6db3c2af05c7d3d6deaa3d9e0b554a4f59de4d24e99ca1bcdc48d704

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.7-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 299.6 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e0f65e8a0f62a4244fabcd34e73ef1d8f7e3e6c0b84d440126487f146e7486da
MD5 5a24752e9ab94a6d3d7aef555e2835f4
BLAKE2b-256 d346ece1c5339af93af33d60e731665bfb85a180f8836dc400d78bc9c89d7b0c

See more details on using hashes here.

File details

Details for the file fastavro-0.22.7-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: fastavro-0.22.7-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5f8c4a8011a0266f85d58d4082daa70a91a75226579294edd341785729c6fdc7
MD5 8ac6b8a090e0d70f622d761a69559d48
BLAKE2b-256 df794e4d3aa8c275bd4ca7bf950c3f3a4bca6e7546ab8f3eea356d1d514df0b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.7-cp37-cp37m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 421.1 kB
  • Tags: CPython 3.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e97aa1cb62b58daf193f879f0d4d950fe31f29ae9b050d206483b5100657fbb9
MD5 8e436c56d41f57c211c16119e013f33a
BLAKE2b-256 75568ef9172d9277a869ff42c27dc26589574b4f2a673a95b97aa800e6d8524a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.7-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 345.7 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ca2e0468a57177b0c6a93156c27aec65679c53d148892e725a1a2cfaf759b50a
MD5 18347cfa3686262d303ef5128824e26a
BLAKE2b-256 a26e998fd4ca39afe80103582ed83a4ac56876e8aecbfbb0eb174484e3986800

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.7-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 299.1 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2fc8a774c687f488f53eee449bef024d769fa68a4066542f5320449b68d0c3f3
MD5 d9e09362f60a49f59f4c275f2e6196ab
BLAKE2b-256 8dd195e2e3f01ff8fbdf972522e3b374bdd85632f1c8f78147956500ca70be23

See more details on using hashes here.

File details

Details for the file fastavro-0.22.7-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: fastavro-0.22.7-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0e335a3a6644dc3143c6e2d2a05976ef8551c1eed2458afdfdac512dedff7647
MD5 b24ad36401d071ffffe059e5643dc0cb
BLAKE2b-256 06b47b11afb5d6684de07ddff2e45dbf7338b847ffdfe67035ae257c83c40f4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.7-cp36-cp36m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 438.1 kB
  • Tags: CPython 3.6m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b6cf562b2df0b49698c41b79fcc89173d4b43d2d6ca7bdc048d0586be08c9a0a
MD5 1325247f0bc004380cf4fdca69995335
BLAKE2b-256 0c608a65699d9e46f3fa5e23c011035ad7a4b8f358bd1fad20214453a3af45fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.7-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 326.6 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 dde0f6e0ea3e58452214d1bc9668b6c370c21848c6fbd7ff23e3eb036ec94e7a
MD5 b123c9259cef1935169164d221e37103
BLAKE2b-256 a64b8dac9d1cf0195ece86a5cd306cff3b5b6254b1d662a885784b0ac5ce3b0e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.7-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 280.9 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 48e308c9781ed60d0eafc567665092917e08e8ff003e998e453b6f76d5d2a22d
MD5 90a48619988d640319542ecb38d52a8b
BLAKE2b-256 6bf9443fbf9d65f33611210887c43d9ef938a8fcd74a6668f0d73f614ab4dca8

See more details on using hashes here.

File details

Details for the file fastavro-0.22.7-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: fastavro-0.22.7-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c1e29f416a4badc014cd3190b1ea0aab5fe575c43a775c6e39eb67352eb77d7a
MD5 7a4d95a797bd7ba533106a386e512115
BLAKE2b-256 267ff7b251c7a31305166b46e947d6d21f086d91b63f0a5c9b025f1704ab337b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.7-cp35-cp35m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 403.4 kB
  • Tags: CPython 3.5m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7-cp35-cp35m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 472f873d03945b24aa988e202842d2c0be3a0707c1f161bdfcb6bf366ff3670a
MD5 1765816ca1c7b9fb880f5714f9ffaaa3
BLAKE2b-256 fd18e4ae7cb2eb9a26824ad9758753f4ec0d4310516a2280522bea9ac796a6f4

See more details on using hashes here.

File details

Details for the file fastavro-0.22.7-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: fastavro-0.22.7-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 671d6e76a308d662b7fb45ecd162149deef825bfc8e9c29f453b1b2aad35e4f1
MD5 3d58280a532244f4180536f9bf57b653
BLAKE2b-256 8c68d71ca0387dcf4a913d70ec20129f0f9922531f4f72faca1df7999fdea878

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.7-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 324.9 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 c97aa289b972bbe03c7310d39e4816198e0a3a749df14b9986f5aa4f22aa7b26
MD5 2ff544e4c4786afb73c6de5ee326d600
BLAKE2b-256 fb5f2929962c369c643dc39879fd2a16fb333012dffefa54ff102bf3238ba186

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.7-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 281.7 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 a4ac4bab4aa58a94e983c227547ae463ca85d1a248218322a04d0f6a2b5bd2fa
MD5 7b2a16c3bb2144b5236e3d71dd302052
BLAKE2b-256 7689ba16918932fe7e1d1b8fe02805cd2e2310889811a4e52d10d4dbc767fa34

See more details on using hashes here.

File details

Details for the file fastavro-0.22.7-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: fastavro-0.22.7-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cef5f4a9e14fec7ef20d4ffc83478f64e7fbb93e7fc7a58800829887d9f0bda3
MD5 76b5d29b5d9513c0f9d08a844ccd2d59
BLAKE2b-256 6b374df9e7a88fc5919b2349ea5d041cafac45df3bcef64f0dfc4a122ad3661e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.22.7-cp27-cp27m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 403.9 kB
  • Tags: CPython 2.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0

File hashes

Hashes for fastavro-0.22.7-cp27-cp27m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1f3b7f23005c423fb9c6e2a933ada01bca3962fd266458055c9653b1c9c3d16c
MD5 c55deaed76ecf92d233fc1fc53bf6242
BLAKE2b-256 5b9ad8080b337face9b7f560cb45e1af20c5d67ea776eadce95990c315195935

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