Metadata-Version: 1.1
Name: utilkit
Version: 0.4.1
Summary: Collection of useful helper functions for datetime, print, string formatting, directory and file handling, and more
Home-page: https://github.com/aquatix/python-utilkit
Author: Michiel Scholten
Author-email: michiel@diginaut.net
License: MIT
Description-Content-Type: UNKNOWN
Description: ==============
        python-utilkit
        ==============
        
        Some useful functions and usability that should be shared between your apps.
        
        |PyPI version| |PyPI downloads| |PyPI license| |pyversions| |Code health|
        
        Repo: `<https://github.com/aquatix/python-utilkit/>`_
        
        Installation
        ------------
        
        From PyPI
        ~~~~~~~~~
        
        Assuming you already are inside a virtualenv:
        
        .. code-block:: bash
        
            pip install utilkit
        
        If you want to use yaml-related functionality (like fileutil.yaml_ordered_load), please also install PyYAML through `pip install PyYAML`. This is not istalled by default to keep the dependencies limited.
        
        
        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
        --------------
        
        
        file 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
        ------------
        
        
        What's new?
        -----------
        
        See the `Changelog`_.
        
        
        .. _python-utilkit: https://pypi.python.org/pypi/python-utilkit
        .. |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/
        .. |Code health| image:: https://landscape.io/github/aquatix/python-utilkit/master/landscape.svg?style=flat
           :target: https://landscape.io/github/aquatix/python-utilkit/master
           :alt: Code Health
        .. |pyversions| image:: https://img.shields.io/pypi/pyversions/python-utilkit.svg
        .. _Changelog: https://github.com/aquatix/python-utilkit/blob/master/CHANGELOG.md
        .. |version| image:: https://img.shields.io/pypi/v/python-utilkit.svg
           :target: `python-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
Classifier: Programming Language :: Python :: 3.6
