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

Uploaded Source

Built Distributions

fastavro-0.23.3-cp38-cp38-win_amd64.whl (374.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastavro-0.23.3-cp38-cp38-win32.whl (321.0 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

fastavro-0.23.3-cp38-cp38-macosx_10_13_x86_64.whl (453.8 kB view details)

Uploaded CPython 3.8 macOS 10.13+ x86-64

fastavro-0.23.3-cp37-cp37m-win_amd64.whl (361.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

fastavro-0.23.3-cp37-cp37m-win32.whl (311.6 kB view details)

Uploaded CPython 3.7m Windows x86

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

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

fastavro-0.23.3-cp37-cp37m-macosx_10_13_x86_64.whl (441.9 kB view details)

Uploaded CPython 3.7m macOS 10.13+ x86-64

fastavro-0.23.3-cp36-cp36m-win_amd64.whl (360.2 kB view details)

Uploaded CPython 3.6m Windows x86-64

fastavro-0.23.3-cp36-cp36m-win32.whl (311.3 kB view details)

Uploaded CPython 3.6m Windows x86

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

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

fastavro-0.23.3-cp36-cp36m-macosx_10_13_x86_64.whl (460.4 kB view details)

Uploaded CPython 3.6m macOS 10.13+ x86-64

fastavro-0.23.3-cp35-cp35m-win_amd64.whl (338.7 kB view details)

Uploaded CPython 3.5m Windows x86-64

fastavro-0.23.3-cp35-cp35m-win32.whl (291.9 kB view details)

Uploaded CPython 3.5m Windows x86

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

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

fastavro-0.23.3-cp35-cp35m-macosx_10_13_x86_64.whl (422.1 kB view details)

Uploaded CPython 3.5m macOS 10.13+ x86-64

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

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

fastavro-0.23.3-cp27-cp27m-win_amd64.whl (339.7 kB view details)

Uploaded CPython 2.7m Windows x86-64

fastavro-0.23.3-cp27-cp27m-win32.whl (292.7 kB view details)

Uploaded CPython 2.7m Windows x86

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

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

fastavro-0.23.3-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.3.tar.gz.

File metadata

  • Download URL: fastavro-0.23.3.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.3.tar.gz
Algorithm Hash digest
SHA256 ca8395bdfda867ab8a6410c36cfffce72e1560def832f7a4fc5bed7436e46051
MD5 32f847d4da37eb0da8967cbd630b2712
BLAKE2b-256 2d8f213a449898de8dc98a9d1e4405578d7433064f3337b7f155b6893a0e9d1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 374.1 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.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 882164146bc386cc1494fa64fa25f586fef50cfbcb69fa3c96538be789f9550e
MD5 67e99986ff3c882ea1805d84fa808133
BLAKE2b-256 9ab63b1e2107b419d9b2a82317c99b46b6791b385d0f9f09c2944b9a80499f6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 321.0 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.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4d9b57fe5dc2580e4b99d38450766c4bb36c57493f1ec8691ae632eb86961bd1
MD5 816d13b6c418dfbe7c5ae9faaf294bbd
BLAKE2b-256 a24d3c3ff544c9bbe715fde698690dc21f48005fefb63d0d7055618460ce5a48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.3-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.3-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 89e02093dea5be5c989dfbc611358402654581ce9a09d9dbb38e04b6986738b6
MD5 9523e27cae534b8107caa383e862bf7e
BLAKE2b-256 18a2fb2bea2a9dfe2b65027b37fb6f75123eecfeafe058bdbe8a7626625c461b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.3-cp38-cp38-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 453.8 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.3-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 94c0aeb00f1fa2b43687aa07aa40a841f81bd98f7e2dddf4dcb7a699b123a6b4
MD5 395225da2825cb62404a2fb87b8bf14b
BLAKE2b-256 269d73dba0265358e8e6a3ef9e2cf942a892c021466fcaf596aae35dbe6d08d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 361.1 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.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8d7d9442f346fcba9738b39cb27c5dfda0b03e50928ed7b07b9283db0cf10c77
MD5 f38822dfa2e8e92bbf085a6e2ab86705
BLAKE2b-256 1641ec966430bd76626d320b7d2eb2eb4c27cb9f0bfc63f4e55d1f5758254f8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 311.6 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.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 fce47afcc80eaca492170e0a02aacec4257dd72a3f8f118ab92630711428f545
MD5 489fde36db92e860b2a8dbf1956a5bd1
BLAKE2b-256 061e80533cde896af6b6d0af4704ea8d972810cf8c7cc57ebff19c53356d7009

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.3-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.3-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7113b89aae1f1e347fe46174d8c651cbe1978c99a8f915e54b1ee2941e57541d
MD5 9e6ce8ad7492f9cdee1d51da1300e38d
BLAKE2b-256 e0eddbeba82b8b621db35b0a9cee81ce48e4aa1da66472adc1e77b32b16d0e81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.3-cp37-cp37m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 441.9 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.3-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 572f00432c27dd2427209071b6e7724588daf7fcfd1144b005945ee69dbb66ed
MD5 da4e2a0de099a3820b7368d0c0ccc9a1
BLAKE2b-256 b8bc64eb3ffaca3020dcf7bcf30139f96cbb1c8cf0ceaa2f8c51708a79b2798f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 360.2 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.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4ba5db13a534585553c7319ca0828df47a73ac851884a1fcf02f90730fb47bfe
MD5 6fd579b538caa64bf09b97a011cc1622
BLAKE2b-256 6ba52a6ebbcb9cb2813114d22e4ac3e70a02fd744c37fd71adb724433edbf923

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 311.3 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.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0e644747980e88c0293ecbb3babcb4569ff93746a59a8d1746e82b85d6659c91
MD5 53e223359230ba624329a9a3dd2f3a95
BLAKE2b-256 130eadf9447917ad62ed38af11f88ab47d1b923ec5a0ef9ea278c8e23d54ef66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.3-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.3-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3662e4005f735a45f0d8f990ce38577f64f0ed2dd508dd94d2bfe5e16884814a
MD5 a80ab703ec63f6c916160a10fc7540e7
BLAKE2b-256 51beb6303506125a35348aa38eaf4450b294e86a21f93712c4134cc19a9803c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.3-cp36-cp36m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 460.4 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.3-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 20087b3cbc4330a221980ffaed50dc05919b5a4283dddd5df3e7b396a5e63e0b
MD5 6592387fe603c9ba8ef84eab379b677d
BLAKE2b-256 3f7920087a1fe6bbc861ba11cbfc0038a0857347c71094a7e597fb7c297ebe0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.3-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 338.7 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.3-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 efff6dc01871ec41893dbf7f61491d7cd8d2d66e2e79db971c2b74ef9af71631
MD5 10dd3d2003f6fc7b58e3023532a350b0
BLAKE2b-256 4a53ee2f86d68c7c7b69414c40b526e6a65c373a5f95917935c20995882d4946

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.3-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 291.9 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.3-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 7d3d0ad69dc0efe08f4ffbd2e33346631919456c7d66fcf2649b76d3cb4aca34
MD5 1a5b57b25440631a4a33c591b2449069
BLAKE2b-256 b66182064fdd0c00e1da568d8741b4deb1e56bb2588e46330707428c05b21085

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.3-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.3-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 eaba65bf1b174bce9ef7000270093a88da0141ae41c6fce9ba22ca60fcbd85ec
MD5 ff7d44df013196cb7e087257e6080f06
BLAKE2b-256 8509b6fd50e63c7fafbfea730cb0892a5f46e7f4dcf25d9a66982eb4e454ef48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.3-cp35-cp35m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 422.1 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.3-cp35-cp35m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 62b6527a3dc928401db5759b78b3d47fae13ed45406debe573c7b93930d05da0
MD5 8cd2f4f55fdab1f10693ae23ddace580
BLAKE2b-256 2ef51304099e765bacd627e920e738532b57828b57ad0d3d91501f434e4864b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.3-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.3-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3afd7d95a1457cc5a2bb82f6af3d2167967929c64dcf2f873a267b2fa82931c4
MD5 0a4ea75518c41034a2fe7d025790bb25
BLAKE2b-256 c1937ad6c779a49b1bd4559d4411215c9385f68eed0703f1a9b186e1fc6ce801

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.3-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 339.7 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.3-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 56bc5f7f39ab00bbb7aa87838039e3a54c88806c3834ba32f5e2282b92d33abd
MD5 00b0720cc8e1853548cfe4c67bda7145
BLAKE2b-256 2f03de2b792d085dffd7d7817b85c4458db7384da3e745de2d78b3ebe61f061e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.3-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 292.7 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.3-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 2c8c1de0a95eb0117cae89714f7ba82c8dc7d12176b64bdbb2048be7d13cc573
MD5 f80bcbdc7a148b2346d2f5b845a2e079
BLAKE2b-256 1175e4a4646c2fb0468ae40790df74e16c624128e32ae33b502404ddb3f76f32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.3-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.3-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2d3253856ea4139e894efb396b136a52dced691650085a822f0f640b4ed34d6b
MD5 3ad44e12a7d58a29a19f545882c3436d
BLAKE2b-256 dabe114197785520fd0570b70a17df95290eab0a7567c55b62a187ff939ff440

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.3-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.3-cp27-cp27m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 14ed80a0aed8b0ed91e72463a29296c6a7c6c80f11df17d118c68e7b982af3b4
MD5 e36ef55dccac985e140f99b0cd0d0d40
BLAKE2b-256 ee4c3adc64f987e8291a88a0f7cb6b8aff3c60f3b9c4697bd9301cdac2e4d6ed

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