You can install boozelib with pip or from source.
pip is “a tool for installing and managing Python packages”. If you have it installed, simply get boozelib like this:
Install system wide:
sudo pip install boozelib
Install only for the current user:
pip install --user boozelib
You can fetch the latest sourceball from github and unpack it, or just clone the repository: git clone git://github.com/brutus/boozelib.git. If you got the source, change into the directory and use setup.py:
Install system wide:
sudo python setup.py install
Install only for the current user:
python setup.py install --user
There are some doctes in the module, you can run them from the boozelib directory by either running the module by itself python boozelib.py or running python -m doctest -v boozelib.py.
If you want to run the test cases, see that you got nose installed and run nosetests from the boozelib directory (the one containing the module). If you got boozelib already installed, run them like this: nosetest test_boozelib
If something fails, please get in touch.