zfec -- efficient, portable erasure coding tool
===============================================
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.
|build| |test| |pypi|
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: ``cabal run test:tests``
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.
Here's the results for an i7-12700k:
```
measuring encoding of data with K=3, M=10, encoding 1000000 bytes 1000 times in a row...
Average MB/s: 364
measuring decoding of primary-only data with K=3, M=10, 1000 times in a row...
Average MB/s: 1894750
measuring decoding of secondary-only data with K=3, M=10, 1000 times in a row...
Average MB/s: 3298
```
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.
Related Works
-------------
Note: a Unix-style tool like "zfec" does only one thing -- in this case
erasure coding -- and leaves other tasks to other tools. Other Unix-style
tools that go well with zfec include `GNU tar`_ for archiving multiple files
and directories into one file, `lzip`_ for compression, and `GNU Privacy
Guard`_ for encryption or `b2sum`_ for integrity. It is important to do
things in order: first archive, then compress, then either encrypt or
integrity-check, then erasure code. Note that if GNU Privacy Guard is used
for privacy, then it will also ensure integrity, so the use of b2sum is
unnecessary in that case. Note also that you also need to do integrity
checking (such as with b2sum) on the blocks that result from the erasure
coding in *addition* to doing it on the file contents! (There are two
different subtle failure modes -- see "more than one file can match an
immutable file cap" on the `Hack Tahoe-LAFS!`_ Hall of Fame.)
The `Tahoe-LAFS`_ project uses zfec as part of a complete distributed
filesystem with integrated encryption, integrity, remote distribution of the
blocks, directory structure, backup of changed files or directories, access
control, immutable files and directories, proof-of-retrievability, and repair
of damaged files and directories.
`fecpp`_ is an alternative to zfec. It implements a bitwise-compatible
algorithm to zfec and is BSD-licensed.
.. _GNU tar: http://directory.fsf.org/project/tar/
.. _lzip: http://www.nongnu.org/lzip/lzip.html
.. _GNU Privacy Guard: http://gnupg.org/
.. _b2sum: https://blake2.net/
.. _Tahoe-LAFS: https://tahoe-lafs.org
.. _Hack Tahoe-LAFS!: https://tahoe-lafs.org/hacktahoelafs/
.. _fecpp: http://www.randombit.net/code/fecpp/
Enjoy!
Zooko Wilcox-O'Hearn
2013-05-15
Boulder, Colorado
----
.. |pypi| image:: http://img.shields.io/pypi/v/zfec.svg
:alt: PyPI release status
:target: https://pypi.python.org/pypi/zfec
.. |build| image:: https://github.com/tahoe-lafs/zfec/actions/workflows/build.yml/badge.svg
:alt: Package Build
:target: https://github.com/tahoe-lafs/zfec/actions/workflows/build.yml
.. |test| image:: https://github.com/tahoe-lafs/zfec/actions/workflows/test.yml/badge.svg
:alt: Tests
:target: https://github.com/tahoe-lafs/zfec/actions/workflows/test.yml
Raw data
{
"_id": null,
"home_page": "https://github.com/tahoe-lafs/zfec",
"name": "zfec",
"maintainer": "",
"docs_url": null,
"requires_python": "",
"maintainer_email": "",
"keywords": "",
"author": "Zooko O\\'Whielacronx",
"author_email": "zooko@zooko.com",
"download_url": "https://files.pythonhosted.org/packages/14/f2/5e655a102f2c3a24007b73925e2de67ba9efda078beb265993bfcee08c62/zfec-1.5.7.4.tar.gz",
"platform": null,
"description": "\n\nzfec -- efficient, portable erasure coding tool\n===============================================\n\nGenerate redundant blocks of information such that if some of the blocks are\nlost then the original data can be recovered from the remaining blocks. This\npackage includes command-line tools, C API, Python API, and Haskell API.\n\n|build| |test| |pypi|\n\nIntro and Licence\n-----------------\n\nThis package implements an \"erasure code\", or \"forward error correction\ncode\".\n\nYou may use this package under the GNU General Public License, version 2 or,\nat your option, any later version. You may use this package under the\nTransitive Grace Period Public Licence, version 1.0 or, at your option, any\nlater version. (You may choose to use this package under the terms of either\nlicence, at your option.) See the file COPYING.GPL for the terms of the GNU\nGeneral Public License, version 2. See the file COPYING.TGPPL.rst for the\nterms of the Transitive Grace Period Public Licence, version 1.0.\n\nThe most widely known example of an erasure code is the RAID-5 algorithm\nwhich makes it so that in the event of the loss of any one hard drive, the\nstored data can be completely recovered. The algorithm in the zfec package\nhas a similar effect, but instead of recovering from the loss of only a\nsingle element, it can be parameterized to choose in advance the number of\nelements whose loss it can tolerate.\n\nThis package is largely based on the old \"fec\" library by Luigi Rizzo et al.,\nwhich is a mature and optimized implementation of erasure coding. The zfec\npackage makes several changes from the original \"fec\" package, including\naddition of the Python API, refactoring of the C API to support zero-copy\noperation, a few clean-ups and optimizations of the core code itself, and the\naddition of a command-line tool named \"zfec\".\n\n\nInstallation\n------------\n\n``pip install zfec``\n\nTo run the self-tests, execute ``tox`` from an unpacked source tree or git checkout.\n\nTo run the tests of the Haskell API: ``cabal run test:tests``\n\n\nCommunity\n---------\n\nThe source is currently available via git on the web with the command:\n\n``git clone https://github.com/tahoe-lafs/zfec``\n\nPlease post about zfec to the Tahoe-LAFS mailing list and contribute patches:\n\n<https://tahoe-lafs.org/cgi-bin/mailman/listinfo/tahoe-dev>\n\nIf you find a bug in zfec, please open an issue on github:\n\n<https://github.com/tahoe-lafs/zfec/issues>\n\nOverview\n--------\n\nThis package performs two operations, encoding and decoding. Encoding takes\nsome input data and expands its size by producing extra \"check blocks\", also\ncalled \"secondary blocks\". Decoding takes some data -- any combination of\nblocks of the original data (called \"primary blocks\") and \"secondary blocks\",\nand produces the original data.\n\nThe encoding is parameterized by two integers, k and m. m is the total\nnumber of blocks produced, and k is how many of those blocks are necessary to\nreconstruct the original data. m is required to be at least 1 and at most\n256, and k is required to be at least 1 and at most m.\n\n(Note that when k == m then there is no point in doing erasure coding -- it\ndegenerates to the equivalent of the Unix \"split\" utility which simply splits\nthe input into successive segments. Similarly, when k == 1 it degenerates to\nthe equivalent of the unix \"cp\" utility -- each block is a complete copy of\nthe input data.)\n\nNote that each \"primary block\" is a segment of the original data, so its size\nis 1/k'th of the size of original data, and each \"secondary block\" is of the\nsame size, so the total space used by all the blocks is m/k times the size of\nthe original data (plus some padding to fill out the last primary block to be\nthe same size as all the others). In addition to the data contained in the\nblocks themselves there are also a few pieces of metadata which are necessary\nfor later reconstruction. Those pieces are: 1. the value of K, 2. the\nvalue of M, 3. the sharenum of each block, 4. the number of bytes of\npadding that were used. The \"zfec\" command-line tool compresses these pieces\nof data and prepends them to the beginning of each share, so each the\nsharefile produced by the \"zfec\" command-line tool is between one and four\nbytes larger than the share data alone.\n\nThe decoding step requires as input k of the blocks which were produced by\nthe encoding step. The decoding step produces as output the data that was\nearlier input to the encoding step.\n\n\nCommand-Line Tool\n-----------------\n\nThe bin/ directory contains two Unix-style, command-line tools \"zfec\" and\n\"zunfec\". Execute ``zfec --help`` or ``zunfec --help`` for usage\ninstructions.\n\n\nPerformance\n-----------\n\nTo run the benchmarks, execute the included bench/bench_zfec.py script with\noptional --k= and --m= arguments.\n\nHere's the results for an i7-12700k:\n\n```\nmeasuring encoding of data with K=3, M=10, encoding 1000000 bytes 1000 times in a row...\nAverage MB/s: 364\nmeasuring decoding of primary-only data with K=3, M=10, 1000 times in a row...\nAverage MB/s: 1894750\nmeasuring decoding of secondary-only data with K=3, M=10, 1000 times in a row...\nAverage MB/s: 3298\n```\n\nHere is a paper analyzing the performance of various erasure codes and their\nimplementations, including zfec:\n\nhttp://www.usenix.org/events/fast09/tech/full_papers/plank/plank.pdf\n\nZfec shows good performance on different machines and with different values\nof K and M. It also has a nice small memory footprint.\n\n\nAPI\n---\n\nEach block is associated with \"blocknum\". The blocknum of each primary block\nis its index (starting from zero), so the 0'th block is the first primary\nblock, which is the first few bytes of the file, the 1'st block is the next\nprimary block, which is the next few bytes of the file, and so on. The last\nprimary block has blocknum k-1. The blocknum of each secondary block is an\narbitrary integer between k and 255 inclusive. (When using the Python API,\nif you don't specify which secondary blocks you want when invoking encode(),\nthen it will by default provide the blocks with ids from k to m-1 inclusive.)\n\n- C API\n\n fec_encode() takes as input an array of k pointers, where each pointer\n points to a memory buffer containing the input data (i.e., the i'th buffer\n contains the i'th primary block). There is also a second parameter which\n is an array of the blocknums of the secondary blocks which are to be\n produced. (Each element in that array is required to be the blocknum of a\n secondary block, i.e. it is required to be >= k and < m.)\n\n The output from fec_encode() is the requested set of secondary blocks which\n are written into output buffers provided by the caller.\n\n Note that this fec_encode() is a \"low-level\" API in that it requires the\n input data to be provided in a set of memory buffers of exactly the right\n sizes. If you are starting instead with a single buffer containing all of\n the data then please see easyfec.py's \"class Encoder\" as an example of how\n to split a single large buffer into the appropriate set of input buffers\n for fec_encode(). If you are starting with a file on disk, then please see\n filefec.py's encode_file_stringy_easyfec() for an example of how to read\n the data from a file and pass it to \"class Encoder\". The Python interface\n provides these higher-level operations, as does the Haskell interface. If\n you implement functions to do these higher-level tasks in other languages,\n please send a patch to tahoe-dev@tahoe-lafs.org so that your API can be\n included in future releases of zfec.\n\n fec_decode() takes as input an array of k pointers, where each pointer\n points to a buffer containing a block. There is also a separate input\n parameter which is an array of blocknums, indicating the blocknum of each\n of the blocks which is being passed in.\n\n The output from fec_decode() is the set of primary blocks which were\n missing from the input and had to be reconstructed. These reconstructed\n blocks are written into output buffers provided by the caller.\n\n\n- Python API\n\n encode() and decode() take as input a sequence of k buffers, where a\n \"sequence\" is any object that implements the Python sequence protocol (such\n as a list or tuple) and a \"buffer\" is any object that implements the Python\n buffer protocol (such as a string or array). The contents that are\n required to be present in these buffers are the same as for the C API.\n\n encode() also takes a list of desired blocknums. Unlike the C API, the\n Python API accepts blocknums of primary blocks as well as secondary blocks\n in its list of desired blocknums. encode() returns a list of buffer\n objects which contain the blocks requested. For each requested block which\n is a primary block, the resulting list contains a reference to the\n apppropriate primary block from the input list. For each requested block\n which is a secondary block, the list contains a newly created string object\n containing that block.\n\n decode() also takes a list of integers indicating the blocknums of the\n blocks being passed int. decode() returns a list of buffer objects which\n contain all of the primary blocks of the original data (in order). For\n each primary block which was present in the input list, then the result\n list simply contains a reference to the object that was passed in the input\n list. For each primary block which was not present in the input, the\n result list contains a newly created string object containing that primary\n block.\n\n Beware of a \"gotcha\" that can result from the combination of mutable data\n and the fact that the Python API returns references to inputs when\n possible.\n\n Returning references to its inputs is efficient since it avoids making an\n unnecessary copy of the data, but if the object which was passed as input\n is mutable and if that object is mutated after the call to zfec returns,\n then the result from zfec -- which is just a reference to that same object\n -- will also be mutated. This subtlety is the price you pay for avoiding\n data copying. If you don't want to have to worry about this then you can\n simply use immutable objects (e.g. Python strings) to hold the data that\n you pass to zfec.\n\n- Haskell API\n\n The Haskell code is fully Haddocked, to generate the documentation, run\n ``runhaskell Setup.lhs haddock``.\n\n\nUtilities\n---------\n\nThe filefec.py module has a utility function for efficiently reading a file\nand encoding it piece by piece. This module is used by the \"zfec\" and\n\"zunfec\" command-line tools from the bin/ directory.\n\n\nDependencies\n------------\n\nA C compiler is required. To use the Python API or the command-line tools a\nPython interpreter is also required. We have tested it with Python v2.7,\nv3.5 and v3.6. For the Haskell interface, GHC >= 6.8.1 is required.\n\n\nAcknowledgements\n----------------\n\nThanks to the author of the original fec lib, Luigi Rizzo, and the folks that\ncontributed to it: Phil Karn, Robert Morelos-Zaragoza, Hari Thirumoorthy, and\nDan Rubenstein. Thanks to the Mnet hackers who wrote an earlier Python\nwrapper, especially Myers Carpenter and Hauke Johannknecht. Thanks to Brian\nWarner and Amber O'Whielacronx for help with the API, documentation,\ndebugging, compression, and unit tests. Thanks to Adam Langley for improving\nthe C API and contributing the Haskell API. Thanks to the creators of GCC\n(starting with Richard M. Stallman) and Valgrind (starting with Julian\nSeward) for a pair of excellent tools. Thanks to my coworkers at Allmydata\n-- http://allmydata.com -- Fabrice Grinda, Peter Secor, Rob Kinninmont, Brian\nWarner, Zandr Milewski, Justin Boreta, Mark Meras for sponsoring this work\nand releasing it under a Free Software licence. Thanks to Jack Lloyd, Samuel\nNeves, and David-Sarah Hopwood.\n\n\nRelated Works\n-------------\n\nNote: a Unix-style tool like \"zfec\" does only one thing -- in this case\nerasure coding -- and leaves other tasks to other tools. Other Unix-style\ntools that go well with zfec include `GNU tar`_ for archiving multiple files\nand directories into one file, `lzip`_ for compression, and `GNU Privacy\nGuard`_ for encryption or `b2sum`_ for integrity. It is important to do\nthings in order: first archive, then compress, then either encrypt or\nintegrity-check, then erasure code. Note that if GNU Privacy Guard is used\nfor privacy, then it will also ensure integrity, so the use of b2sum is\nunnecessary in that case. Note also that you also need to do integrity\nchecking (such as with b2sum) on the blocks that result from the erasure\ncoding in *addition* to doing it on the file contents! (There are two\ndifferent subtle failure modes -- see \"more than one file can match an\nimmutable file cap\" on the `Hack Tahoe-LAFS!`_ Hall of Fame.)\n\nThe `Tahoe-LAFS`_ project uses zfec as part of a complete distributed\nfilesystem with integrated encryption, integrity, remote distribution of the\nblocks, directory structure, backup of changed files or directories, access\ncontrol, immutable files and directories, proof-of-retrievability, and repair\nof damaged files and directories.\n\n`fecpp`_ is an alternative to zfec. It implements a bitwise-compatible\nalgorithm to zfec and is BSD-licensed.\n\n.. _GNU tar: http://directory.fsf.org/project/tar/\n.. _lzip: http://www.nongnu.org/lzip/lzip.html\n.. _GNU Privacy Guard: http://gnupg.org/\n.. _b2sum: https://blake2.net/\n.. _Tahoe-LAFS: https://tahoe-lafs.org\n.. _Hack Tahoe-LAFS!: https://tahoe-lafs.org/hacktahoelafs/\n.. _fecpp: http://www.randombit.net/code/fecpp/\n\n\nEnjoy!\n\nZooko Wilcox-O'Hearn\n\n2013-05-15\n\nBoulder, Colorado\n\n----\n\n.. |pypi| image:: http://img.shields.io/pypi/v/zfec.svg\n :alt: PyPI release status\n :target: https://pypi.python.org/pypi/zfec\n\n.. |build| image:: https://github.com/tahoe-lafs/zfec/actions/workflows/build.yml/badge.svg\n :alt: Package Build\n :target: https://github.com/tahoe-lafs/zfec/actions/workflows/build.yml\n\n.. |test| image:: https://github.com/tahoe-lafs/zfec/actions/workflows/test.yml/badge.svg\n :alt: Tests\n :target: https://github.com/tahoe-lafs/zfec/actions/workflows/test.yml\n",
"bugtrack_url": null,
"license": "GPL-2+",
"summary": "An efficient, portable erasure coding tool",
"version": "1.5.7.4",
"project_urls": {
"Homepage": "https://github.com/tahoe-lafs/zfec"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "61043e6973e1e5b6107bfdae61f6020c96a77c30df7e959f53bd771aab96e627",
"md5": "566b36795a055cd11671e8befe909e5d",
"sha256": "1f26cfbd74704e55f93cef351a6f9d86a3d4f8cc5ebdfd7def1edd6e685105a9"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "566b36795a055cd11671e8befe909e5d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 69443,
"upload_time": "2023-10-24T17:28:32",
"upload_time_iso_8601": "2023-10-24T17:28:32.274528Z",
"url": "https://files.pythonhosted.org/packages/61/04/3e6973e1e5b6107bfdae61f6020c96a77c30df7e959f53bd771aab96e627/zfec-1.5.7.4-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "96fd076d6e8aa29d8c5ed8766a82ed12648d51a16a7a359d3c9eba4d1c0f2e9e",
"md5": "e1179665b10b6b337a6f757f807e14fa",
"sha256": "1eaa3abb66a41e05825b57d33a62ad64ddd9dc392757b029007178f38346deea"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e1179665b10b6b337a6f757f807e14fa",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 58634,
"upload_time": "2023-10-24T17:28:34",
"upload_time_iso_8601": "2023-10-24T17:28:34.830412Z",
"url": "https://files.pythonhosted.org/packages/96/fd/076d6e8aa29d8c5ed8766a82ed12648d51a16a7a359d3c9eba4d1c0f2e9e/zfec-1.5.7.4-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "338a18b373b6e310b0fd483290d4650ceb18a37dc81e416936bf01172e6a9787",
"md5": "e5bf412a8a85a9d5e4b485226bbf3f65",
"sha256": "36822b627760f8b227f5fde336848eb2f74bd80da67b8235d1b7d2ee1e49a286"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e5bf412a8a85a9d5e4b485226bbf3f65",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 58171,
"upload_time": "2023-10-24T17:28:36",
"upload_time_iso_8601": "2023-10-24T17:28:36.513200Z",
"url": "https://files.pythonhosted.org/packages/33/8a/18b373b6e310b0fd483290d4650ceb18a37dc81e416936bf01172e6a9787/zfec-1.5.7.4-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f91a3de9198453de8355e95c5009fc64c37a01317d5ae953b6f62075a01fd6e1",
"md5": "7aa24e85e08e6b3ab37388365dc9963b",
"sha256": "ec76302d0e37b95da0d1a9252b147f166a5d0d21d88ab6332290d597ec35ad22"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7aa24e85e08e6b3ab37388365dc9963b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 84335,
"upload_time": "2023-10-24T17:28:37",
"upload_time_iso_8601": "2023-10-24T17:28:37.665166Z",
"url": "https://files.pythonhosted.org/packages/f9/1a/3de9198453de8355e95c5009fc64c37a01317d5ae953b6f62075a01fd6e1/zfec-1.5.7.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e871c7415bfa885ec833996688bdbf9f47fa14d589b1f65089af890f9431ff9e",
"md5": "3989694a8d3466a5687ea97d91b1cda0",
"sha256": "d88415a53747811fd6edeed34813907e151a34f775b6c71d248ab2008c8607fa"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "3989694a8d3466a5687ea97d91b1cda0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 81426,
"upload_time": "2023-10-24T17:28:39",
"upload_time_iso_8601": "2023-10-24T17:28:39.114535Z",
"url": "https://files.pythonhosted.org/packages/e8/71/c7415bfa885ec833996688bdbf9f47fa14d589b1f65089af890f9431ff9e/zfec-1.5.7.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "94af62ff2d0215ebc9d4e21adf37acdc03b3fd39c2bfc37f8f5ee0a671ad1079",
"md5": "30611bddc3fd7fea2f337f9387c5a77c",
"sha256": "7c463c227e8c203a718507f20d999270e2789e13765aa85988f3bc06e837bb16"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "30611bddc3fd7fea2f337f9387c5a77c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 84025,
"upload_time": "2023-10-24T17:28:40",
"upload_time_iso_8601": "2023-10-24T17:28:40.820953Z",
"url": "https://files.pythonhosted.org/packages/94/af/62ff2d0215ebc9d4e21adf37acdc03b3fd39c2bfc37f8f5ee0a671ad1079/zfec-1.5.7.4-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4d496511499287c5f0c895a26b249ad580a6162ece9ab94bcb3bd2693907cb3d",
"md5": "25277f46cf4eb8e24591ae52a7c4dde1",
"sha256": "7a283f1dedf9b5bf673f826143a575eee1dc39617bd585fac16dfad1327be413"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "25277f46cf4eb8e24591ae52a7c4dde1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 88032,
"upload_time": "2023-10-24T17:28:42",
"upload_time_iso_8601": "2023-10-24T17:28:42.965303Z",
"url": "https://files.pythonhosted.org/packages/4d/49/6511499287c5f0c895a26b249ad580a6162ece9ab94bcb3bd2693907cb3d/zfec-1.5.7.4-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2aea0ef24931c3261ce81dec48c723690b05608b3470ca479e9802b94ec442cb",
"md5": "e46d7fb38962dc78eb43268b01386286",
"sha256": "08dcd7f53de549b1f6bce9a4d1c76d5305e9f31c2d1b8b7b323b62fbe3ef28c0"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "e46d7fb38962dc78eb43268b01386286",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 59030,
"upload_time": "2023-10-24T17:28:44",
"upload_time_iso_8601": "2023-10-24T17:28:44.429922Z",
"url": "https://files.pythonhosted.org/packages/2a/ea/0ef24931c3261ce81dec48c723690b05608b3470ca479e9802b94ec442cb/zfec-1.5.7.4-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cf28a95834adac9ff19777008ee70c5c70be4132596aa020c46b818d324bd53a",
"md5": "70298a69a851568ded2346d5f74062e8",
"sha256": "91fb42093e66303e01e4fb2356092565d767f39edf7f63a1a9023fc6dfece615"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "70298a69a851568ded2346d5f74062e8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 60672,
"upload_time": "2023-10-24T17:28:45",
"upload_time_iso_8601": "2023-10-24T17:28:45.790367Z",
"url": "https://files.pythonhosted.org/packages/cf/28/a95834adac9ff19777008ee70c5c70be4132596aa020c46b818d324bd53a/zfec-1.5.7.4-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c8de1ec596a0963c40f3e762d52e5bc2da9ef7cb43122d9c7aaabbcaed968c61",
"md5": "8afa27c879ad12af56a249bf255bbafe",
"sha256": "e73740a59a5be468e79f8df0e49bcadb4a37af0d7b4d4ae817031d6e8870bee2"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "8afa27c879ad12af56a249bf255bbafe",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 69456,
"upload_time": "2023-10-24T17:28:47",
"upload_time_iso_8601": "2023-10-24T17:28:47.259911Z",
"url": "https://files.pythonhosted.org/packages/c8/de/1ec596a0963c40f3e762d52e5bc2da9ef7cb43122d9c7aaabbcaed968c61/zfec-1.5.7.4-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6c839f60d499410e6155b3bd1dd551866d240ab1349e053c4a2b183590b9546d",
"md5": "193ffe8755e04b519aa4eb01f162971d",
"sha256": "96da593f37eb95472e2e9cf7acc19270d3af04c7fca9e63dcb3c209ab8c6bb3d"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "193ffe8755e04b519aa4eb01f162971d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 58637,
"upload_time": "2023-10-24T17:28:49",
"upload_time_iso_8601": "2023-10-24T17:28:49.453967Z",
"url": "https://files.pythonhosted.org/packages/6c/83/9f60d499410e6155b3bd1dd551866d240ab1349e053c4a2b183590b9546d/zfec-1.5.7.4-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f86d8e9bd2063bb6381dcf78e7ab352a16755a48d00767bd4c1ee8e78554961d",
"md5": "2c1716b445a73b5f35fb902ef091d394",
"sha256": "31fe44a8bb561a70c471998e5690f78414ac6eb4e7b0f40f60493dfb0dd806cf"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2c1716b445a73b5f35fb902ef091d394",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 58188,
"upload_time": "2023-10-24T17:28:51",
"upload_time_iso_8601": "2023-10-24T17:28:51.017212Z",
"url": "https://files.pythonhosted.org/packages/f8/6d/8e9bd2063bb6381dcf78e7ab352a16755a48d00767bd4c1ee8e78554961d/zfec-1.5.7.4-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cbc0da958eee4e073f1edf13b8295ccdace079c43fcdf3d1ff892f365317087f",
"md5": "571611aaa377cd110c897510b6d4ae81",
"sha256": "a40e89c048dcaf8543ee35eda6f116f83e95a526842f18386a4d2901a3d40850"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "571611aaa377cd110c897510b6d4ae81",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 86075,
"upload_time": "2023-10-24T17:28:53",
"upload_time_iso_8601": "2023-10-24T17:28:53.044447Z",
"url": "https://files.pythonhosted.org/packages/cb/c0/da958eee4e073f1edf13b8295ccdace079c43fcdf3d1ff892f365317087f/zfec-1.5.7.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "963081546558e24ff985ec4fb1c7d68d01a8e5b83fec8f250f5cd7d5864438c1",
"md5": "835d054034bc8e49f93932c9ed534e7c",
"sha256": "9d744e6d1e075af2491281a8af5f441aff2e6fe28835a1e30a76604c2e7a524d"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "835d054034bc8e49f93932c9ed534e7c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 82926,
"upload_time": "2023-10-24T17:28:54",
"upload_time_iso_8601": "2023-10-24T17:28:54.769455Z",
"url": "https://files.pythonhosted.org/packages/96/30/81546558e24ff985ec4fb1c7d68d01a8e5b83fec8f250f5cd7d5864438c1/zfec-1.5.7.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "33493958ece263f1a9bdd245f4bb301d90829c5d1736511aebbbd1ff3723c4ac",
"md5": "14e0daf64e9b1a6f11e4da4323e2abee",
"sha256": "96dc1a6aba0cfdc86bc6ec8e50bf70a8c5706f2195f517a2ac13a0ba3a91ce64"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "14e0daf64e9b1a6f11e4da4323e2abee",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 84960,
"upload_time": "2023-10-24T17:28:56",
"upload_time_iso_8601": "2023-10-24T17:28:56.282139Z",
"url": "https://files.pythonhosted.org/packages/33/49/3958ece263f1a9bdd245f4bb301d90829c5d1736511aebbbd1ff3723c4ac/zfec-1.5.7.4-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8d6165bac9ca53d48185476760d344c690dd56fc933231bc73830e5609b7730f",
"md5": "9e2d314f55a2ef698e5a2cce94947195",
"sha256": "622ca638451eb48dca338d5af69c1fde3082b79c9f9a468ad69c587893c7a6de"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "9e2d314f55a2ef698e5a2cce94947195",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 89001,
"upload_time": "2023-10-24T17:28:58",
"upload_time_iso_8601": "2023-10-24T17:28:58.262115Z",
"url": "https://files.pythonhosted.org/packages/8d/61/65bac9ca53d48185476760d344c690dd56fc933231bc73830e5609b7730f/zfec-1.5.7.4-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dcfb66bdc0e6d114a51f096dad9cb23eabb8c0a1f235af85b4fa6e64da726741",
"md5": "11b07f398774b09825ce921f37a00050",
"sha256": "ac7db89607d473128dd633be783ded3c91b348dc9fc5cdaa143d43ebc0513308"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "11b07f398774b09825ce921f37a00050",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 59029,
"upload_time": "2023-10-24T17:28:59",
"upload_time_iso_8601": "2023-10-24T17:28:59.415707Z",
"url": "https://files.pythonhosted.org/packages/dc/fb/66bdc0e6d114a51f096dad9cb23eabb8c0a1f235af85b4fa6e64da726741/zfec-1.5.7.4-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bbcb611b75a382943e1334523d14d974a709b3c5a0155aaae47abe7a7e8e3d5a",
"md5": "d22fe4ca27aa2d1ac5c9dc9ad149be09",
"sha256": "64da28c7f61f8fe8804c42c605700c30b75b945891a1dd0e1159bd9d191e9f00"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "d22fe4ca27aa2d1ac5c9dc9ad149be09",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 60665,
"upload_time": "2023-10-24T17:29:00",
"upload_time_iso_8601": "2023-10-24T17:29:00.603541Z",
"url": "https://files.pythonhosted.org/packages/bb/cb/611b75a382943e1334523d14d974a709b3c5a0155aaae47abe7a7e8e3d5a/zfec-1.5.7.4-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5afc9fa8a13d90eba1a9b5042e250cd836e5247335cad57fc45a1042ae560d84",
"md5": "43a7ee2f503f8fc13d688e230b6d8723",
"sha256": "88902dde0662ff9a28fb6d8024e9607754de686e39db51a6e92d8638d22699ee"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp312-cp312-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "43a7ee2f503f8fc13d688e230b6d8723",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 69640,
"upload_time": "2023-10-24T17:29:01",
"upload_time_iso_8601": "2023-10-24T17:29:01.846059Z",
"url": "https://files.pythonhosted.org/packages/5a/fc/9fa8a13d90eba1a9b5042e250cd836e5247335cad57fc45a1042ae560d84/zfec-1.5.7.4-cp312-cp312-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ae9e7d371e91ae6ecae536784ca6d3012fceb18fdc382470a5fee1b2087ba8f7",
"md5": "434dd031b310fbad6d3f8277fb55adce",
"sha256": "cee15f67d902024760c23365ba7b0104e5a16f41ba0349a8e75f1c1b096c8511"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "434dd031b310fbad6d3f8277fb55adce",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 58748,
"upload_time": "2023-10-24T17:29:03",
"upload_time_iso_8601": "2023-10-24T17:29:03.789831Z",
"url": "https://files.pythonhosted.org/packages/ae/9e/7d371e91ae6ecae536784ca6d3012fceb18fdc382470a5fee1b2087ba8f7/zfec-1.5.7.4-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1c37e967a7eebf409891e6dd2c5155d1c950881996fc148d881db2ddb2a4221f",
"md5": "8851dca32be804d5522863b31a887289",
"sha256": "5fb30a93b45c4ffb732e7db66ce050d2a6155ca715251ef111704e36ef7bb17e"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8851dca32be804d5522863b31a887289",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 58259,
"upload_time": "2023-10-24T17:29:05",
"upload_time_iso_8601": "2023-10-24T17:29:05.942052Z",
"url": "https://files.pythonhosted.org/packages/1c/37/e967a7eebf409891e6dd2c5155d1c950881996fc148d881db2ddb2a4221f/zfec-1.5.7.4-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3f15bda7a6454fa2cf7501330c3d254ff1b01bd4cab34c313dd1a2787040bcc8",
"md5": "fd03c2780c8ea6258c0f8725f821dc7e",
"sha256": "86ec158ed48d340e56308b9ec80360cb3143714216c7d1b4466aef2ef134011d"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "fd03c2780c8ea6258c0f8725f821dc7e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 86269,
"upload_time": "2023-10-24T17:29:07",
"upload_time_iso_8601": "2023-10-24T17:29:07.449100Z",
"url": "https://files.pythonhosted.org/packages/3f/15/bda7a6454fa2cf7501330c3d254ff1b01bd4cab34c313dd1a2787040bcc8/zfec-1.5.7.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9e62848e6c7d9da49c475765e22dd261e12463aa461a71139f1df31be32aba08",
"md5": "0a5d54d3e18bbeaee9f5c27c03526b4b",
"sha256": "cf75b79c69835a2db4fbcaf66eb3e3e3fd2287843ddb226d175ba6f228eac4d4"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "0a5d54d3e18bbeaee9f5c27c03526b4b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 83010,
"upload_time": "2023-10-24T17:29:08",
"upload_time_iso_8601": "2023-10-24T17:29:08.652932Z",
"url": "https://files.pythonhosted.org/packages/9e/62/848e6c7d9da49c475765e22dd261e12463aa461a71139f1df31be32aba08/zfec-1.5.7.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e5e4559fcf00ecdc1bffed01acaa3e6991cdefa4a3f76b65ce4f73a9fcd96098",
"md5": "92493a21baef79a02c72796f8e5900c4",
"sha256": "5613eb59e38f3d43356bb14eb965f68e9c9c4166c8a9bf53e733603a5189b882"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "92493a21baef79a02c72796f8e5900c4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 84996,
"upload_time": "2023-10-24T17:29:11",
"upload_time_iso_8601": "2023-10-24T17:29:11.122050Z",
"url": "https://files.pythonhosted.org/packages/e5/e4/559fcf00ecdc1bffed01acaa3e6991cdefa4a3f76b65ce4f73a9fcd96098/zfec-1.5.7.4-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "95b7df4a9fa216617e26594724d6201752f087fc375b888fb8b779d5870e9bdc",
"md5": "ce09773a471ba573f3c8c27896d82d16",
"sha256": "24f62c5802c9246280126d8ca2e2b63ab8715a5cf2a3ab376312498a07c547ec"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "ce09773a471ba573f3c8c27896d82d16",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 89194,
"upload_time": "2023-10-24T17:29:13",
"upload_time_iso_8601": "2023-10-24T17:29:13.067995Z",
"url": "https://files.pythonhosted.org/packages/95/b7/df4a9fa216617e26594724d6201752f087fc375b888fb8b779d5870e9bdc/zfec-1.5.7.4-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "42a37abc67d5681af1f2f8c1b9eb937e7e3e45c69e047e9b203d0ef8a857d481",
"md5": "7732f64eaa2126c7c9417fb2d817a7e0",
"sha256": "e5ab045bf4e39d84d55a394808403178ac5685f7d86e969957e1fb9c57dcea17"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "7732f64eaa2126c7c9417fb2d817a7e0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 59058,
"upload_time": "2023-10-24T17:29:14",
"upload_time_iso_8601": "2023-10-24T17:29:14.160070Z",
"url": "https://files.pythonhosted.org/packages/42/a3/7abc67d5681af1f2f8c1b9eb937e7e3e45c69e047e9b203d0ef8a857d481/zfec-1.5.7.4-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c393eebef7f485b1adc8af8fe637b90c73046d6f098d404095c2892ce48db681",
"md5": "5e324910c620b9372a2ddf8603c4c843",
"sha256": "cc9ea245f468423bba08e241a945b459465edae076ed73c8e50af04631a96312"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "5e324910c620b9372a2ddf8603c4c843",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 60740,
"upload_time": "2023-10-24T17:29:15",
"upload_time_iso_8601": "2023-10-24T17:29:15.980212Z",
"url": "https://files.pythonhosted.org/packages/c3/93/eebef7f485b1adc8af8fe637b90c73046d6f098d404095c2892ce48db681/zfec-1.5.7.4-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b0564f1fdaee1d06e3024f7581895722f956dfea19fd9f0d336805c6dd7fa3e6",
"md5": "c3652c94c13ad95d166650f1e0c818b5",
"sha256": "df6157e3ed242b287dd81940cccbe7c3213857dfd258e781ec5ecd4594443a3e"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "c3652c94c13ad95d166650f1e0c818b5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 69431,
"upload_time": "2023-10-24T17:29:17",
"upload_time_iso_8601": "2023-10-24T17:29:17.525478Z",
"url": "https://files.pythonhosted.org/packages/b0/56/4f1fdaee1d06e3024f7581895722f956dfea19fd9f0d336805c6dd7fa3e6/zfec-1.5.7.4-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "472e5c152cfdb25ade3a701c3d43965f4af62c08712a57874731888163451a66",
"md5": "a05dccbd7c73184ea342255ae71880e2",
"sha256": "7d84fc7227987ca164efd1e83631c8d66a8eb2260d7b415fc06758bf40a6dd8a"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "a05dccbd7c73184ea342255ae71880e2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 58624,
"upload_time": "2023-10-24T17:29:19",
"upload_time_iso_8601": "2023-10-24T17:29:19.869223Z",
"url": "https://files.pythonhosted.org/packages/47/2e/5c152cfdb25ade3a701c3d43965f4af62c08712a57874731888163451a66/zfec-1.5.7.4-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "03b1a3b845410a348f849c8532e4ae403444ab342902eabb72aa702f15b90a5a",
"md5": "6cc68e579e1e1d628243e81d5834730c",
"sha256": "25bfe0c1f5a8decc6db6bd184d8c6adce02c47896dd372a67b381233a0736f4b"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6cc68e579e1e1d628243e81d5834730c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 58158,
"upload_time": "2023-10-24T17:29:21",
"upload_time_iso_8601": "2023-10-24T17:29:21.296579Z",
"url": "https://files.pythonhosted.org/packages/03/b1/a3b845410a348f849c8532e4ae403444ab342902eabb72aa702f15b90a5a/zfec-1.5.7.4-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5aa786b91da999742e9c4767f22f601320bb5b9910ed73e7bf5ac8ee1c695f3f",
"md5": "c2355c958fd11f71d287492bbfa5de40",
"sha256": "84b0f402f2c3abdb9390c48ae3f08272efa41e0bc00c13684f1bfc6f3d1c3d5f"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c2355c958fd11f71d287492bbfa5de40",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 84373,
"upload_time": "2023-10-24T17:29:22",
"upload_time_iso_8601": "2023-10-24T17:29:22.730466Z",
"url": "https://files.pythonhosted.org/packages/5a/a7/86b91da999742e9c4767f22f601320bb5b9910ed73e7bf5ac8ee1c695f3f/zfec-1.5.7.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4b1b4b43977bd08f70d9975f086edcac97f737bde4c8c8219b84d6c6405afc1b",
"md5": "26a333278bbf8ffca33484d983b866a7",
"sha256": "69284af164d19720bf380bce64a0fe2f229f26178c9a92fadd643ca1e7b77e81"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "26a333278bbf8ffca33484d983b866a7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 81494,
"upload_time": "2023-10-24T17:29:24",
"upload_time_iso_8601": "2023-10-24T17:29:24.028870Z",
"url": "https://files.pythonhosted.org/packages/4b/1b/4b43977bd08f70d9975f086edcac97f737bde4c8c8219b84d6c6405afc1b/zfec-1.5.7.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8867991f6fd3bd11a2238379cf7538128965902552113098b61487730af8e21d",
"md5": "998e449bc07a74430461dd47bb09fa70",
"sha256": "0cdead7c0eea420659ea6745d8f186487349aed37054268e94bcdf072af3ea06"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "998e449bc07a74430461dd47bb09fa70",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 83700,
"upload_time": "2023-10-24T17:29:26",
"upload_time_iso_8601": "2023-10-24T17:29:26.079458Z",
"url": "https://files.pythonhosted.org/packages/88/67/991f6fd3bd11a2238379cf7538128965902552113098b61487730af8e21d/zfec-1.5.7.4-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4393043efe976ad02b09f203e9aebb4e35d24b5c1727bcd09035d0c10688bbc3",
"md5": "a81d68a605ebcbe11f6670573328b589",
"sha256": "6842be5dda2141c6145e1543d88bb0a4ceeae5d26600984cc5d5e7573fcdb8b1"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "a81d68a605ebcbe11f6670573328b589",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 87677,
"upload_time": "2023-10-24T17:29:27",
"upload_time_iso_8601": "2023-10-24T17:29:27.230454Z",
"url": "https://files.pythonhosted.org/packages/43/93/043efe976ad02b09f203e9aebb4e35d24b5c1727bcd09035d0c10688bbc3/zfec-1.5.7.4-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "77926005a56273a6663cd19461d0aa5cd0a55edf3541acd328a84a9a33f434fc",
"md5": "a6e18dcadb2d8e07712df60d72159bd9",
"sha256": "23577f8db99f255084142d9ce553eff12f9b3cacbaae08ba71a6d639a679b07a"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "a6e18dcadb2d8e07712df60d72159bd9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 59042,
"upload_time": "2023-10-24T17:29:28",
"upload_time_iso_8601": "2023-10-24T17:29:28.444568Z",
"url": "https://files.pythonhosted.org/packages/77/92/6005a56273a6663cd19461d0aa5cd0a55edf3541acd328a84a9a33f434fc/zfec-1.5.7.4-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4fc60de280b108fabbba57ab92509df72c39584b5ef85b65665016a762333c12",
"md5": "191601ee4198f4d777048f0f187a54e2",
"sha256": "0740d89f2260bc85842d44bbb50b39ccc2f7df86f8ffb21a5cc5656cd45c82e9"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "191601ee4198f4d777048f0f187a54e2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 60685,
"upload_time": "2023-10-24T17:29:29",
"upload_time_iso_8601": "2023-10-24T17:29:29.952117Z",
"url": "https://files.pythonhosted.org/packages/4f/c6/0de280b108fabbba57ab92509df72c39584b5ef85b65665016a762333c12/zfec-1.5.7.4-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "858b99c0688fd18ad2124f2c3ed2ae1c8451ef83f5c19511631c5a6fc48e3c2c",
"md5": "cf3ebaca2ac9d795eec518807a0632f1",
"sha256": "0e1d656c6600f8d8e6a3d6c03068af0e8c349bbe0800ea7b26d6b7aa84061adb"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "cf3ebaca2ac9d795eec518807a0632f1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 69436,
"upload_time": "2023-10-24T17:29:31",
"upload_time_iso_8601": "2023-10-24T17:29:31.779788Z",
"url": "https://files.pythonhosted.org/packages/85/8b/99c0688fd18ad2124f2c3ed2ae1c8451ef83f5c19511631c5a6fc48e3c2c/zfec-1.5.7.4-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5bd51811f0815b702095e8bcde4151500b72a5391d0fd1743570669657d8f727",
"md5": "0e461b0f7c930f508afa56683f8c6844",
"sha256": "88349704d295e7c22567446f6d7ba7cf756b977b0b99fed1c37c4ff432e5abf7"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "0e461b0f7c930f508afa56683f8c6844",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 58627,
"upload_time": "2023-10-24T17:29:33",
"upload_time_iso_8601": "2023-10-24T17:29:33.242934Z",
"url": "https://files.pythonhosted.org/packages/5b/d5/1811f0815b702095e8bcde4151500b72a5391d0fd1743570669657d8f727/zfec-1.5.7.4-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a7dffa3686e930c7477f3a756e6732164c31341ee5f2aa1e4f9c3c2699ede7d4",
"md5": "284fd4d6a67d330f95194cd8622be573",
"sha256": "79ca7b7c58de7ef3003da23c657bf8de6f4392e624dbcf236f600cf0371ebc86"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "284fd4d6a67d330f95194cd8622be573",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 58166,
"upload_time": "2023-10-24T17:29:34",
"upload_time_iso_8601": "2023-10-24T17:29:34.523473Z",
"url": "https://files.pythonhosted.org/packages/a7/df/fa3686e930c7477f3a756e6732164c31341ee5f2aa1e4f9c3c2699ede7d4/zfec-1.5.7.4-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e617e486b112f67c940cc0117fb43a18e9cfcfa46183dd83270873884e424d19",
"md5": "76d3bd52143e18664985e1338883599f",
"sha256": "bd2549bb7988f803f63e0b4dcdada2f8b05e5ba1d78c93eda521dd6b7df9744f"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "76d3bd52143e18664985e1338883599f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 84055,
"upload_time": "2023-10-24T17:29:35",
"upload_time_iso_8601": "2023-10-24T17:29:35.911755Z",
"url": "https://files.pythonhosted.org/packages/e6/17/e486b112f67c940cc0117fb43a18e9cfcfa46183dd83270873884e424d19/zfec-1.5.7.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c4128ca104001f92bcb2297140c9b9eea4123a65d15bbdab1b4284c14e2a608d",
"md5": "eff36f10fb1b4740639f32b2da1f455c",
"sha256": "35a0519d2af5bf502268b04537f6c8759ffa8eef828a7ebfd4ae27aa20113ab0"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "eff36f10fb1b4740639f32b2da1f455c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 81166,
"upload_time": "2023-10-24T17:29:37",
"upload_time_iso_8601": "2023-10-24T17:29:37.871440Z",
"url": "https://files.pythonhosted.org/packages/c4/12/8ca104001f92bcb2297140c9b9eea4123a65d15bbdab1b4284c14e2a608d/zfec-1.5.7.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "480fea9835f85793c0453b06058956ea6e8e7c62346f530568c707aaef26b18e",
"md5": "3fbdd5eb93f797824dbe74fc827f2a84",
"sha256": "3cce9a6ecda727a388e859e0fb3f0b401ed5c90094ca94981d84dbb92cf3fc1a"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "3fbdd5eb93f797824dbe74fc827f2a84",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 83768,
"upload_time": "2023-10-24T17:29:38",
"upload_time_iso_8601": "2023-10-24T17:29:38.995683Z",
"url": "https://files.pythonhosted.org/packages/48/0f/ea9835f85793c0453b06058956ea6e8e7c62346f530568c707aaef26b18e/zfec-1.5.7.4-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7697b7e040d9fb5a5c27d7f8d7cb0edae717995129b8a9aafa773263367c5508",
"md5": "e52a8f7abeb660eaeed33ffba8d6560e",
"sha256": "15ad8a6623d06b038b83995bee5080c5efacdee6040b214610e9fd7f350fcc46"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "e52a8f7abeb660eaeed33ffba8d6560e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 87779,
"upload_time": "2023-10-24T17:29:40",
"upload_time_iso_8601": "2023-10-24T17:29:40.343462Z",
"url": "https://files.pythonhosted.org/packages/76/97/b7e040d9fb5a5c27d7f8d7cb0edae717995129b8a9aafa773263367c5508/zfec-1.5.7.4-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "615506e8f4f8dcf71e1f9274427c5fdc522b6bf1ea29b05bf1f3b81e558447ff",
"md5": "ae639edb69af85b8e1c09db6e6a8e689",
"sha256": "17a440835c4d891d24962817b4b8bb60489260f63f6970ff784ffc1191f9269e"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "ae639edb69af85b8e1c09db6e6a8e689",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 59036,
"upload_time": "2023-10-24T17:29:42",
"upload_time_iso_8601": "2023-10-24T17:29:42.344791Z",
"url": "https://files.pythonhosted.org/packages/61/55/06e8f4f8dcf71e1f9274427c5fdc522b6bf1ea29b05bf1f3b81e558447ff/zfec-1.5.7.4-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ed7afab6ced67bca2cac29b034f8b3a7650105081df8df42c9a6d907a23b6e92",
"md5": "ec09c0f7fa2828f5e4cc16035d4b9778",
"sha256": "4a3526f0b05dd9222018d15a40671a3f7beb6fd04f5dc4374ba24a0f4ebaf48d"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "ec09c0f7fa2828f5e4cc16035d4b9778",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 60677,
"upload_time": "2023-10-24T17:29:44",
"upload_time_iso_8601": "2023-10-24T17:29:44.326058Z",
"url": "https://files.pythonhosted.org/packages/ed/7a/fab6ced67bca2cac29b034f8b3a7650105081df8df42c9a6d907a23b6e92/zfec-1.5.7.4-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a5e9b9cd18398c79cf2e3409569e94bf1f7491b29f7fb158a94ea69a974ecb9e",
"md5": "42823160d1181dbef2b074fcb54ff755",
"sha256": "3a58a54193ff7bd17da22538de1286859c84081518436833649fd58e03ba1c8c"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "42823160d1181dbef2b074fcb54ff755",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 58109,
"upload_time": "2023-10-24T17:29:47",
"upload_time_iso_8601": "2023-10-24T17:29:47.459679Z",
"url": "https://files.pythonhosted.org/packages/a5/e9/b9cd18398c79cf2e3409569e94bf1f7491b29f7fb158a94ea69a974ecb9e/zfec-1.5.7.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "37b4b448b2d52a479fb8988bff3e9d091942dc430e76f1970ea66cc53d2be1ff",
"md5": "3039863826cb5b087f14f36525cacd0d",
"sha256": "75375359e21329ef31d9df0442cdfe30d9fc5b17f5d169081dd0019c528c6834"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3039863826cb5b087f14f36525cacd0d",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 59890,
"upload_time": "2023-10-24T17:29:49",
"upload_time_iso_8601": "2023-10-24T17:29:49.184845Z",
"url": "https://files.pythonhosted.org/packages/37/b4/b448b2d52a479fb8988bff3e9d091942dc430e76f1970ea66cc53d2be1ff/zfec-1.5.7.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c420ce6e50a83da473c60886e46e55b7deb76978bf48bf51d93561da6285d5ba",
"md5": "5ae192f5a251810e7c8237791c3fef1d",
"sha256": "0f4f5f16fb5842b2e8622635149e408875ec1b95f87fffa67913537e7d7ed802"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "5ae192f5a251810e7c8237791c3fef1d",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 59612,
"upload_time": "2023-10-24T17:29:50",
"upload_time_iso_8601": "2023-10-24T17:29:50.548533Z",
"url": "https://files.pythonhosted.org/packages/c4/20/ce6e50a83da473c60886e46e55b7deb76978bf48bf51d93561da6285d5ba/zfec-1.5.7.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "296d6be1c3c7d6add295324579e2e8e3471754ca6af4c4088f60138a15964cf8",
"md5": "8ab217c11535f5fbf48aac9024d7b44a",
"sha256": "d84aae11c909410426a5c76a794c97cc1261afd5a9fe0ce2baefbf0f8e36d72f"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-pp37-pypy37_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "8ab217c11535f5fbf48aac9024d7b44a",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 60780,
"upload_time": "2023-10-24T17:29:52",
"upload_time_iso_8601": "2023-10-24T17:29:52.436664Z",
"url": "https://files.pythonhosted.org/packages/29/6d/6be1c3c7d6add295324579e2e8e3471754ca6af4c4088f60138a15964cf8/zfec-1.5.7.4-pp37-pypy37_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b19dce462c46d5f66e94872dea3914694bf7ac6eddf035a27bb955c5dae6fad8",
"md5": "f9579ae88144db406b82348e1d0bcb3a",
"sha256": "82185a50fd6b6fbd31da09118161f018cf0029c5c4a5d9b6793bbe5390832e40"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "f9579ae88144db406b82348e1d0bcb3a",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 58110,
"upload_time": "2023-10-24T17:29:53",
"upload_time_iso_8601": "2023-10-24T17:29:53.657650Z",
"url": "https://files.pythonhosted.org/packages/b1/9d/ce462c46d5f66e94872dea3914694bf7ac6eddf035a27bb955c5dae6fad8/zfec-1.5.7.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d69580e812f210a6f20b071154f5962a18cb78c981b923e0727383818fe67a43",
"md5": "88be03ab0744e064efd036d518b51c2e",
"sha256": "c01c9d189c99fa65734029e8e4755e8ed3eb9f5f2d345715b945d93b00c117be"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "88be03ab0744e064efd036d518b51c2e",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 59781,
"upload_time": "2023-10-24T17:29:55",
"upload_time_iso_8601": "2023-10-24T17:29:55.571683Z",
"url": "https://files.pythonhosted.org/packages/d6/95/80e812f210a6f20b071154f5962a18cb78c981b923e0727383818fe67a43/zfec-1.5.7.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ee5c6afc871c21c7ae472c071c184a430d7e24199291baa0316de05d7c337dce",
"md5": "ca27f5b0f770fa987a948a2246adaf0d",
"sha256": "28c68b04f5e020ad3d1acb49360b747dea56cf071c6d8ff10ee0710abd3c3145"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ca27f5b0f770fa987a948a2246adaf0d",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 59528,
"upload_time": "2023-10-24T17:29:57",
"upload_time_iso_8601": "2023-10-24T17:29:57.306802Z",
"url": "https://files.pythonhosted.org/packages/ee/5c/6afc871c21c7ae472c071c184a430d7e24199291baa0316de05d7c337dce/zfec-1.5.7.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "58f5610e0033c3b296a2fa3560a0701c0c1aafe9988f10aea871eed7adf41d8d",
"md5": "20a9be41400d2ddc0c751568dfc8950f",
"sha256": "d791027ac136286247021cbcf2a97331428f12b998c65ba657416b4450244445"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-pp38-pypy38_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "20a9be41400d2ddc0c751568dfc8950f",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 60780,
"upload_time": "2023-10-24T17:29:58",
"upload_time_iso_8601": "2023-10-24T17:29:58.442518Z",
"url": "https://files.pythonhosted.org/packages/58/f5/610e0033c3b296a2fa3560a0701c0c1aafe9988f10aea871eed7adf41d8d/zfec-1.5.7.4-pp38-pypy38_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c4d9d7278a530f577752da64e311d29455b86e003530db0dda6cf142c1da86f",
"md5": "e4dda7b8cfa4655cc925a37545a8b47e",
"sha256": "1c750d8996d94d21a92a649d258a655f8480eb89afabf52c3ec5435fd7851417"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e4dda7b8cfa4655cc925a37545a8b47e",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 58118,
"upload_time": "2023-10-24T17:29:59",
"upload_time_iso_8601": "2023-10-24T17:29:59.655412Z",
"url": "https://files.pythonhosted.org/packages/5c/4d/9d7278a530f577752da64e311d29455b86e003530db0dda6cf142c1da86f/zfec-1.5.7.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "53dc31205271865232b9f1835320ad4a137be9a4d3422c7e1321c06d4ef8c8fa",
"md5": "e8bd8dbde088620c2e4dee4e57592875",
"sha256": "132fc86428c699bf02a0d63b2b780583a6a818d3432f7cb313e5ff8303c99205"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e8bd8dbde088620c2e4dee4e57592875",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 59818,
"upload_time": "2023-10-24T17:30:01",
"upload_time_iso_8601": "2023-10-24T17:30:01.602060Z",
"url": "https://files.pythonhosted.org/packages/53/dc/31205271865232b9f1835320ad4a137be9a4d3422c7e1321c06d4ef8c8fa/zfec-1.5.7.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "065216aaade64cb5e4ba71cc61e69aed4dac74a2a9641f1eeed52e15007f73df",
"md5": "eb1f920cb7437101c4e45324bc81babb",
"sha256": "5c6b2434a57ebb8ed2ce699ae06d2d4b547b91ff54768b63e62719d070441552"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "eb1f920cb7437101c4e45324bc81babb",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 59535,
"upload_time": "2023-10-24T17:30:04",
"upload_time_iso_8601": "2023-10-24T17:30:04.150448Z",
"url": "https://files.pythonhosted.org/packages/06/52/16aaade64cb5e4ba71cc61e69aed4dac74a2a9641f1eeed52e15007f73df/zfec-1.5.7.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f031a1ba75f74c4522c6f3aba3bbe59c22285eceb6fdaa2877d59388a58d1288",
"md5": "265b0a7cedd9c380975eb8797e7d5058",
"sha256": "ae59b5a49bb5223da7e905a9c8a4bd32ac4cb0c6143ac8c467b48a850d74da9f"
},
"downloads": -1,
"filename": "zfec-1.5.7.4-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "265b0a7cedd9c380975eb8797e7d5058",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 60784,
"upload_time": "2023-10-24T17:30:05",
"upload_time_iso_8601": "2023-10-24T17:30:05.525068Z",
"url": "https://files.pythonhosted.org/packages/f0/31/a1ba75f74c4522c6f3aba3bbe59c22285eceb6fdaa2877d59388a58d1288/zfec-1.5.7.4-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "14f25e655a102f2c3a24007b73925e2de67ba9efda078beb265993bfcee08c62",
"md5": "bcf82b77def364ed54558886f6777ec7",
"sha256": "1069857218f8babe4084439712720803a11fe91b14f20bc77a96a4e6f4e1111f"
},
"downloads": -1,
"filename": "zfec-1.5.7.4.tar.gz",
"has_sig": false,
"md5_digest": "bcf82b77def364ed54558886f6777ec7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 84557,
"upload_time": "2023-10-24T17:30:07",
"upload_time_iso_8601": "2023-10-24T17:30:07.588919Z",
"url": "https://files.pythonhosted.org/packages/14/f2/5e655a102f2c3a24007b73925e2de67ba9efda078beb265993bfcee08c62/zfec-1.5.7.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-10-24 17:30:07",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "tahoe-lafs",
"github_project": "zfec",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"circle": true,
"tox": true,
"lcname": "zfec"
}