Skip to main content

An efficient, portable erasure coding tool

Project description

Generate redundant blocks of information such that if some of the blocks are lost then the original data can be recovered from the remaining blocks. This package includes command-line tools, C API, Python API, and Haskell API.

PyPI release status build status Appveyor (windows) build status

Intro and Licence

This package implements an “erasure code”, or “forward error correction code”.

You may use this package under the GNU General Public License, version 2 or, at your option, any later version. You may use this package under the Transitive Grace Period Public Licence, version 1.0 or, at your option, any later version. (You may choose to use this package under the terms of either licence, at your option.) See the file COPYING.GPL for the terms of the GNU General Public License, version 2. See the file COPYING.TGPPL.rst for the terms of the Transitive Grace Period Public Licence, version 1.0.

The most widely known example of an erasure code is the RAID-5 algorithm which makes it so that in the event of the loss of any one hard drive, the stored data can be completely recovered. The algorithm in the zfec package has a similar effect, but instead of recovering from the loss of only a single element, it can be parameterized to choose in advance the number of elements whose loss it can tolerate.

This package is largely based on the old “fec” library by Luigi Rizzo et al., which is a mature and optimized implementation of erasure coding. The zfec package makes several changes from the original “fec” package, including addition of the Python API, refactoring of the C API to support zero-copy operation, a few clean-ups and optimizations of the core code itself, and the addition of a command-line tool named “zfec”.

Installation

pip install zfec

To run the self-tests, execute tox from an unpacked source tree or git checkout.

To run the tests of the Haskell API: runhaskell haskell/test/FECTest.hs

Note that in order to run the Haskell API tests you must have installed the library first due to the fact that the interpreter cannot process FEC.hs as it takes a reference to an FFI function.

Community

The source is currently available via git on the web with the command:

git clone https://github.com/tahoe-lafs/zfec

Please post about zfec to the Tahoe-LAFS mailing list and contribute patches:

<https://tahoe-lafs.org/cgi-bin/mailman/listinfo/tahoe-dev>

If you find a bug in zfec, please open an issue on github:

<https://github.com/tahoe-lafs/zfec/issues>

Overview

This package performs two operations, encoding and decoding. Encoding takes some input data and expands its size by producing extra “check blocks”, also called “secondary blocks”. Decoding takes some data – any combination of blocks of the original data (called “primary blocks”) and “secondary blocks”, and produces the original data.

The encoding is parameterized by two integers, k and m. m is the total number of blocks produced, and k is how many of those blocks are necessary to reconstruct the original data. m is required to be at least 1 and at most 256, and k is required to be at least 1 and at most m.

(Note that when k == m then there is no point in doing erasure coding – it degenerates to the equivalent of the Unix “split” utility which simply splits the input into successive segments. Similarly, when k == 1 it degenerates to the equivalent of the unix “cp” utility – each block is a complete copy of the input data.)

Note that each “primary block” is a segment of the original data, so its size is 1/k’th of the size of original data, and each “secondary block” is of the same size, so the total space used by all the blocks is m/k times the size of the original data (plus some padding to fill out the last primary block to be the same size as all the others). In addition to the data contained in the blocks themselves there are also a few pieces of metadata which are necessary for later reconstruction. Those pieces are: 1. the value of K, 2. the value of M, 3. the sharenum of each block, 4. the number of bytes of padding that were used. The “zfec” command-line tool compresses these pieces of data and prepends them to the beginning of each share, so each the sharefile produced by the “zfec” command-line tool is between one and four bytes larger than the share data alone.

The decoding step requires as input k of the blocks which were produced by the encoding step. The decoding step produces as output the data that was earlier input to the encoding step.

Command-Line Tool

The bin/ directory contains two Unix-style, command-line tools “zfec” and “zunfec”. Execute zfec --help or zunfec --help for usage instructions.

Performance

To run the benchmarks, execute the included bench/bench_zfec.py script with optional –k= and –m= arguments.

On my Athlon 64 2.4 GHz workstation (running Linux), the “zfec” command-line tool encoded a 160 MB file with m=100, k=94 (about 6% redundancy) in 3.9 seconds, where the “par2” tool encoded the file with about 6% redundancy in 27 seconds. zfec encoded the same file with m=12, k=6 (100% redundancy) in 4.1 seconds, where par2 encoded it with about 100% redundancy in 7 minutes and 56 seconds.

The underlying C library in benchmark mode encoded from a file at about 4.9 million bytes per second and decoded at about 5.8 million bytes per second.

On Peter’s fancy Intel Mac laptop (2.16 GHz Core Duo), it encoded from a file at about 6.2 million bytes per second.

