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

Uploaded Source

Built Distributions

fastavro-0.23.6-cp38-cp38-win_amd64.whl (348.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastavro-0.23.6-cp38-cp38-win32.whl (306.5 kB view details)

Uploaded CPython 3.8 Windows x86

fastavro-0.23.6-cp38-cp38-manylinux2010_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

fastavro-0.23.6-cp38-cp38-macosx_10_14_x86_64.whl (433.1 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

fastavro-0.23.6-cp37-cp37m-win_amd64.whl (335.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

fastavro-0.23.6-cp37-cp37m-win32.whl (298.1 kB view details)

Uploaded CPython 3.7m Windows x86

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

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

fastavro-0.23.6-cp37-cp37m-macosx_10_14_x86_64.whl (420.4 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

fastavro-0.23.6-cp36-cp36m-win_amd64.whl (334.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

fastavro-0.23.6-cp36-cp36m-win32.whl (297.7 kB view details)

Uploaded CPython 3.6m Windows x86

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

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

fastavro-0.23.6-cp36-cp36m-macosx_10_14_x86_64.whl (440.0 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

fastavro-0.23.6-cp35-cp35m-win_amd64.whl (313.2 kB view details)

Uploaded CPython 3.5m Windows x86-64

fastavro-0.23.6-cp35-cp35m-win32.whl (277.4 kB view details)

Uploaded CPython 3.5m Windows x86

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

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

fastavro-0.23.6-cp35-cp35m-macosx_10_14_x86_64.whl (394.2 kB view details)

Uploaded CPython 3.5m macOS 10.14+ x86-64

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

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

fastavro-0.23.6-cp27-cp27m-win_amd64.whl (314.3 kB view details)

Uploaded CPython 2.7m Windows x86-64

fastavro-0.23.6-cp27-cp27m-win32.whl (275.5 kB view details)

Uploaded CPython 2.7m Windows x86

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

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

fastavro-0.23.6-cp27-cp27m-macosx_10_14_x86_64.whl (397.1 kB view details)

Uploaded CPython 2.7m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: fastavro-0.23.6.tar.gz
  • Upload date:
  • Size: 573.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6.tar.gz
Algorithm Hash digest
SHA256 47e1180022823cd03cc979a3f8a47b0721e73e98eebebc9015aa89c1019ac889
MD5 e57b780a13fdea1577727446ac0e0d91
BLAKE2b-256 eebb8dd21f0791a6b6f1bd727d63e8814eae1fe169e388876b2dfdb5136554a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 348.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b740d507006f9f4c798222c417055fe45dc74db73ec606c3247236cac582e885
MD5 5a3acdfc84c7db3ae051856e81f7a4eb
BLAKE2b-256 54c93b364ebfb1a0c8c05cc6325b91fdd6442123a303acd0e368bf3dafdea5ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 306.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f4effd7663b7f9e733eb42ded30e718904fe889405853dfcaa64819a590b9c26
MD5 75ca8b0973c72e2dbbddf4f2ff5df0f6
BLAKE2b-256 39b67e5c74fa91c65f37d8706055ac92707eaa1a3755e17d56fa2a31bbc72779

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.6-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 16783b2e8091eb2de0ce579cc8865720e67b9b701dab7f8ea86e9fbb0839f399
MD5 019acc947fc89630f0af8df7caeb2e01
BLAKE2b-256 3d8a38242ad17aa962a86c13e02789a354b0f490a5c0a113bdf683eccb2c093d

See more details on using hashes here.

File details

Details for the file fastavro-0.23.6-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: fastavro-0.23.6-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 433.1 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c5861eec6813dd630e0bdf1ee8c4a9b65eff71039c65c51de4a3b6c63bc8ca76
MD5 82c485a277ac4d9b3e32f72a94cfcd41
BLAKE2b-256 df4c2d17c9f10cbc410a64ad147d92c7489ae37405b0bf48ab3b26fa6fb1703a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.6-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 335.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 20e83360493cc73abf143f9322217fa9fc9b31971afec5aab9a3d59ee0fd0314
MD5 4a52367ddc11baf3e9ce5561f2a82705
BLAKE2b-256 f7ce8992b7bde43089a2765aa7b7b57bd704ebcb32a1aa8ac6d1b3182e82a04c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.6-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 298.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 33b6b581d7fd0719b62b6a4ecf436f3a9b11f427753d28dd621841e5223e07e5
MD5 4d0b537157aa1de4024ba296d4ba647f
BLAKE2b-256 29344df424657cb63332d3dff79c8ae7a25080f92d7fdaf4300bfb2b3d860968

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.6-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.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ec917b529cbb7a1d59b55f5ab471f9c975ef802a3fc7204a3cca0aec695c1ac9
MD5 3da3d2bd02ff80eae077e52369420e96
BLAKE2b-256 86726e5bdda35e3e2b216b8ec9711fef894fb08394bd842e08481982fad8c424

See more details on using hashes here.

File details

Details for the file fastavro-0.23.6-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: fastavro-0.23.6-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 420.4 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f11a3559e1174fc6a449bb1a42a6c6bbabbe42dddc73a78b0ab711ca40f034a0
MD5 9872d3a8e8f091933d7818938c3ee3fc
BLAKE2b-256 264ffb1e040589392579352bf2f01faa542bd827aa7c19d9a35b8d662bc2d858

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.6-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 334.9 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 bed3642543363d00ddbadd88098678806dd6be7aa02445728250045f774dc15b
MD5 b12e9e4d80d5475471009d44e9013825
BLAKE2b-256 fb6ca9abc2cd9b5a831ed8e68ba2c32462d2763298caa27081a813d947b99690

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.6-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 297.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 fc5c3048d38d862075703ec484133289388e6f2b0251e91ce770d3cfbc37ea21
MD5 68de0ef27d43212acda8fd183dded528
BLAKE2b-256 dbfa5954f61d2383f6dccb2bbdd66c13958f61a550609252629055586b5e459f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.6-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.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 62141efacafce00d40a5106e298e9d93b07e86385833f9d2f684b8cd6325ee41
MD5 174a09276b455bbcc8375b8f5dd1950d
BLAKE2b-256 988e1d62398df5569a805d956bd96df1b2c06f973e8d3f1f7489adf9c58b2824

See more details on using hashes here.

File details

Details for the file fastavro-0.23.6-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: fastavro-0.23.6-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 440.0 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 7e3b032a339d45bbabc073662ae12a857cf481fe42c65381278d956bf9010b09
MD5 e0203172897351bfa7dd7f8ff64bab8f
BLAKE2b-256 b264d37d81c8e65104bc2c0354b9db7b7a01514fd624c9497dd5cce6a0d5c2fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.6-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 313.2 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 0f1417bdc13531451aaef991290ca348cc9320915c4ed152314d94b353049490
MD5 86bb1ef58c3a581b85b3f4aea8ce3fa9
BLAKE2b-256 6336b638ab030c6f5e9db99783420e75d39f26305e5839f051d87243e5698001

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.6-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 277.4 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 bc586311ba0857ffe832ae43f71df3d5581dbd84ddb9f18d5fed4d250f253849
MD5 c5190c3fccb4b427bf63a82a988ec3c8
BLAKE2b-256 f5bf88dd4fc35b5f0b4714e221cbeb87f1ba80c31e3977a3364ac3cf39b7b9b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.6-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.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 78d805b785470828f3a0175ce120113eca0cfe48238d055e24fead6fe45da443
MD5 4e2fe6c2fe9b91f380c5c5a16a3ce0c9
BLAKE2b-256 3f6f645419cc500c634d82e1cee8690fd8d251dc0ab6306cc65154042b093353

See more details on using hashes here.

File details

Details for the file fastavro-0.23.6-cp35-cp35m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: fastavro-0.23.6-cp35-cp35m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 394.2 kB
  • Tags: CPython 3.5m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6-cp35-cp35m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b18982154039147c5738c0986e0cf6183c8fbe43c31504fb4d92b5c77349befc
MD5 3daab7babf08eb829b84d307343b7624
BLAKE2b-256 d9056bd17086515834c5200c5a2669cbdf614c46a273f76db611eb2565e90b47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.6-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.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 eb6fa4ac5698448290738de571b290027ec683be65052fc49108883942803daa
MD5 273385f937c24f03da77d072e5b3b446
BLAKE2b-256 e192cbbf988c2607d7f7c6481ead858f41b611ae2b5b077560888900af86e93f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.6-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 314.3 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 32533b2fc97e40de03fd31003131ccde191c156e6cf37ecd1f9a92a86d4a3381
MD5 b8ffb87067dbfc1f4cce4f89dfd58386
BLAKE2b-256 0c71af13ea490f6fa50e5f62bd24f3b055f53eca79d4e565ba6a7e2a834a8586

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.6-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 275.5 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 5138e720143d070a693f187d565a7232c1102f893153e8f229573b9bf248d761
MD5 cca0449d5d6df7b9adc5ec6768742cdd
BLAKE2b-256 7354e2c1dbd79803e66248ab4829bd10510faddcc5553b0c1dea9d7d47fbb50f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.6-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.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bd59bdb832fc1d090dcafc12b436e4313ca2ffaa012d1b269e77c229f4b999d6
MD5 d971e845db4981baf8b45ad58c730ad6
BLAKE2b-256 c771d1c87f4a12901c87db89be9f7a755789a629d76be03a530d2ad263e380ca

See more details on using hashes here.

File details

Details for the file fastavro-0.23.6-cp27-cp27m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: fastavro-0.23.6-cp27-cp27m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 397.1 kB
  • Tags: CPython 2.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for fastavro-0.23.6-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ff2cc25dd994802c158ade202cb0bdc7d463d4d776975f74e35a6c227d2e9b79
MD5 3549e972bff01ff1abdd12e013aa1202
BLAKE2b-256 8b2aba8bf6a444a38fb25ee242ba48f2702dc1127ea85bad688c946ba22bb828

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