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

Uploaded Source

Built Distributions

fastavro-0.23.1-cp38-cp38-win_amd64.whl (374.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastavro-0.23.1-cp38-cp38-win32.whl (321.2 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

fastavro-0.23.1-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.1-cp37-cp37m-win_amd64.whl (361.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

fastavro-0.23.1-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.1-cp36-cp36m-win_amd64.whl (360.7 kB view details)

Uploaded CPython 3.6m Windows x86-64

fastavro-0.23.1-cp36-cp36m-win32.whl (311.6 kB view details)

Uploaded CPython 3.6m Windows x86

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

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

fastavro-0.23.1-cp36-cp36m-macosx_10_13_x86_64.whl (461.6 kB view details)

Uploaded CPython 3.6m macOS 10.13+ x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

fastavro-0.23.1-cp35-cp35m-macosx_10_13_x86_64.whl (423.3 kB view details)

Uploaded CPython 3.5m macOS 10.13+ x86-64

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

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

fastavro-0.23.1-cp27-cp27m-win_amd64.whl (338.9 kB view details)

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

fastavro-0.23.1-cp27-cp27m-macosx_10_13_x86_64.whl (423.1 kB view details)

Uploaded CPython 2.7m macOS 10.13+ x86-64

File details

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

File metadata

  • Download URL: fastavro-0.23.1.tar.gz
  • Upload date:
  • Size: 561.3 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.1.tar.gz
Algorithm Hash digest
SHA256 3aa5247aee22dc8d30a0f917245b22e5da16d425ce0d3db18453bbbd6fb31313
MD5 acb847156880f7caa82b7af429161976
BLAKE2b-256 748aa87920e63af766c497d1d48b33b587b789c82c061536ca117b3cb5e4ac9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 374.5 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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ce4dacd1418b73aef480d25727b6eef99974ebaf988862a801435585106978dc
MD5 40daa1ce539d061ea7a31411d4fa31d2
BLAKE2b-256 c5f46304395cb3374e5b5cd1112373019c6810ac76dbe46d8da55822c1a4a247

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 321.2 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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3604450401fee5bbabf1f79b71ece4bef8b154caf508c6463c0d2a723a7b526e
MD5 378e9e818cf37c605f26b8454d791fac
BLAKE2b-256 22a08eaafb232aa03335baf388b0a8ac3d1e576fc911e5317d1e9f9ad3a7b466

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.1-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.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9a0ae23f5b802af0fcdfa1183eaa38ae0aa73da2e07336db70f140b94429ddbe
MD5 a84d88357ba8f52b895bfce50c612858
BLAKE2b-256 0ba5ad453617cc038c22173e4e5ce2990c478a79a8600c19aa1045664de9be88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.1-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.1-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8075a2296786f9a5f42f9c96cb792c1032c96b27e6f5c2172c69a8b1abdf4110
MD5 da75f8c7658c692acec9349511fbc5ff
BLAKE2b-256 878541f586a481edc2ce2309b03272c8ae1e96bf083501bb1cc1e49044e25d70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 361.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.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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e970d75ef516629b0ffa1f7a62155c3e8edefdcc95dcce895f50eb0080a45014
MD5 fc3b9112cb2c0a61a20141e25fd8126b
BLAKE2b-256 401b4a45157e7caed4d4c4928c922fd0a11a407e080ccff45fb437677f054775

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.1-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.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 bf69cb3260d684e3df8103b8073b72b065ef428589f4f06fa58abf2c655e1744
MD5 8c6732bb898e96ec15f44b1171d4df0b
BLAKE2b-256 1d5d2dd3f7b374cfb233102c73b29bd4a754fe994a491a3546174ef860b5be59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.1-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.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9ba7d530c1f1c89722454913162057a593e332d6b9a50518d72e0429b98f30f9
MD5 7b491a2c4bc4c590603278c66b5e015c
BLAKE2b-256 5ce71b8dd87044c22580d3fb8bb6930f6ca012f8e54a77e5825676e44286b87a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.1-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.1-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bf9e4ad3fdd077b45de0f304f92a7211a9f466a967d30e77590d9e0e16967ab7
MD5 ab852edd22a58df3302038e854114d80
BLAKE2b-256 65d76b6fa342cff31e19fc6dfa53f5350fa64a0e120c77b97e5170c1714e8bd1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 360.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.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.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 fb49258e772e4f5dfc4d26cfbae00b4194ad2e081d6521cf3f8583164c182849
MD5 bc2e718f8b050933123f3e84b11e275f
BLAKE2b-256 ca13957081186b4804fcbf56c26f31bebf73c3669bfc3bd0e4ef7baf3625693a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 311.6 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.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ccf61827a1fe253287a650d7dca4ec83b83bcc0661446addd9824d83e95fd302
MD5 05623ebe3d42d376cfc8160a31290d25
BLAKE2b-256 b9105d9826931629e6b15270018f06e015c2fc322fd8ffa5e8c9e9e3402cb38c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.1-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.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cc6ce96e480c8cb223dc9b40e62e2e0772898010bc7f2626acf303ef76306791
MD5 a8076ba10213a2af0567c9b38d68dd3f
BLAKE2b-256 44501ea274453b337118dbadcdf77d3bcd0dd5d0a0c94837922b9e43af9d3e3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.1-cp36-cp36m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 461.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.1-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 635c97d72ba6eff55e9b8c5637290081f9d1b0bc786c3faa65ce1a65d34dbc41
MD5 3c16aff0cadc713003cd086e868b9d37
BLAKE2b-256 a8a741c834bc2a64809174882de609031132c7f08a70ad054c464554e8c0c2a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.1-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.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 8b3c121ff9ba207760857bb24e3f7005e05f5d6b6b4184d0005ce1216646f1a2
MD5 1a214f7cbb226be71157a18865a5f7a8
BLAKE2b-256 e9d633993a70578473a215f576ce0a01f93fc81c3282d7bff9f458d857e72f3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.1-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.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 ee04c16d13f6c8a612ac2116fbdfcd9307a221d1e3faa05e13252427adb33a86
MD5 89bdb5118762d167071c87d0dd19f547
BLAKE2b-256 8d4f7bb599e9fc6247bf84d2296a82b25e46cf77db87b60bd57c259d73b7e92c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.1-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.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3f265c84305b96ccfd5bfa1ab58a03f9cc441b7bcf8dfdff78a5b1ca8d928bd6
MD5 f3f7fd730917da1785c5abbf1b0540ce
BLAKE2b-256 609385c597e96be30cc406df3db577debed713e0cafe12bef16b1616c99319cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.1-cp35-cp35m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 423.3 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.1-cp35-cp35m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6a1fa931b18ba43d5d7c189e2679b0105cc30d89a7cd55bd458a71c496732eda
MD5 50c8a41cdafb447da94e91577f278d37
BLAKE2b-256 aef9b4cc82f3711b4409ee89165d13bbff86cd753125e1594bdad5b286fbf25d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.1-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.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d2cee9986a2aba00180eb18f6c0a1c3a87ff23d2e7a7bd72f00c746f84bb142a
MD5 942910176b651286ec668a973a42fe8d
BLAKE2b-256 e4b9b1c03d4b891f1ed64dd4b6f1b6c1c303ddc8d58290dead1dfb7cf4f71faf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 338.9 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.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 bbbcbfbd16366376be66341f73771e126b97943ce02b8975e354ff3c7bde21ef
MD5 4dde4b39747c2affbfbcc6e1f5715671
BLAKE2b-256 84888e44ae35a02a11fa205a85c39a89475c47870f062081998ed02e5ea3f0a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.1-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.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 d3727d15b59f4541fb8379daaa84a83c3f858b0350ab482fb5e1008dae0f664f
MD5 be1d5dfd07c3381b0565eaa7fe32f378
BLAKE2b-256 7f058313883da10108d075f6b98eeab3d6a8e4559c3fcc1fc7c5c2fda214ed97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.1-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.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 66d7d0fcd9ea5482e02f039a213832f4cb144f93902140b35758f1e269f29c7a
MD5 a455ceedc645accd88906f2066d33da6
BLAKE2b-256 7ab75ad3b27b2d833d9e10597b83867a23ef1d9d47aeb0541fcb55662230d9e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.1-cp27-cp27m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 423.1 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.1-cp27-cp27m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f669475578223e1bff703319dcfbd771c5b7362e07b7739a36cfc8eca47fedce
MD5 1e58b0f0cd74af76ee500846a46def01
BLAKE2b-256 c32c859ed6e55a703faa0ad00adcfc919e690bfc6bb85699c7754e7b1955766b

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