k3color
Create colored text on terminal.
k3color is a component of pykit3 project: a python3 toolkit set.
Installation
pip install k3color
Quick Start
from k3color import blue, red, green
# Output text in blue
print(blue('I am blue'))
# Output text in red
print(red('Warning!'))
# Output text in green
print(green('Success!'))
API Reference
k3color
k3color creates colored text on terminal.
Str
Bases: object
Str is a string like object in terminal on Unix.
Str provides with basic string operations and methods such as
len(s): length.
s + t: concat two strings.
s * 10: repeat a string.
s == t: equal.
splitliens().
split().
join().
Args:
plain_str:
the string to colourize.
color:
the color of **plain_str**.
It can also be a named color such as:
`blue` `cyan` `green` `purple` `red` `white` `yellow`
`optimal` `normal` `loaded` `warn` `danger`.
A int value colour must be in range of `[0-256]`.
Source code in k3color/color.py
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | |
fading_color(v, total)
Returns a color visually represents a precentage from v to total
It returns blue for small v, then green, yellow and red if v is close to total.
Args:
v:
a value between 0 and `total`.
total:
upper boundary.
Returns:
| Name | Type | Description |
|---|---|---|
int |
a value used in terminal. |
Source code in k3color/color.py
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 | |
percentage(percentage, total=100, ptn='{0}')
Build a Str instance from pattern ptn and colorize it with color blue,
green, yellow or red for value of precentage from 0 to total.
E.g., following snippet builds a blue text "it is 20":
percentage(20, total=80, ptn='it is {0}')
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
percentage
|
value to render. |
required | |
total
|
upper bound of percentage. By default it is 100. |
100
|
|
ptn
|
a pattern to create the text. By default it is |
'{0}'
|
Returns:
| Name | Type | Description |
|---|---|---|
Str |
colored text. |
Source code in k3color/color.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | |
License
The MIT License (MIT) - Copyright (c) 2015 Zhang Yanpo (张炎泼)