Metadata-Version: 1.1
Name: utilkit
Version: 0.2
Summary: Collection of useful helper functions for datetime, print, string formatting and more
Home-page: https://github.com/aquatix/python-utilkit/
Author: Michiel Scholten
Author-email: michiel@diginaut.net
License: MIT
Description: ==============
        python-utilkit
        ==============
        
        Some useful functions and usability that should be shared between your apps.
        
        |PyPI version| |PyPI downloads| |PyPI license|
        
        Installation
        ------------
        
        From PyPI
        ~~~~~~~~~
        
        Assuming you already are inside a virtualenv:
        
        .. code-block:: bash
        
            pip install utilkit
        
        From Git
        ~~~~~~~~
        
        Create a new virtualenv (if you are not already in one) and install the
        necessary packages:
        
        .. code-block:: bash
        
            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).
        
        
        string utils
        ------------
        
        
        .. |PyPI version| image:: https://img.shields.io/pypi/v/utilkit.svg
           :target: https://pypi.python.org/pypi/utilkit/
        .. |PyPI downloads| image:: https://img.shields.io/pypi/dm/utilkit.svg
           :target: https://pypi.python.org/pypi/utilkit/
        .. |PyPI license| image:: https://img.shields.io/github/license/aquatix/python-utilkit.svg
           :target: https://pypi.python.org/pypi/utilkit/
        
Platform: UNKNOWN
Classifier: Topic :: Software Development :: Libraries
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.4
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
