2007-04-11 17:49:33 +00:00
|
|
|
"""
|
|
|
|
pyfec -- fast forward error correction library with Python interface
|
|
|
|
|
|
|
|
maintainer web site: U{http://zooko.com/}
|
|
|
|
|
|
|
|
pyfec web site: U{http://www.allmydata.com/source/pyfec}
|
|
|
|
"""
|
|
|
|
|
|
|
|
from util.version import Version
|
|
|
|
|
|
|
|
# For an explanation of what the parts of the version string mean,
|
|
|
|
# please see pyutil.version.
|
2007-04-15 19:08:12 +00:00
|
|
|
__version__ = Version("1.0.0a1-2-STABLE")
|
2007-04-11 17:49:33 +00:00
|
|
|
|
|
|
|
# Please put a URL or other note here which shows where to get the branch of
|
|
|
|
# development from which this version grew.
|
|
|
|
__sources__ = ["http://www.allmydata.com/source/pyfec",]
|
|
|
|
|
2007-01-27 03:25:36 +00:00
|
|
|
from _fec import Encoder, Decoder, Error
|
|
|
|
import filefec
|
|
|
|
|