Metadata-Version: 2.1
Name: humanizer
Version: 0.1.0
Summary: A developer friendly data/value humanizer for debugging/logging - for Python.
Home-page: https://github.com/grimen/python-humanizer
Author: Jonas Grimfelt
Author-email: grimen@gmail.com
License: MIT
Download-URL: https://github.com/grimen/python-humanizer
Project-URL: bugs, https://github.com/grimen/python-humanizer/issues
Project-URL: repository, https://github.com/grimen/python-humanizer
Description: 
        # `humanizer` [![PyPI version](https://badge.fury.io/py/humanizer.svg)](https://badge.fury.io/py/humanizer) [![Build Status](https://travis-ci.com/grimen/python-humanizer.svg?branch=master)](https://travis-ci.com/grimen/python-humanizer) [![Coverage Status](https://codecov.io/gh/grimen/python-humanizer/branch/master/graph/badge.svg)](https://codecov.io/gh/grimen/python-humanizer)
        
        *A developer friendly data/value humanizer for debugging/logging - for Python.*
        
        
        ## Introduction
        
        *TODO*
        
        
        ## Install
        
        Install using **pip**:
        
        ```sh
        $ pip install humanizer
        ```
        
        
        ## Use
        
        Very basic **[example](https://github.com/grimen/python-humanizer/tree/master/examples/basic.py)**:
        
        ```python
        from humanizer import bytesize, duration
        
        # TODO: add example
        
        ```
        
        
        ## Test
        
        Clone down source code:
        
        ```sh
        $ make install
        ```
        
        Run **colorful tests**, with only native environment (dependency sandboxing up to you):
        
        ```sh
        $ make test
        ```
        
        Run **less colorful tests**, with **multi-environment** (using **tox**):
        
        ```sh
        $ make test-tox
        ```
        
        
        ## About
        
        This project was mainly initiated - in lack of solid existing alternatives - to be used at our work at **[Markable.ai](https://markable.ai)** to have common code conventions between various programming environments where **Python** (research, CV, AI) is heavily used.
        
        
        ## License
        
        Released under the MIT license.
        
Keywords: humanizer,humanize,data,value,formatting,format,logging,log,debugging,debug,printing,print
Platform: UNKNOWN
Classifier: Topic :: Software Development :: Libraries
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Description-Content-Type: text/markdown