On my even fancier Intel Mac laptop (2.33 GHz Core Duo), it encoded from a file at about 6.8 million bytes per second.

On my old PowerPC G4 867 MHz Mac laptop, it encoded from a file at about 1.3 million bytes per second.

Here is a paper analyzing the performance of various erasure codes and their implementations, including zfec:

http://www.usenix.org/events/fast09/tech/full_papers/plank/plank.pdf

Zfec shows good performance on different machines and with different values of K and M. It also has a nice small memory footprint.

API

Each block is associated with “blocknum”. The blocknum of each primary block is its index (starting from zero), so the 0’th block is the first primary block, which is the first few bytes of the file, the 1’st block is the next primary block, which is the next few bytes of the file, and so on. The last primary block has blocknum k-1. The blocknum of each secondary block is an arbitrary integer between k and 255 inclusive. (When using the Python API, if you don’t specify which secondary blocks you want when invoking encode(), then it will by default provide the blocks with ids from k to m-1 inclusive.)

  • C API

    fec_encode() takes as input an array of k pointers, where each pointer points to a memory buffer containing the input data (i.e., the i’th buffer contains the i’th primary block). There is also a second parameter which is an array of the blocknums of the secondary blocks which are to be produced. (Each element in that array is required to be the blocknum of a secondary block, i.e. it is required to be >= k and < m.)

    The output from fec_encode() is the requested set of secondary blocks which are written into output buffers provided by the caller.

    Note that this fec_encode() is a “low-level” API in that it requires the input data to be provided in a set of memory buffers of exactly the right sizes. If you are starting instead with a single buffer containing all of the data then please see easyfec.py’s “class Encoder” as an example of how to split a single large buffer into the appropriate set of input buffers for fec_encode(). If you are starting with a file on disk, then please see filefec.py’s encode_file_stringy_easyfec() for an example of how to read the data from a file and pass it to “class Encoder”. The Python interface provides these higher-level operations, as does the Haskell interface. If you implement functions to do these higher-level tasks in other languages, please send a patch to tahoe-dev@tahoe-lafs.org so that your API can be included in future releases of zfec.

    fec_decode() takes as input an array of k pointers, where each pointer points to a buffer containing a block. There is also a separate input parameter which is an array of blocknums, indicating the blocknum of each of the blocks which is being passed in.

    The output from fec_decode() is the set of primary blocks which were missing from the input and had to be reconstructed. These reconstructed blocks are written into output buffers provided by the caller.

  • Python API

    encode() and decode() take as input a sequence of k buffers, where a “sequence” is any object that implements the Python sequence protocol (such as a list or tuple) and a “buffer” is any object that implements the Python buffer protocol (such as a string or array). The contents that are required to be present in these buffers are the same as for the C API.

    encode() also takes a list of desired blocknums. Unlike the C API, the Python API accepts blocknums of primary blocks as well as secondary blocks in its list of desired blocknums. encode() returns a list of buffer objects which contain the blocks requested. For each requested block which is a primary block, the resulting list contains a reference to the apppropriate primary block from the input list. For each requested block which is a secondary block, the list contains a newly created string object containing that block.

    decode() also takes a list of integers indicating the blocknums of the blocks being passed int. decode() returns a list of buffer objects which contain all of the primary blocks of the original data (in order). For each primary block which was present in the input list, then the result list simply contains a reference to the object that was passed in the input list. For each primary block which was not present in the input, the result list contains a newly created string object containing that primary block.

    Beware of a “gotcha” that can result from the combination of mutable data and the fact that the Python API returns references to inputs when possible.

    Returning references to its inputs is efficient since it avoids making an unnecessary copy of the data, but if the object which was passed as input is mutable and if that object is mutated after the call to zfec returns, then the result from zfec – which is just a reference to that same object – will also be mutated. This subtlety is the price you pay for avoiding data copying. If you don’t want to have to worry about this then you can simply use immutable objects (e.g. Python strings) to hold the data that you pass to zfec.

  • Haskell API

    The Haskell code is fully Haddocked, to generate the documentation, run runhaskell Setup.lhs haddock.

Utilities

The filefec.py module has a utility function for efficiently reading a file and encoding it piece by piece. This module is used by the “zfec” and “zunfec” command-line tools from the bin/ directory.

Dependencies

A C compiler is required. To use the Python API or the command-line tools a Python interpreter is also required. We have tested it with Python v2.7, v3.5 and v3.6. For the Haskell interface, GHC >= 6.8.1 is required.

Acknowledgements

