Metadata-Version: 1.0
Name: humanfriendly
Version: 1.5
Summary: Human friendly output for text interfaces using Python
Home-page: https://humanfriendly.readthedocs.org
Author: Peter Odding
Author-email: peter@peterodding.com
License: UNKNOWN
Description: humanfriendly: Human friendly input/output in Python
        ====================================================
        
        The functions in the ``humanfriendly`` package can be used to make text
        interfaces more user friendly by parsing and formatting file sizes and
        timestamps in simple, human readable formats.
        
        Getting started
        ---------------
        
        It's very simple to start using the ``humanfriendly`` package::
        
           >>> import humanfriendly
           >>> user_input = raw_input("Enter a readable file size: ")
           Enter a readable file size: 16G
           >>> num_bytes = humanfriendly.parse_size(user_input)
           >>> print num_bytes
           17179869184
           >>> print "You entered:", humanfriendly.format_size(num_bytes)
           You entered: 16 GB
        
        Contact
        -------
        
        The latest version of ``humanfriendly`` is available on PyPI_ and GitHub_. The
        documentation is hosted on `Read the Docs`_. For bug reports please create an
        issue on GitHub_. If you have questions, suggestions, etc. feel free to send me
        an e-mail at `peter@peterodding.com`_.
        
        License
        -------
        
        This software is licensed under the `MIT license`_.
        
        © 2013 Peter Odding.
        
        .. External references:
        .. _GitHub: https://github.com/xolox/python-humanfriendly
        .. _MIT license: http://en.wikipedia.org/wiki/MIT_License
        .. _peter@peterodding.com: peter@peterodding.com
        .. _PyPI: https://pypi.python.org/pypi/humanfriendly
        .. _Read the Docs: https://humanfriendly.readthedocs.org
        
Platform: UNKNOWN
