]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/blob - zfec/__init__.py
475acf987b7ba0af4ad7b3f2bd3cf80bf7213a0d
[tahoe-lafs/zfec.git] / zfec / __init__.py
1 """
2 zfec -- fast forward error correction library with Python interface
3
4 maintainer web site: U{http://tahoe-lafs.org/source/zfec}
5
6 zfec web site: U{http://tahoe-lafs.org/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 quiet_pyflakes=[__version__, Error, Encoder, Decoder, cmdline_zunfec, filefec, cmdline_zfec, easyfec]
22
23 # zfec -- fast forward error correction library with Python interface
24 #
25 # Copyright (C) 2007-2010 Allmydata, Inc.
26 # Author: Zooko Wilcox-O'Hearn
27 # mailto:zooko@zooko.com
28 #
29 # This file is part of zfec.
30 #
31 # See README.rst for licensing information.