utilkit library
python-utilkit
Some useful functions and usability that should be shared between your apps.
Repo: https://github.com/aquatix/python-utilkit/
Installation
From PyPI
Assuming you already are inside a virtualenv:
pip install utilkit
From Git
Create a new virtualenv (if you are not already in one) and install the necessary packages:
git clone https://github.com/aquatix/python-utilkit.git cd utilkit mkvirtualenv utilkit # or whatever project you are working on pip install -r requirements.txt
datetime utils
print utils
Pretty printing of data, for example the formatting of two-dimensional lists into a table which finds out the correct width of its columns by itself (to_smart_columns).