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

Uploaded Source

Built Distributions

fastavro-0.23.4-cp38-cp38-win_amd64.whl (374.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

fastavro-0.23.4-cp38-cp38-win32.whl (321.4 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

fastavro-0.23.4-cp38-cp38-macosx_10_14_x86_64.whl (454.3 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

fastavro-0.23.4-cp37-cp37m-win_amd64.whl (361.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

fastavro-0.23.4-cp37-cp37m-macosx_10_14_x86_64.whl (442.6 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

fastavro-0.23.4-cp36-cp36m-win_amd64.whl (360.7 kB view details)

Uploaded CPython 3.6m Windows x86-64

fastavro-0.23.4-cp36-cp36m-win32.whl (311.7 kB view details)

Uploaded CPython 3.6m Windows x86

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

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

fastavro-0.23.4-cp36-cp36m-macosx_10_14_x86_64.whl (461.2 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

fastavro-0.23.4-cp35-cp35m-win_amd64.whl (338.9 kB view details)

Uploaded CPython 3.5m Windows x86-64

fastavro-0.23.4-cp35-cp35m-win32.whl (292.2 kB view details)

Uploaded CPython 3.5m Windows x86

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

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

fastavro-0.23.4-cp35-cp35m-macosx_10_14_x86_64.whl (422.8 kB view details)

Uploaded CPython 3.5m macOS 10.14+ x86-64

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

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

fastavro-0.23.4-cp27-cp27m-win_amd64.whl (340.2 kB view details)

Uploaded CPython 2.7m Windows x86-64

fastavro-0.23.4-cp27-cp27m-win32.whl (293.1 kB view details)

Uploaded CPython 2.7m Windows x86

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

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

fastavro-0.23.4-cp27-cp27m-macosx_10_14_x86_64.whl (424.6 kB view details)

Uploaded CPython 2.7m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: fastavro-0.23.4.tar.gz
  • Upload date:
  • Size: 562.4 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.4.tar.gz
Algorithm Hash digest
SHA256 4d102fbfe044c2f9006114484e16d478de9863ef78fad237a2e2792aae1a5901
MD5 002ed5d94ebad12565bb66b6f8654757
BLAKE2b-256 77dc3c5bf0d434c95336aa471469f8c2bdf695769f9ecf8fa743b91716361f6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 374.6 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.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9ddca0458fb2cd48b9cf60aa3e218ada31f5c75702375d7b1ba8cc23586f5330
MD5 3ba43566d6b918271282dc8fa3328360
BLAKE2b-256 363119cf154bce64dacf31e7f2b7eb6fd7733f4fbb40062d361354e543ac0cf2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 321.4 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.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ae1d44a7073a457dc986c610f0aedbcf703b66161c1f13b4468579c26783ca24
MD5 aab3320e07b58c7b47e85524066aa72a
BLAKE2b-256 f567462ba41790539316d79d98ff0d7d2286cf938cafb6c78dcd7cac3b7fc5fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.4-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.4-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a5cf054bec4c4fe334bbb67790f887fb573aeefd77bd0d5b36644ed3de3f84d5
MD5 e819072a3872ea49b8cbc77a414682ed
BLAKE2b-256 9316f206cfb25ec1396a1982a930b5469b1130dc8fa1e7e47717867303c347a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.4-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 454.3 kB
  • Tags: CPython 3.8, macOS 10.14+ 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.4-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 37166e275fab69f6f65274df6c251fe2038c4fd97303d293ff51f5530999c9fe
MD5 a14dc01848407fdacda92d81dc86973e
BLAKE2b-256 4d507d5d6070612258bba474c11759f88dd7acb919a8f7feb4e8ae062d314d3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 361.7 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.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5fdf0087adcd7f9b3de10345434f178e5189b4d844801ade01017ab1d7e793e3
MD5 7c75f04759e0930d97a76df41bc77785
BLAKE2b-256 cc7cf4c8f66df4d62710279e1578ebb7fc11c1498ee420e6acbcdcd32e4972dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.4-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.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 86fce92824390d402f710763c11fb877d88bdc81118bf5d31099809f3b55be9e
MD5 73ce33ddc161ebee86e3777cde2bf565
BLAKE2b-256 97b8fbc21ac798608e743ca24ca19a4b94ee9bdb318ae37b4661e11e55a7a244

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.4-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.4-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2fc309b09522b0776b456e82dd8cfb6542f78fb58e1d6113765f72f9e7b60a20
MD5 fc19aabe386c529ec164cb8084ad1120
BLAKE2b-256 57555f2f6b2c951759f2edd6396a4cc6af8d4d750e8d341f3cf5c83df11e22db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.4-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 442.6 kB
  • Tags: CPython 3.7m, macOS 10.14+ 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.4-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8c4496d29644044502187a369de066d3a3a83c3cc9089a4b9224178af37d0e30
MD5 2ce4554f89b84164df443328ca223d2d
BLAKE2b-256 1fc878260ed4ee1e24d44f7edf09fdfbfc8da706a4a76e422e56cf876dbd45f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.4-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.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e1fcc9552a26e8ad6c2c03f9cc81f74d1c6624fa5f0ba369113abe37c027ea2d
MD5 4c38c3d425cabea85ad2b45588ab8d26
BLAKE2b-256 961b37952a9ba1c10dd515a793b8557e1f8ac0d4ed6f996afde0297aa0c49aab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 311.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.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a58ad002aa2b5d04d391b2256e7d4b8beadb7a7e4e158860b186f988ee6e4b7b
MD5 1f42adcb7c480554bee839c4bd59e35c
BLAKE2b-256 fb4cc47a91aea920d8ab863eb98db7b6b553b83fc7ece0d8cb92d006b7f29b7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.4-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.4-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1896f4c4d1cee3caff592d4a519277cb8dc35469d70cd9a6ec7df8959466952f
MD5 d00c8738d568aff100efdbe39cd2b86c
BLAKE2b-256 9a131c95bb322b688b814fb5dc82b013e12d6b9130887e9dc36b270df79b13b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.4-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 461.2 kB
  • Tags: CPython 3.6m, macOS 10.14+ 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.4-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 507a20d9a551533c15c9f7ceff0947eead023286523e61216aa9a0c154544b2a
MD5 0b44ef9ed1cf1409274cdcab488d10bf
BLAKE2b-256 80aa7fa317733b6b91ef44382a1c9a228796a02742e1d17a46a82690e17c9b0e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.4-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 338.9 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.4-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 4ed84729021edb26b9ce6154e30e748351d201e87a7f9d909f1e10c11c1cb1db
MD5 ba685c5056ec877f5234f8a4d9827638
BLAKE2b-256 f206404ee82367e70090b12b433268cde9a64ee22ed323fa26fd2eae2f0e3805

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.4-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 292.2 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.4-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 1caa408e4ffb3a072dac9a393ed4eb8b1b652df653238bf1c26883056e97aff2
MD5 8f54a9d64af4d6e21139785eaf1df0d8
BLAKE2b-256 6e7a1826e9118fe7aa9615f6eb81025a98eaef4654769a138fe12808aa33be90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.4-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.4-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f465d2b6ef6881801a2835a9ed40a774b9da342f20e6b59c4d8e4f710279e839
MD5 87e54c26b26cf40447ba1cf800a1f5b5
BLAKE2b-256 6448ca15c9f8789ad3b91b9616f1c15b1f794fbc8823b9e189e45d04efe90dd5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.4-cp35-cp35m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 422.8 kB
  • Tags: CPython 3.5m, macOS 10.14+ 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.4-cp35-cp35m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e841daa991e5221821bbbdcd212f73bf13009d3edf80b7e752569806a6502b27
MD5 aaeab6636fca189c810121e519b22ea7
BLAKE2b-256 8217849837e3d0965fa4c1c350ea4578aecae7aab64d3eff0284781647dd97f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.4-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.4-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3fdc9df8edf9ae73085199daa5833b7389061dbb7809842a2b3de5cec26642a4
MD5 4773531b33cd6ab2b13216d7db7e36c6
BLAKE2b-256 2046f28d5c2f6fcaca7aaac36e2f136f80a31acd6b86bbd919b6587b8fca814c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.4-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 340.2 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.4-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 b02b841b7b9c5df3098977a647d6c1bbccf32c86f8ad232265df1bbfccfc77a1
MD5 14ea2b8a79a4e90576a2885bc43e9356
BLAKE2b-256 520fa95f35efae80369a2cdd87e8d51fd0c44953c612af03347538ff30c1c0c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.4-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 293.1 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.4-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 0fdfba8d82aa2d2b3b38a3351f9fe7bc60fce64696080b64148f7ef804ff72be
MD5 7acb129da4d91eccbea9e1598431eb97
BLAKE2b-256 daa75ff765c64c26b5786e54c3ecbc337101f7dd093f72b7fa2e5898ec9a3cd7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.4-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.4-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 316eda60bcd69f07a937c0adbc24589ba69a1e577f0487e43bdc78f736076f5f
MD5 c43fb8da749e9cd0cf622dbe22fb0f02
BLAKE2b-256 de6ab05c9c0616cc0b357a7ba0090332fc34c05f965e4a129cfb89b1711641fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastavro-0.23.4-cp27-cp27m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 424.6 kB
  • Tags: CPython 2.7m, macOS 10.14+ 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.4-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 602bc9b2d5aa1bea59bdf7727cba74e26c16229faa2427a02c627dfaf82f0a8f
MD5 2c66bdb80c2f19353a763f411aa3a518
BLAKE2b-256 288a8e4bd50a8cfb36e9e88c5a325d9b53a8e5294afab32e16e7566d65d5c13f

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