I’ve just released pyifbabel 0.2.3. pyifbabel is a pure-Python implementation of the Treaty of Babel, to be used by developers who want to extract metadata from interactive fiction files. This release is just a collection of bug fixes that have accumulated since the last release; no new features but overall a much more reliable version.
To get it, you can either install it from PyPI with pip:
$ pip install pyifbabel
Or you can download it directly:
http://pyifbabel.invergo.net/downloads/pyifbabel-0.2.3.tar.gz
You can then install it in one of two ways: the Python way or the good ol’ GNU way:
$ python setup.py install
or
$ ./configure && make install
The good ol’ GNU way also allows you to install to a Virtualenv:
$ ./configure --with-virtualenv --prefix=/path/to/virtualenv
$ make install
If you use Arch Linux you can also find it in the AUR.
Let me know if you run into any problems. Enjoy!