An open API service indexing awesome lists of open source software.

https://github.com/weaming/simple-colors

Colorful output in terminal
https://github.com/weaming/simple-colors

Last synced: about 1 year ago
JSON representation

Colorful output in terminal

Awesome Lists containing this project

README

          

# Simple Colors

Colorful output in terminal.

## Installation

```sh
pip install simple-colors
```

## Usage

```python
from simple_colors import *

print(green('hello'))
print(green('hello', 'bold'))
print(green('hello', ['bold', 'underlined']))
```

## Inlucded colors

* black
* red
* green
* yellow
* blue
* magenta
* cyan

## Included styles:

* bold
* bright
* dim
* italic
* underlined
* blink
* reverse

## CLI Usage

```
$ simple-colors -h
usage: simple-colors [-h]
[-s [{bright,bold,dim,italic,underlined,blink,reverse} [{bright,bold,dim,italic,underlined,blink,reverse} ...]]]
{black,red,green,yellow,blue,magenta,cyan} text

positional arguments:
{black,red,green,yellow,blue,magenta,cyan}
text text of file path

optional arguments:
-h, --help show this help message and exit
-s [{bright,bold,dim,italic,underlined,blink,reverse} [{bright,bold,dim,italic,underlined,blink,reverse} ...]], --style [{bright,bold,dim,italic,underlined,blink,reverse} [{bright,bold,dim,italic,underlined,blink,reverse} ...]]
```