Metadata-Version: 2.1
Name: clrc
Version: 0.0.6
Summary: Easy to use console prints with colors. clrc.info(), clrc.success() etc
Home-page: https://github.com/idchlife/clrc
Author: Igor Andreev
Author-email: idchlife@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENCE.md

# CLRC - easy print with colors (clrc.info, clrc.warn, etc)


## Description

I made this package for easy printing colored messages to output. Under the hood - print function with usage of colorama (https://github.com/tartley/colorama) package colors.

Why? I wanted the simpliest way possible to import package - start right after with colored messages. All functions inside this package satisfy my and possible yours basic needs for colored output


## Installation

    pipenv install clrc

or

    pip install clrc

## Usage

You can pass additional *args like in plain print()

    import clrc

    # Available functions

    clrc.info()
    clrc.warn()
    clrc.success()
    clrc.error()
    clrc.danger()

    # Example:

    clrc.error("This is error", True, 2, False, 43.2)


## Update Log

    0.0.3 - 16.03.2019
    
    - Reformatted code, now using AbstractPrinter and printers instead of raw using of print function
    - Now there is way to attach Loguru via LoguruPrinter


## Licence

See licence file inside repository. But basically it's good old MIT
