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

Uploaded Source

Built Distributions

fastavro-0.23.0-cp38-cp38-win_amd64.whl (373.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastavro-0.23.0-cp38-cp38-win32.whl (320.5 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

fastavro-0.23.0-cp38-cp38-macosx_10_13_x86_64.whl (453.2 kB view details)

Uploaded CPython 3.8 macOS 10.13+ x86-64

fastavro-0.23.0-cp37-cp37m-win_amd64.whl (360.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

fastavro-0.23.0-cp37-cp37m-win32.whl (311.1 kB view details)

Uploaded CPython 3.7m Windows x86

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

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

fastavro-0.23.0-cp37-cp37m-macosx_10_13_x86_64.whl (441.2 kB view details)

Uploaded CPython 3.7m macOS 10.13+ x86-64

fastavro-0.23.0-cp36-cp36m-win_amd64.whl (359.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

fastavro-0.23.0-cp36-cp36m-win32.whl (310.7 kB view details)

Uploaded CPython 3.6m Windows x86

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

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

fastavro-0.23.0-cp36-cp36m-macosx_10_13_x86_64.whl (459.6 kB view details)

Uploaded CPython 3.6m macOS 10.13+ x86-64

fastavro-0.23.0-cp35-cp35m-win_amd64.whl (338.2 kB view details)

Uploaded CPython 3.5m Windows x86-64

fastavro-0.23.0-cp35-cp35m-win32.whl (291.4 kB view details)

Uploaded CPython 3.5m Windows x86

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

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

fastavro-0.23.0-cp35-cp35m-macosx_10_13_x86_64.whl (421.7 kB view details)

Uploaded CPython 3.5m macOS 10.13+ x86-64

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

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

fastavro-0.23.0-cp27-cp27m-win_amd64.whl (337.8 kB view details)

Uploaded CPython 2.7m Windows x86-64

fastavro-0.23.0-cp27-cp27m-win32.whl (291.6 kB view details)

Uploaded CPython 2.7m Windows x86

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

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

fastavro-0.23.0-cp27-cp27m-macosx_10_13_x86_64.whl (421.2 kB view details)

Uploaded CPython 2.7m macOS 10.13+ x86-64

File details

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

File metadata

  • Download URL: fastavro-0.23.0.tar.gz
  • Upload date:
  • Size: 560.2 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.0.tar.gz
Algorithm Hash digest
SHA256 77466543e42f536a0b6a5c4db72a99c571eb93368aeb29a2cf328c5b92c45c86
MD5 5beefd8fce4d00d50e4bdff85f5917c5
BLAKE2b-256 eee8390d34eaa21d18dde77baab09d7eea680bea956dc04b0bd986972a968fbe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 373.3 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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 99b9a1e619038cdcbe81e27ec6b4cb1d3e9ed05f2064d7811533a5173d0d9c2d
MD5 2b22239782e5838ac076fa86a4fcc3e4
BLAKE2b-256 4dfea8fec2ff841e5fbc3a4559cb58dbfc0bc97f15e9e9ac015a91beaa2cc809

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 320.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.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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e02ddb316cd7233366763d495b90491eec8dd26cb5d275244ac763676c8a42a4
MD5 963bce1c8a8bcbf8b83fba858a8a6b17
BLAKE2b-256 88ddeedd7dd17e8161be93a911d2b56f1f8f743bc48db9e0788c2c833e465f98

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.0-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.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2dd56f781d4c9bfc7c9519dd43f9ee9320c677efbd8a61eed42bd54b3b6956f3
MD5 15ae2553abe17d545527cab086c7c4d2
BLAKE2b-256 6475da2c131e7e112985fa95b8ccb7792446a66ba2d9cf0a419d38e1c1a25f07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.0-cp38-cp38-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 453.2 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.0-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fb525a833c915247bf6d5f5fa09e59a5f86d19e12d0bff0f6756c0cdbc33c3c1
MD5 a4e5d1e045f5130d9df73e5d4cb96235
BLAKE2b-256 1d2c9f9a4fa21ed661a5ce730cebba93556b549c9fbd5f01773ec654bd167e02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 360.4 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.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4de35434a7224562152e9f68abb88500e7bf735ffae5c34370c64d71d866a6da
MD5 83e8f88416a7a38401561a90dab66504
BLAKE2b-256 48b37fbeca1d35a7d2ad1c90e25d2424bac6778d8d1abf55cb3e660db5a4ff85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 311.1 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.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 31af7de989e6cf495d8a8571aed4c36206225fbca2a9631544e37853af0db49c
MD5 b93cc562ad7ff0eab7d1211a04ba59fc
BLAKE2b-256 a519982de7bb6bbe4f2df81120d23dee824255d07f8693fafbdf22de6b92b627

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.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.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.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6bc7ab0d8f39bd9dd8644a6661048e45c32937c72807a600898f7a8e8cf12ac3
MD5 1b5066462d4167d211eb23fc5994744b
BLAKE2b-256 21d00a613ba7d1878eac8919909be668df1d7a4391036b513d498c406b60291c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.0-cp37-cp37m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 441.2 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.0-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1ef818df7a1260afc1f6e166f2ee68c6b4518af5d71f00a1e48dc77e989902e9
MD5 1e84ea8fd3b384ccd46222f91cbaf880
BLAKE2b-256 08e5fdd865a7d69a92b52c194f039f1e474f8c818359a837460af8061e9e074d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 359.5 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.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4c9c1dffd35d02c74c46140f41e05424f7f5e283b6031df1fad522a3f9b09918
MD5 ba0aa44250c52225bc0094f38466426f
BLAKE2b-256 34e030184503d0ea4b6cf117c60ac946cbf74163b4f127d3fc9b4d54d47f1eff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 310.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.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b19b13d2b6641a6636b7b8c682d7c187e57916c96c9000f3a20c7066e852ae19
MD5 af1f9f83cf6f433e602e30c08605e741
BLAKE2b-256 23fbe8d1dbaa92306dab61bf5a89179e39567d636539adafdae00b5dde326309

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.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.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.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c87126770d19846d1d3b027bddcec7e18cd6ef6b40d450eb824135033d3bca21
MD5 25566a02f8c145b74d1da94e2f86dace
BLAKE2b-256 5c4e7c06a1484e72c0179cd05d4422f311f40228d84f7700c1f7877c5e3ea4ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.0-cp36-cp36m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 459.6 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.0-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1e833c1c671152ac3630b5bb064672feccd9d845ea434a6d5daae768d3967a0a
MD5 2e32cc29f8ea7dbddb758825ba371921
BLAKE2b-256 58bf99dfdfafa6af419b90196eb6a9ca2d5022f99437c24f5d91ca469caabbd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 338.2 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.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 d31ca0335e2fbd69218f23b2ea5852ee16c09ec1fc76cafb81330a5f95654e37
MD5 1288bcd36eecc587de3e64eb1a3f7d50
BLAKE2b-256 a9a9e76e0f020b57c780d12352c46a7cdc6b0115abd6c819da358ecccabec441

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 291.4 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.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 720d6c68c918dd73f48cd849acad1705673e58a6af4966c46761001821243bd9
MD5 6b495385f6672bd1d0b61fc3f51d9e1d
BLAKE2b-256 fb4c9c1f57d498fbda479eca0c9b73837de56dea4874c20a656281598c8ea0dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.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.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.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 085230be7d7385a3a1d7f438e2de5f08a20d93d48f96074bfcc7bb507b3beb09
MD5 19c20309864eb3158ead8e6d3d3b520c
BLAKE2b-256 ff313969b3625f3728e1a24de68aa76b85c88e8c5593198c81156ca3b9865b55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.0-cp35-cp35m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 421.7 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.0-cp35-cp35m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 018a6d1d62a8f34c39aa5eb8a1b7fd924f1cda0c4094ff038140ec62528f355f
MD5 f364a51241d3434099768db5a9404208
BLAKE2b-256 9ef705f715138a426c766883652a04432c0f4f4368883429ee2c37273727148e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.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.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.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e96cd6cee608547934d6743db16df50760370d2a335f32ad58b0cc23b67deb2c
MD5 429c39e092c7d9bee1c9f3e61ae4005a
BLAKE2b-256 3dd8555aae5fa9cd337e1cc652da4d52f82d4b980aebe33f8aafe2020540963e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 337.8 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.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 811bcaba0b455159dee3b9711084dda7cd8b9a88b8933e9c62c081a80b32ecf0
MD5 5365874f102b6431b94f8ce2552f8e02
BLAKE2b-256 335bd4c65e40dcef7e61b217e89f52d8d3ce4fe62322bb1680ecdb5403acd91e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 291.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.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 02e147484f7794b6ef734864b17d47171cdb0e74d65f74b765c4beedbb72ae27
MD5 24f297c97658333bdb283a2bb8a1563c
BLAKE2b-256 386184df97d009941916dda466ea66843c87bd7d16fbde72684e4a151f594d11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.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.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.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f926e7d93e8425ed87420a064272bb7c86215f35ecf619425d27c6085c60a925
MD5 b8a476b19b710b32c3c74489b8ea0836
BLAKE2b-256 5de34e6d7ad8e219a8b68a984724cd31fad4c9a5962011ffd21c40a876e4117f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.0-cp27-cp27m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 421.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.0-cp27-cp27m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 43b6d4a92aa5bd0c8cee93fe4b3ed40dd2c556d0712c797a9a9744b9242b84e5
MD5 53cccb590bdb016a1e93b685df7521a5
BLAKE2b-256 d6e34df5b953336a14964b44d6788672eec2f7122e838ed16fff367950d15f21

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