Thanks to the author of the original fec lib, Luigi Rizzo, and the folks that contributed to it: Phil Karn, Robert Morelos-Zaragoza, Hari Thirumoorthy, and Dan Rubenstein. Thanks to the Mnet hackers who wrote an earlier Python wrapper, especially Myers Carpenter and Hauke Johannknecht. Thanks to Brian Warner and Amber O’Whielacronx for help with the API, documentation, debugging, compression, and unit tests. Thanks to Adam Langley for improving the C API and contributing the Haskell API. Thanks to the creators of GCC (starting with Richard M. Stallman) and Valgrind (starting with Julian Seward) for a pair of excellent tools. Thanks to my coworkers at Allmydata – http://allmydata.com – Fabrice Grinda, Peter Secor, Rob Kinninmont, Brian Warner, Zandr Milewski, Justin Boreta, Mark Meras for sponsoring this work and releasing it under a Free Software licence. Thanks to Jack Lloyd, Samuel Neves, and David-Sarah Hopwood.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zfec-1.5.5.tar.gz (80.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

zfec-1.5.5-pp37-pypy37_pp73-win32.whl (58.8 kB view details)

Uploaded PyPyWindows x86

zfec-1.5.5-pp37-pypy37_pp73-manylinux2010_x86_64.whl (58.8 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

zfec-1.5.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (57.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

zfec-1.5.5-pp36-pypy36_pp73-win32.whl (58.8 kB view details)

Uploaded PyPyWindows x86

zfec-1.5.5-pp36-pypy36_pp73-manylinux2010_x86_64.whl (58.8 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

zfec-1.5.5-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (57.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

zfec-1.5.5-pp27-pypy_73-win32.whl (58.5 kB view details)

Uploaded PyPyWindows x86

zfec-1.5.5-pp27-pypy_73-manylinux2010_x86_64.whl (58.7 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

zfec-1.5.5-pp27-pypy_73-manylinux1_x86_64.whl (58.7 kB view details)

Uploaded PyPy

zfec-1.5.5-pp27-pypy_73-macosx_10_9_x86_64.whl (57.2 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

zfec-1.5.5-cp39-cp39-manylinux2010_x86_64.whl (87.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

zfec-1.5.5-cp39-cp39-manylinux2010_i686.whl (83.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

zfec-1.5.5-cp39-cp39-manylinux1_x86_64.whl (87.4 kB view details)

Uploaded CPython 3.9

zfec-1.5.5-cp39-cp39-manylinux1_i686.whl (83.3 kB view details)

Uploaded CPython 3.9

zfec-1.5.5-cp39-cp39-macosx_10_9_x86_64.whl (58.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

zfec-1.5.5-cp38-cp38-win_amd64.whl (60.8 kB view details)

Uploaded CPython 3.8Windows x86-64

zfec-1.5.5-cp38-cp38-win32.whl (58.8 kB view details)

Uploaded CPython 3.8Windows x86

zfec-1.5.5-cp38-cp38-manylinux2010_x86_64.whl (87.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

zfec-1.5.5-cp38-cp38-manylinux2010_i686.whl (83.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

zfec-1.5.5-cp38-cp38-manylinux1_x86_64.whl (87.1 kB view details)

Uploaded CPython 3.8

zfec-1.5.5-cp38-cp38-manylinux1_i686.whl (83.0 kB view details)

Uploaded CPython 3.8

zfec-1.5.5-cp38-cp38-macosx_10_9_x86_64.whl (58.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

zfec-1.5.5-cp37-cp37m-win_amd64.whl (60.8 kB view details)

Uploaded CPython 3.7mWindows x86-64

zfec-1.5.5-cp37-cp37m-win32.whl (58.7 kB view details)

Uploaded CPython 3.7mWindows x86

zfec-1.5.5-cp37-cp37m-manylinux2010_x86_64.whl (86.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

zfec-1.5.5-cp37-cp37m-manylinux2010_i686.whl (82.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

zfec-1.5.5-cp37-cp37m-manylinux1_x86_64.whl (86.8 kB view details)

Uploaded CPython 3.7m

zfec-1.5.5-cp37-cp37m-manylinux1_i686.whl (82.7 kB view details)

Uploaded CPython 3.7m

zfec-1.5.5-cp37-cp37m-macosx_10_9_x86_64.whl (58.0 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

zfec-1.5.5-cp36-cp36m-win_amd64.whl (60.8 kB view details)

Uploaded CPython 3.6mWindows x86-64

zfec-1.5.5-cp36-cp36m-win32.whl (58.7 kB view details)

Uploaded CPython 3.6mWindows x86

zfec-1.5.5-cp36-cp36m-manylinux2010_x86_64.whl (85.9 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

zfec-1.5.5-cp36-cp36m-manylinux2010_i686.whl (81.8 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

zfec-1.5.5-cp36-cp36m-manylinux1_x86_64.whl (85.9 kB view details)

Uploaded CPython 3.6m

zfec-1.5.5-cp36-cp36m-manylinux1_i686.whl (81.8 kB view details)

Uploaded CPython 3.6m

zfec-1.5.5-cp36-cp36m-macosx_10_9_x86_64.whl (58.0 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

zfec-1.5.5-cp35-cp35m-win_amd64.whl (60.8 kB view details)

Uploaded CPython 3.5mWindows x86-64

zfec-1.5.5-cp35-cp35m-win32.whl (58.7 kB view details)

Uploaded CPython 3.5mWindows x86

zfec-1.5.5-cp35-cp35m-manylinux2010_x86_64.whl (85.6 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

zfec-1.5.5-cp35-cp35m-manylinux2010_i686.whl (81.6 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

zfec-1.5.5-cp35-cp35m-manylinux1_x86_64.whl (85.6 kB view details)

Uploaded CPython 3.5m

zfec-1.5.5-cp35-cp35m-manylinux1_i686.whl (81.6 kB view details)

Uploaded CPython 3.5m

zfec-1.5.5-cp35-cp35m-macosx_10_9_x86_64.whl (57.9 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

zfec-1.5.5-cp27-cp27mu-manylinux2010_x86_64.whl (83.8 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

zfec-1.5.5-cp27-cp27mu-manylinux2010_i686.whl (79.8 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

zfec-1.5.5-cp27-cp27mu-manylinux1_x86_64.whl (83.8 kB view details)

Uploaded CPython 2.7mu

zfec-1.5.5-cp27-cp27mu-manylinux1_i686.whl (79.8 kB view details)

Uploaded CPython 2.7mu

zfec-1.5.5-cp27-cp27m-win_amd64.whl (57.5 kB view details)

Uploaded CPython 2.7mWindows x86-64

zfec-1.5.5-cp27-cp27m-win32.whl (56.7 kB view details)

Uploaded CPython 2.7mWindows x86

zfec-1.5.5-cp27-cp27m-manylinux2010_x86_64.whl (83.8 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

zfec-1.5.5-cp27-cp27m-manylinux2010_i686.whl (79.8 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

zfec-1.5.5-cp27-cp27m-manylinux1_x86_64.whl (83.8 kB view details)

Uploaded CPython 2.7m

zfec-1.5.5-cp27-cp27m-manylinux1_i686.whl (79.8 kB view details)

Uploaded CPython 2.7m

zfec-1.5.5-cp27-cp27m-macosx_10_9_x86_64.whl (57.8 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

Details for the file zfec-1.5.5.tar.gz.

File metadata

  • Download URL: zfec-1.5.5.tar.gz
  • Upload date:
  • Size: 80.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5.tar.gz
Algorithm Hash digest
SHA256 6033b2f3cc3edacf3f7eeed5f258c1ebf8a1d7e5e35b623db352512ce564e5ca
MD5 6ffc52d0cbdaf9f4c025aa2dc89896ec
BLAKE2b-256 1cbfb87a31205fcd2e0e4b4c9a3f7bf6f5a231e199bec5f654d7c5ac6fcec349

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-pp37-pypy37_pp73-win32.whl.

File metadata

  • Download URL: zfec-1.5.5-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 58.8 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 b4644e5f09fecd33791a8a9d07fc481a57b9fb0999a8706edf2d6b4074c8f6d7
MD5 222fed4faaadf3397cc887e42f1fc5fd
BLAKE2b-256 2467ab1a17c2fbbbec25d0a36491a2e340335a361e61d6eb79a00b181d2887a2

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 58.8 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3bf19379f50e617e9eb2bcba5b2379db17d8366fcd9df8ff079570a2511656a6
MD5 959dfe7a66c6121c8bf9bc8a75997d59
BLAKE2b-256 ab9ceceeee6b3d81bc2ab1a22d901ba0da691c72ed00b19cb6458ddcc1740c0f

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-pp37-pypy37_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-pp37-pypy37_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 58.8 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cd85d12a3bc2111e0b126970a854a439a609b2fa45ae09e448e66477573f06ff
MD5 7b15afc2f354bc28868e6615151c6b69
BLAKE2b-256 424168979c0da0be78325c48abc6283f3a073e18d5738f97d07a1e4e5de54079

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 57.3 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 41698b421612a8586d50ff765906fdd6f048d0415e51b410b1dae79c0b8a07a5
MD5 a7b79a15e1500db3dd1671de169f84bb
BLAKE2b-256 41963676b129f0211b0066a8bbc4b61bb234b0d5889331b65ff2622e44e6c636

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: zfec-1.5.5-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 58.8 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 81cf7c4db8ba19db801122482c52dcec71d0e2c22493556841b51741997362e6
MD5 2e927662f5404411c8247404e634768c
BLAKE2b-256 2e778ca695aa5a66238f869eedbd06b08a75a3afc0ce0be1ea9bf6fd5d139b1e

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 58.8 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 74a8de1ed34d96681eed697ca969183309a7e4fe582577bced325e4e4b28d950
MD5 4dc668813d3a4e67b5a2d9b1edfc0d7a
BLAKE2b-256 f0c49849dcd1889e654d90827d3e58f878412d49ca8a2d50290dafcd37bafbb1

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-pp36-pypy36_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 58.8 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 826e417268f76b08a6362ef794ec3ca73331f1817bed116310bbe2bd5ce3f4ef
MD5 b8974fbe90740308d4b833a48c88e34f
BLAKE2b-256 4be6ec74228b21b94c75fed54089a80b0463b38b0ded075f0eeb68a561ef9b5d

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-pp36-pypy36_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 57.3 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c1237ceda1126dcf47a633153eb8e8cfc95de3377ec38959760092918ee7cb4c
MD5 36b343da67d341275a28500f02c22b6d
BLAKE2b-256 60f12977cb132288d9963bdd36f2f9434b44d7e8bb24b28ff977cf5fe17ab489

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-pp27-pypy_73-win32.whl.

File metadata

  • Download URL: zfec-1.5.5-pp27-pypy_73-win32.whl
  • Upload date:
  • Size: 58.5 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 184155dc5cd7ab705260cd601f2ed1d92920e5846b256613d1b141d4e14b1500
MD5 3edfe014ee618b205c66a2a08c6f80f1
BLAKE2b-256 41f34439357328e6a4dd8cedad8b56c3f053ccfb29d43a7e7ed8b64e7a73ddfa

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 58.7 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6978b6a0ed2a0f8263a4401b93c3bc920ca477e3452ab5858749795ffb04f8f4
MD5 913d618c73dd50de745354c3faa16c96
BLAKE2b-256 1dafa076788c20e489b6ecfc86472671ab3eea08afceb054c91ea4a4cd102ad1

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-pp27-pypy_73-manylinux1_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-pp27-pypy_73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 58.7 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 41a4b666766b30d9be168dc168b2e2c906918aaebf038175ab62ec6e65965c2f
MD5 9d78d61ec0ca376bb71fac2dea32e380
BLAKE2b-256 fa95d229faa0e8e016f8b2129e10d25c21ac0d31767541ae37e31d9d2fa87a05

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-pp27-pypy_73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 57.2 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e18d232cd0f7557d0026ea883bf36a0122b3161811414c02fab87f42819e02d6
MD5 2c2bd97c0fbb2b6cf7273bdccf74bb5f
BLAKE2b-256 9ddffa975e031fc8cd69010cf47d987fb3c1550f97e89d94a219df332cb807dc

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 87.4 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ef6cac962003fb9854fe820c58aad01592253d673008a9da47c4cc0b9ffe0684
MD5 75bd6fea5618dea345f15af3c2e7e848
BLAKE2b-256 96b5eb3c7811d04afd31c58a38fb90f8b0870e88520a151426383f54783d705c

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: zfec-1.5.5-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 83.3 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f59e08995a4e07c2531e8951257e48b274a49952479ef87f52905974e357cd35
MD5 ea96faa6651c6f67ea36ba6a36617a23
BLAKE2b-256 b0324658a47f88c2b4a4650242a227354f342b8e1232a30821100090064918e5

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 87.4 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 37198e349ceaa01ae8d4d8f65d3ab2745b8ca4f9e93a8c74d24244554d314fbd
MD5 a74603e25b29779da4d812f2053865f6
BLAKE2b-256 c3578dbd669c464a7d317fe4c62f3d0c9b49e0f0fc33374807a3842a52882c5b

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: zfec-1.5.5-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 83.3 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3ea1d7ca15eaef53208892345381326a4e46ab908a3595771f6926f07d075698
MD5 63cfbe16f537638623f811f0cfff20ff
BLAKE2b-256 cdf476a2e5b0d8f821fc24dfc82256691796733e1036bcf27d0b9f2d6b2a1ee1

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 58.0 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7b57caa35a0ae6809e277acf5c9e6f95038b7d7caa02bd2593e85397a9ea40cd
MD5 3f11b01440e78d464fe7d7a5934b64e8
BLAKE2b-256 7a61b2301d9786c77dec200e0d7033f6f6f50ad510b6862e740d50b30a749d38

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 60.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a47720c52a93f8b5dc5f706258de36ece7fe951cff6e8419c3a60e3c3bbba2cd
MD5 57860c20d1c10eca4d20b9d0d7fb4097
BLAKE2b-256 08ad2e23117e4d0b1c948c5a0d04b29e9ef5aaf07529bb35f5390884a61db36d

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp38-cp38-win32.whl.

File metadata

  • Download URL: zfec-1.5.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 58.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 36ea7989b500847d7d238eb0ad4be263b7cbac6c72f7d7804d47f0e2a91ba201
MD5 4e28e6300a1efce1f8b3d00ff2e61732
BLAKE2b-256 527c7aff979e734d68b187e595aeba56ae65534b442835f39e059ee1be0ca84b

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 87.1 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 de1e6fe064b59837f2750a3379b1bfd3db3f7b4688eaa673eeab9ea874b50a39
MD5 ae8570efc8bf68e29eb8c94a3c96d50b
BLAKE2b-256 1f442d4ff263f3867d53e743224aa6a787b948ad6b4d167eaf161301e75961b6

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: zfec-1.5.5-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 83.0 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7863fbc502e78b6d15f66c1936beb9c12d2f3535bff11458758231324e36fe25
MD5 f223af970767290bc15002df1710e5d6
BLAKE2b-256 113eea159940cf7ae70398debc48e6bdb36637c5cafa52ee66cb33106a3bf779

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 87.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b70e7bcf3c1c5835e04e0f51a129c9e68248d3034a58b0a0faa896f1c43dd75a
MD5 a21af492feb756fe943ae2587cdfc083
BLAKE2b-256 49702499fe015161cd1e134576c19cbcee79e8df97ffa5023ee2d4a966017955

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: zfec-1.5.5-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 83.0 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d3c3d0bb8a31efda9383e3e0b9f7450eb638a082c095e8661ebcf68a3a9ad65b
MD5 f9bc41e18bb7b6cd7f048eef8e82560b
BLAKE2b-256 d707836632ec4856ad0df3e557fbea1b4dc4de11291eec700a1d90f6518544bb

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 58.0 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 909b8bc8be4babb06da89d28603d7a05026bcbdeac21ba0b607f65ef6d7b06cc
MD5 17e75bf1e721cfce39ade86756bbbdcf
BLAKE2b-256 fa466a4c63e2877d0b4f92bb899dfe764d797d9cc458faebb4b413b1227ea039

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 60.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 eccac4ed0e741120260251a98c031fee5797c6268ca0d775c96bb9c8eebdb933
MD5 d8601b7ecc86939258ac9a555367b05e
BLAKE2b-256 4c074a21b70a3e169aac77d1fc2b287907b4866de4b32070585451258b7f571b

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp37-cp37m-win32.whl.

File metadata

  • Download URL: zfec-1.5.5-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 58.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5781c25452d2d5e472289c6a7b3cbb85dcf8767490b21d76740cc3ac1e774e95
MD5 591f39ffccf2157423ff31d4364fb4c2
BLAKE2b-256 64e97f77c52f4c0b39bb5111aded5eb4dac25956476e511908ed11e0b1c48bce

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 86.8 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 198afd364cc041d667176fdc86c5599a585d706f701fab89cfc5b661fa65b6d7
MD5 860d90d562dba1b8003751e96a2b0112
BLAKE2b-256 93ca2262428a12a4620ee092a3f19e68b77c2cb218713f6895c7985aa854fafa

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: zfec-1.5.5-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 82.7 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 54bdf3da28418ca24253c7432ac63fd78f34f1f7c3024df304ce07c0f795ffd7
MD5 3278a992274070be89205d08bd227745
BLAKE2b-256 18b773b6a963ae3df1a11ac7243732e7b8cc1b8f486f85bbb648531aea59ed93

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 86.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 06625356fc35cba2aa08f850125e81ff28de565b8e0acfa1c3cfea68cb023e93
MD5 d8cf4b75b85d68c4a9b2c53a7a636048
BLAKE2b-256 665521eda926694d7158f4dc1d35f991b7b68d6f3c08216e9ece9ba54f892e29

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: zfec-1.5.5-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 82.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ff673e28933772cba73b96557e9f01f39e432cda999de7fb4c5814d212bfa9fd
MD5 d0a0ceb5ca60da89eb8b8420203bbd11
BLAKE2b-256 b4690b39786c2f66ad2ef0a5cb947c5cbb2b555f954c8fbc12e65bdebe249381

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 58.0 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 11a5a9e15bd4c0a15b19b55c22ab42f6d66a5417fd968a1f9894112e2da9165c
MD5 8ce9f6dea0c2a5d3aac412db8aaf6fb1
BLAKE2b-256 e67bd74a6ef06f231ce384dd15c9abec1cdf92349deb0ce261c93edc8451a990

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 60.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 91318145039bc03c64b595157cca4b961342a59c141fcc98e53ceae874d920bb
MD5 0766fe328dce25b1f64b535889484ed9
BLAKE2b-256 110653c5688333ee370118755d587e02fc423de6d4638ad379d241fb670efef1

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp36-cp36m-win32.whl.

File metadata

  • Download URL: zfec-1.5.5-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 58.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 39cd67bf7f156e32a40105c29dcaccc0d8c5093e85210be4af2cc4412caf85d0
MD5 7e882bdc8cae2adbdaf9570daedd24e5
BLAKE2b-256 c59dde206e6139dbb525f0d0ff4f57084694c4c1d467964f8bfdbf22747f2cb8

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 85.9 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 08fb04e715448143e51a4f834fa09e8730a009cfa3d7d5a447f0e36ad9312b69
MD5 21de7eb7ba823c6207a090c8e93a7342
BLAKE2b-256 3e13f1f6b89b0455ebac19023efa07ac5fad4f532c7397a620bce20e5b86cd27

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: zfec-1.5.5-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 81.8 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 84c6f65cca660c6ba976f6293ba39112f6822cd2a030e0748a25c15a95ffc41a
MD5 fadaf1a5d6444cc57fd950f2e4d398d7
BLAKE2b-256 af4b48cdf14a3bd5bdc0bb98b30477d142ff9439a9e915d22b9a19201d7394d2

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 85.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 991d0b02d47b9924ecd608e4e876a0fd5e2907b23db25dfe95ab843ce6270763
MD5 6262198387b29d74851e4663f4ca6074
BLAKE2b-256 2af4385f6f59bb9fe7a25ee0b2d09e80678543198dc6b937c22d1e22536b90d5

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: zfec-1.5.5-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 81.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1a6ba3837ef051e78e4249c8eef5831764ed916e168dfcefe071e3741562196b
MD5 58dca93114920ad80eb51afa2b1566d7
BLAKE2b-256 dfceb07c5be1bfa9074e58afdcfc7faf48cd8299c89eea28c7bf4416e9189fe4

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 58.0 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c48bfd89cd48313d91c1041351c414f73049ec4c0982ffb6a91b8be9e12fd242
MD5 4edb66d61b6f027c0df3ffb9be646edc
BLAKE2b-256 e838e9253e5685a43c76786c0e2cc4b20f4d886e818caa759a809f9a2a5fef46

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 60.8 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 96c963e22ff85d62002d1dc582206f5831e954b223a3d2d4a7e709b82f63b04e
MD5 1fe4a5dc4791f1a89cbf28bae95bd8af
BLAKE2b-256 702f8ce183f60a75578bea033ac687f41ae147bfeeeef95c769e03797107cd04

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp35-cp35m-win32.whl.

File metadata

  • Download URL: zfec-1.5.5-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 58.7 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 7f721c66064095ee4705b2dd2c7652192d473476ce5e0498e59cb58a71078340
MD5 fe035c3a114ee33a27a905d32efd521d
BLAKE2b-256 2a5192040d4e7f35c78d42966b08502d6c0e4b214c2c44b7a20fec4cb44cd5ba

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 85.6 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 528ba30cd9a2a2955581753aa3b45234a3f3b220a658ce151444694388aefe46
MD5 1a32182321a2920c3473521a98ab87f2
BLAKE2b-256 3618d8a1aaf7003b875491b444e06633f39bc4abdb7585a7af8dfa01f7afb53a

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: zfec-1.5.5-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 81.6 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5678c2fa8d34e4e07062c8ae2cd515b9b859bdfd06ed985bad48f130291ee441
MD5 dc3e845ae819816a8ce170fd1ce6c90f
BLAKE2b-256 a943687aa29a8b32c281e0d6992f74d5b576d29bfdd77bea109e76d1d54c2371

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 85.6 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cb22f5c338c4203f3677c1e04d7411b79b01e13610a22f6d4697d69cf9507424
MD5 3742cba2e8cae1a0be0768cfdbe034b7
BLAKE2b-256 9555e6db8991ed0f3d20805f8dcb9783fc399db1a0158161d494db1771482fd2

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: zfec-1.5.5-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 81.6 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 93e7c00101d018464b03a86667242f9a73c69fb94d06a2cef307a25b91d17379
MD5 b3ba00ff368cdc7ee9a5f15b0f0fa69b
BLAKE2b-256 11f438202c5fb91c127a4ccc4fab47ba2aa16cca72f2555a6bad83ed201fa2fd

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 57.9 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c1d38f70b9034aaa951bc7f642ce71d8f41180443b55b4f437e0a27cdda6a18d
MD5 eb5378675d09ac0bd2aa7fb9c1b83857
BLAKE2b-256 1ccb828e8d12901b8f9fd516ffa68503b8d823668cdb778cfedcb70f25f75f04

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 83.8 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 962d23d056d00a0e95c76c610da636ffbc9e9411a88c1a3ad4272a3a55bfd299
MD5 e7cedde65b85b5beb9373be017214b66
BLAKE2b-256 bbf798d26c40701d3f764102aff73d0717f1ec0f73063a03051197236529ca47

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: zfec-1.5.5-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 79.8 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 71ec04ac7ea52f5cf7f354ed6c411141d17af2a63685e7450c0fde8c868f76bc
MD5 c1f27fc05d5695605e511ce356fef7e0
BLAKE2b-256 dd7f165131cbe42f15d66bcacc4fc045e03dbe79e48ca93221fde1262d30a38e

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 83.8 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f648536896559cd13f4286296409e8036879867947ff1590d7a5052c6b3b5c22
MD5 387222d3d453a62809a9530450cfb1f6
BLAKE2b-256 89363836ba3aaf465860b9338e1f2fff19d370950c5233c1dd3d14525ec9fedd

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: zfec-1.5.5-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 79.8 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 bbbb682a6d2aeec0cb97c2a33fe7d7b604b2b113fb721190a898aa5afdbde667
MD5 026a88012369ec49f25e96bdf3997647
BLAKE2b-256 b5c660521fec95f320230cdf5a402e581064bd0c4aada3786f1cccd23b41048e

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 57.5 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 7f241d42d83ce5941fc4c840bb56d9037b5101231ef8a17f34b9a489c5424bc5
MD5 4b02947978dc032653364255454d9a0f
BLAKE2b-256 6e64913c56196e54b332b957cfd1cc66c57d16e76588f21b26b3b7fe1d556611

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp27-cp27m-win32.whl.

File metadata

  • Download URL: zfec-1.5.5-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 56.7 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 2cd7c671aaa1526e5f96d6c3612cf7ca72c50b92fab14c17e0bf2fa62f64efd4
MD5 c82ca9e470e94303ac10222b9ace94e4
BLAKE2b-256 596e889376183436a09f27dbb53fdb105d20b85a61d43713f7d902b12377285e

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 83.8 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d2de07a300d7101401ee091fe10566a8ab325f8282008cb81e426ca8c6203fef
MD5 2c0d2d75423bfed5c6a202dc9a848e4c
BLAKE2b-256 b1fceb92159126e31d9893e72387ade66051c9ec1de7d8287ba39282a2f2c7fa

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: zfec-1.5.5-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 79.8 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bf024867749752214cf5b86cee580e1058a36728fa1ef3e07180a66c1942e0a5
MD5 58cede23c77315c466eb80762df8c375
BLAKE2b-256 7db58d509cda9c8200e598ddeb18229a5bd243c0b94d811a07116e40ef80455e

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 83.8 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6dca8b94769bd430d03a035588a5fa8ebf10a1f574ea0054101201b028932ae0
MD5 6b96143bf4a7e1cd61f4c1529ab91a20
BLAKE2b-256 c8e614ceca5eacc1f1bb99cdc7b6152f5e993992de1ac2b1cd6601ac20bcd682

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: zfec-1.5.5-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 79.8 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 79f8c8f3ba8955b3f1a3264ea0b09065f5ef331780d790cbafd1f7764c8caeee
MD5 1e74158e914ed4dcbe99f206d85f4911
BLAKE2b-256 51020e2a873969bf00117b6a9cb118d34bb7f364754039984df8ebfe7872e0fc

See more details on using hashes here.

File details

Details for the file zfec-1.5.5-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: zfec-1.5.5-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 57.8 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.17

File hashes

Hashes for zfec-1.5.5-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ccf551abd6485a7eb08acd571ae13bbed35921992e7b8a35c0862b140e7f62ca
MD5 25f55175a4c6b1cdeabf2d06fdcf94c2
BLAKE2b-256 4c971014946ede9772bff6961274d3929445bb3beace52916a6b5db9def1e315

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page