Metadata-Version: 2.1
Name: pycolor-term
Version: 0.0.7
Summary: Execute commands to perform real-time terminal output coloring using ANSI color codes.
Home-page: https://github.com/WiLGYSeF/pycolor
Author: wilgysef
Author-email: wilgysef@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/WiLGYSeF/pycolor/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Pycolor

[![Build Status](https://www.travis-ci.com/WiLGYSeF/pycolor.svg?branch=master)](https://www.travis-ci.com/WiLGYSeF/pycolor)
[![codecov](https://codecov.io/gh/WiLGYSeF/pycolor/branch/master/graph/badge.svg?token=7ASXFQTOOG)](https://codecov.io/gh/WiLGYSeF/pycolor)

1. [Installation](#installation).
2. [Example Usage](#example-usage).
3. [Configuration](#configuration).
4. [Formatting Strings](#formatting-strings).
	- [Color Formatting](#colors).
	- [Field Formatting](#fields).
	- [Group Formatting](#groups).
	- [Padding](#padding).
	- [Truncate](#truncate).
5. [Debugging and Creating Profiles](#debugging-and-creating-profiles).
	- [Debug Colors](#debug-colors).
	- [Creating Profiles](#creating-profiles).
6. [Limitations](#limitations).

A Python program that executes commands to perform real-time terminal output coloring using ANSI color codes.
Color formatting can be added to program output using JSON configuration files and regular expressions to improve readability of the output.

Designed for Unix, but works in Windows.

# Installation

```bash
pip install pycolor-term
```

# Example Usage

Pycolor can be used explicitly on the command line:

**Before:**

![sample df output](https://raw.githubusercontent.com/WiLGYSeF/pycolor/master/docs/images/sample-df-output.png)

**After:**

![sample colored df output](https://raw.githubusercontent.com/WiLGYSeF/pycolor/master/docs/images/sample-df-output-colored.png)

[Sample df configuration file.](https://raw.githubusercontent.com/WiLGYSeF/pycolor/master/docs/sample-config/df.json)

----

Pycolor can also be aliased in `~/.bashrc` like so:
```bash
alias rsync='pycolor rsync'
```

**Before:**

![sample rsync output](https://raw.githubusercontent.com/WiLGYSeF/pycolor/master/docs/images/sample-rsync-output.png)

**After:**
*Note pycolor omitted lines with trailing slashes in addition to coloring output for better readability.*

![sample colored rsync output](https://raw.githubusercontent.com/WiLGYSeF/pycolor/master/docs/images/sample-rsync-output-colored.png)

[Sample rsync configuration file.](https://github.com/WiLGYSeF/pycolor/blob/master/docs/sample-config/rsync.json)

# Configuration

Pycolor will first try to load configuration from `~/.pycolor.json` before loading files found in `~/.pycolor.d/` in filename order.

When looking for a profile to use, pycolor will select the last matching profile based on the `name`/`command`, `name_expression`/`command_expression`, or `which` property.

Matching patterns are applied first-to-last for each profile.

JSON schema files that describe the config format can be found in [`/config/schema/`](https://github.com/WiLGYSeF/pycolor/blob/master/src/pycolor/config/schema/profile.json).

Sample config files can be found in [`/docs/sample-config/`](https://github.com/WiLGYSeF/pycolor/blob/master/docs/sample-config/).

# Formatting Strings

Use formatting strings to color/manipulate the program output in real-time: `%<format code>(<format value>)`.

| Format Code | Description |
|---|---|
| [C](#colors) | Color formatter |
| [F](#fields) | Field (separator) formatter |
| [G](#groups) | Regex group formatter |
| [H](#context-aware-color-alias-format) | Context-aware field/group color alias |
| [P](#padding) | Padding formatter |
| [T](#truncate) | Truncation formatter |

Formatting strings can written like `%C(red)` (or its short form, `%Cr`) where the first letter is used as the format type and the rest is the argument.
`%C(red)hello` formats the string `hello` in red

A literal `%` can be used in a format string by using `%%`.
E.g. the format string `The total is %C(red)15%%` will become `The total is 15%`, with the `15%` part in red.

Valid format value characters are upper/lowercase letters and numbers, unless the argument is encapsulated in parentheses, then everything in the parenthesis pair is used.

Check [`/docs/sample-config/`](https://github.com/WiLGYSeF/pycolor/blob/master/docs/sample-config/) for examples of formatting strings being used for actual programs.

## Colors

To colorize output through a replace pattern use `%C<color value>`.

### Recognized Attributes and Colors:
| Color Value | Aliases | ANSI Code | Description |
|---|---|---|---|
| reset | normal, res, nor, z | `\e[0m` | Resets all ANSI color formatting |
| bold | bright, bol, bri | `\e[1m` | Bold characters |
| dim |  | `\e[2m` | Dim characters |
| italic | ita | `\e[3m` | Italicize characters |
| underline | underlined, ul, und | `\e[4m` | Underline characters |
| blink | bli | `\e[5m` | Blink characters |
| invert | reverse, inv, rev | `\e[7m` | Invert characters |
| hidden | conceal, hid, con | `\e[8m` | Hide characters |
| strikethrough | strike, str, crossedout, crossed, cro | `\e[9m` | Strikethrough characters |
| black | k | `\e[30m` | Black color |
| red | r | `\e[31m` | Red color |
| green | g | `\e[32m` | Green color |
| yellow | y | `\e[33m` | Yellow color |
| blue | b | `\e[34m` | Blue color |
| magenta | m | `\e[35m` | Magenta color |
| cyan | c | `\e[36m` | Cyan color |
| grey | gray, e | `\e[37m` | Grey color |
| default |  | `\e[39m` | Default color |
| overline | overlined, ol, ove | `\e[53m` | Overline characters |
| darkgrey | darkgray, de, lk | `\e[90m` | Dark grey color |
| lightred | lr | `\e[91m` | Light red color |
| lightgreen | lg | `\e[92m` | Light green color |
| lightyellow | ly | `\e[93m` | Light yellow color |
| lightblue | lb | `\e[94m` | Light blue color |
| lightmagenta | lm | `\e[95m` | Light magenta color |
| lightcyan | lc | `\e[96m` | Light cyan color |
| white | lightgrey,  le, w | `\e[97m` | White color |

[Click here for a list of all attributes and color codes](https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_%28Select_Graphic_Rendition%29_parameters).

### Modifier Characters

You can select multiple color values by separating them with `;` (must be wrapped in parentheses). e.g. `%C(bold;red)`.

If a `^` is added before a color (e.g. `%C(^red)`), then it is used to set the background color instead.
The color formatting for bold, red-on-yellow text can be written as `%C(bold;red;^yellow)hello`, or `%C(bol;r;^y)hello`, which will produce `\e[1;31;43mhello`.

If a `^` is added before a style (e.g. `%C(^italic)` produces `\e[23m`), then the style is turned off.

Note that turning off bold (`%C(^bold)` i.e. `\e[21m`) instead turns on double underline for some terminals.

### Special Colors

#### 8-bit Color
If a color value is just a number (e.g. `%C130`), then it will use the 8-bit color set (in this case, a brown color: `\e[38;5;130m`).
This also works for background colors as well (e.g. `%C(^130)` produces `\e[48;5;130m`).

[Click here to see the 8-bit color table](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit).

#### 24-bit Color
24-bit color is also supported by using hex codes (`%C0xffaa00` or `%C0xfa0` will produce orange: `\e[38;2;255;170;0m`).

### Raw ANSI Codes
If for some reason you would like to use raw color codes, `%C(raw1;3;36)` will produce bold, italic, cyan (`\e[1;3;36m`).

## Fields

If the pattern's `separator` property is set, then the fields and their separators can be referenced in the format string.

To get a field's text, use `%F<field number>`.
If an output line is `this is a test`, and the pattern `separator` property is ` ` (a space), then the format string `%F2 %F1 %F3 %F4` will format to `is this a test` for that line.

To get the field separator string, use `%Fs<field number>`. This will return the field separator string that precedes that field number.
(e.g. `%Fs3` will get the field separator string that comes before the third field `%F3`).

If `separator` is set to `#+`, and the output line is `a#b##c###d##e#f`, the field format values will be:

| Field Format | Value |
|---|---|
| `%F1` | `a` |
| `%Fs2` | `#` |
| `%F2` | `b` |
| `%Fs3` | `##` |
| `%F3` | `c` |
| `%Fs4` | `###` |
| `%F4` | `d` |
| `%Fs5` | `##` |
| `%F5` | `e` |
| `%Fs6` | `#` |
| `%F6` | `f` |

### Negative Indexing

Field formats support negative indexing, so `%F(-1)_%F(-2)` will format to `f_e` in the previous example.

### Field Ranges

Giving a range of fields is possible using the `*` character, where `%F(<start range>*<end range>)`.
Using the same example as above:

| Field Format | Value |
|---|---|
| `%F(*3)` | `a#b##c` |
| `%F(1*3)` | `a#b##c` |
| `%F(2*3)` | `b##c` |
| `%F(2*4)` | `b##c###d` |
| `%F(4*)` | `d##e#f` |

### Separator replacement

If you want to format using field ranges, but want to override the separator used to be a constant-length string, use `%F(<start range>*<end range>,<separator>)`.
Using the previous input as an example, `%F(*4,_)` formats to  `a_b_c_d`.

### `replace-fields`

Changing only the matched fields is possible using pattern's `replace-fields` property.
Any fields not explicitly set will be left alone.

It can be a list of format strings, where the format string at index `i` is applied to field number `i + 1`.

```
...

'replace_fields': ["%Cg%Fc%Cz", "%Cr%Fc%Cz", "%Cg%Fc%Cz"],

...
```

It can also be an object with the keys as field numbers and the value as the format value.
Keys may be comma-separated numbers, or even ranges (`"<start>*<end>"`).

```
...

'replace_fields': {
	"1,3": "%Cg%Fc%Cz",
	"2": "%Cr%Fc%Cz"
},

...
```

## Groups

Regex groups can be referenced with the format: `%G<group number or name>`.
`%G0` is the entire matching text from `expression`. `%G1` is the first matching group, `%G2` is the second, etc. If the regex group is named, it can also be referenced (e.g. `%G(myregexgroup)`).

### Group Incrementer

Instead of using groups explicitly in order (e.g. `%G1, %G2: %G3`), using the special incrementer instead of numbers, `%Gn, %Gn: %Gn`, will result in the same format output.

Note that if a named group `n` is defined in the expression, then the special incrementer will be overridden.

### `replace-groups`

Changing only the matched regex groups is possible using pattern's `replace-groups` property.
Any groups not explicitly set will be left alone.

It can be a list of format strings, where the format string at index `i` is applied to group number `i + 1`.

```
...

'replace_groups': ["%Cg%Gc%Cz", "%Cr%Gc%Cz", "%Cg%Gc%Cz"],

...
```


It can also be an object with the keys as group numbers and the value as the format value.
Keys may be comma-separated numbers, or even ranges (`"<start>*<end>"`).

```
...

'replace_groups': {
	"1,3": "%Cg%Gc%Cz",
	"2": "%Cr%Gc%Cz"
},

...
```

## Context-Aware Color Allias Format

You may find yourself coloring groups or fields often using `%Cg%Gc%Cz` or `%Cg%Fc%Cz`, which is why a context-aware color alias format was added: `%H(<color value>)` is an alias for `%C(<color value>)%Gc%Cz`.

Now `%Cg%Gc%Cz` can be replaced with the shorter alias `%Hg`.
If `%H` is used in `replace_groups`, it will be an alias for coloring `%Gc`, and if `%H` is used in `replace_fields`, it will be an alias for coloring `%Fc`.

## Padding

Formatting a string with padding can be done with `%P(<pad count>;<value>)` or `%P(<pad count>,<pad char>;<value>)`.

For example, left-padding group 1 to 12 characters can be done with the format string `%P(12;%G1)%G1`.
The pad formatter will take the length of `value`, which can contain string formats or a normal string, and will format to the necessary number of pad characters if `value` is not long enough.

Right-padding is simply done by moving the pad formatter to the right of the group: `%G1%P(12;%G1)`.

## Truncate

Truncate strings to a certain length using `%T(<string>;<replace>;<location>,<length>)`, where:

| Value | Description |
|---|---|
| `string` | the string to be truncated |
| `replace` | insert this string at the truncation (e.g `...`) |
| `location` | where to truncate `string`, see below for more |
| `length` | truncate `string` to this length |

`replace` can also be empty: `%T(<string>;;<location>,<length>)`.

Possible `location` values:

| Location | Description |
|---|---|
| start | truncate the *start* of the string, replacement string length **is** counted as part of `length` |
| start-add | truncate the *start* of the string, replacement string length **is not** counted as part of `length` |
| mid | truncate the *middle* of the string, replacement string length **is** counted as part of `length` |
| mid-add | truncate the *middle* of the string, replacement string length **is not** counted as part of `length` |
| end | truncate the *end* of the string, replacement string length **is** counted as part of `length` |
| end-add | truncate the *end* of the string, replacement string length **is not** counted as part of `length` |

### Truncate Samples

Truncate the value of group 1 to 8 chars, adding `...` if necessary: `%T(%G1;...;end-add,8)`.

| String | Result |
|---|---|
| `Testing` | `Testing` |
| `LongString` | `LongStri...` |

Truncate the value of a path in field 1 to 16 chars, inserting `...` if necessary: `%T(%F1;...;mid,16)`.

| String | Result |
|---|---|
| `/root/` | `/root/` |
| `/path/to/a/certain/file` | `/path/...in/file` |

Truncate above with right padding (all results will always have a length of 16): `%T(%F1;...;mid,16)%P(16,%F1)`.

# Debugging and Creating Profiles

## Debug Colors

To check the supported color codes of your terminal, run `pycolor --debug-color` to print all the labelled ANSI color codes.
Using `--debug-color` will show the results of the text styles, 16-color output, 8-bit color support, and 24-bit color support.

Output of `pycolor --debug-color` run on Windows PowerShell (24-bit colors are not shown in this image for brevity):

![--debug-color output](https://raw.githubusercontent.com/WiLGYSeF/pycolor/master/docs/images/debug-color.png)

*Note: bold off (`\e[21m`) is actually bold underline in PowerShell*

## Creating Profiles

To create profiles quickly and efficiently, pycolor has a debug mode when running commands that shows the raw output of the command.
Debug mode is turned on using `-v` or `--verbose` and can be used multiple times to increase the debug level.

Debug levels (previous levels are applied to the current):

| Level | Command | Description |
|---|---|---|
| 1 | `-v`    | Print received output |
| 2 | `-vv`   | Print final output written |
| 3 | `-vvv`  | Print each matching pattern index and its output |
| 4 | `-vvvv` | Print the output line number |

Using debug level 3 on `free -h` with a profile loaded:

![--debug-color output](https://raw.githubusercontent.com/WiLGYSeF/pycolor/master/docs/images/debug-3-free.png)

# Limitations

- Programs that expect interactive standard input may not work properly.
- Interactive programs that rewrite parts of the screen may cause unexpected behavior.


