]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/blob - zfec/zfec/__init__.py
3b9b8dcbca9d76c38d4bf74684b717d07e5023ec
[tahoe-lafs/zfec.git] / zfec / zfec / __init__.py
1 """
2 zfec -- fast forward error correction library with Python interface
3
4 maintainer web site: U{http://allmydata.com/source/zfec}
5
6 zfec web site: U{http://allmydata.com/source/zfec}
7 """
8
9 __version__ = "unknown"
10 try:
11     from _version import __version__
12 except ImportError:
13     # We're running in a tree that hasn't run darcsver, and didn't come with a
14     # _version.py, so we don't know what our version is. This should not happen
15     # very often.
16     pass
17
18 from _fec import Encoder, Decoder, Error
19 import easyfec, filefec, cmdline_zfec, cmdline_zunfec
20
21 # zfec -- fast forward error correction library with Python interface
22
23 # Copyright (C) 2007 Allmydata, Inc.
24 # Author: Zooko Wilcox-O'Hearn
25 # mailto:zooko@zooko.com
26
27 # This file is part of zfec.
28 #
29 # See README.txt for licensing information.