Skip to main content

Make colorful strings.

Project description

colorfulstring

colorfulstring is a lightweight Python utility for building ANSI-colored terminal strings with a fluent, chainable API.

Installation

pip install colorfulstring

Quick Start

from colorfulstring import c

print(c.r << "Error:" << " something went wrong")
print(c.g("OK"))

Usage

1) Color Shortcuts

Available shortcut color properties are d/r/g/y/b/p/c/w (dark/red/green/yellow/blue/purple/cyan/white).

You can chain them for background presets, e.g. c.b.g means blue foreground + green background.

Chaining is limited to two colors; c.b.g.g is not allowed.

print(c.y << "Warning")
print(c.b.g << "Blue on green via chaining")

2) Pipe-Style Chaining

Use << (or @) to append fragments in sequence:

print(c.b << "[INFO]" << " service started")

3) Conditional Output

  • iftrue(condition): include the next fragment only when condition is True.
  • ifnot(condition): include the next fragment only when condition is False.
  • ifelse(condition): choose between the next two fragments.
ok = True
line = c << "status: " << c.ifelse(ok) << c.g("success") << c.r("failed")
print(line)

4) Immediate Printing

c.print outputs each generated fragment immediately (without an automatic newline). It can be combined with c.endl.

line = c.print << "hello" << c.endl

5) Underline

Use .underline to add underline style:

print(c.underline << "plain underline")
print(c.underline.g << "green underline")
print(c.underline.g.b << "green on blue underline")

6) Faint Foreground

Use .faint to switch the foreground to a faint ANSI variant. It must follow the foreground color token.

print(c.r.faint << "faint red")
print(c.g.faint.b << "faint green on blue")

Note:

  • c.faint is no different from c, if you need a faint dark color, try c.d.faint.

7) Inline Token Grammar

Besides fluent chaining, colorfulstring can also parse inline token fragments from plain strings:

print(c("$R:error$"))
print(c("$G-.B:faint green on blue$"))
print(c("$_Y:underlined yellow$"))

Grammar (inside $...$):

  • TOKEN:text
  • TOKEN:
    • FG (foreground), e.g. R, G, B
    • FG- (faint foreground)
    • FG.BG (foreground + background)
    • FG-.BG (faint foreground + background)
    • optional underline prefix: _{TOKEN}

Escaping:

  • Non-token fragments unwrap as plain text, e.g. $hello$ -> hello, and $$ -> $.
  • Inline token grammar is parsed only from input strings (e.g. c("$R:error$")); fluent builders like c.g do not accept $TOKEN:text$ as property syntax.

See Also

Github repository

PyPI project

License

This project falls under the BSD 3-Clause License.

History

v0.0.4

  • Removed unnecessary imports.

v0.0.3

  • Now correctly handles escaped dollar sequences like $$ in inline token parsing.
  • Improved README structure and polished API usage descriptions.

v0.0.2

  • Added inline token grammar support ($TOKEN:text$) to render ANSI styles directly from plain strings.
  • Added .underline and .faint style modifiers, including combinations with foreground/background colors.
  • Improved chaining/conditional flow documentation and examples (iftrue, ifnot, ifelse, <<, @).

v0.0.1

  • Renamed ColorfulString to ColorfulStringBuilder to avoid conflicts.

v0.0.0

  • Initial release.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

colorfulstring-0.0.4.tar.gz (9.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

colorfulstring-0.0.4-py3-none-any.whl (9.0 kB view details)

Uploaded Python 3

File details

Details for the file colorfulstring-0.0.4.tar.gz.

File metadata

  • Download URL: colorfulstring-0.0.4.tar.gz
  • Upload date:
  • Size: 9.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.7

File hashes

Hashes for colorfulstring-0.0.4.tar.gz
Algorithm Hash digest
SHA256 8a8c564620c6c7cc444d771fa0be4c282029f87ebe62ec16eeba3b08baacebe7
MD5 419f6d98be07a405d9352cb6a51a8668
BLAKE2b-256 b2006148d5c21714362311f347a5a5452d5606d379c7a8616ede6db9b4a36c3e

See more details on using hashes here.

File details

Details for the file colorfulstring-0.0.4-py3-none-any.whl.

File metadata

  • Download URL: colorfulstring-0.0.4-py3-none-any.whl
  • Upload date:
  • Size: 9.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.7

File hashes

Hashes for colorfulstring-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 36d878a40648122f2541c2d6b4f0eb4751bb023b22bd88a5b96911c38f8e910e
MD5 ed64da4864aa3db7990277be15be7e89
BLAKE2b-256 cd420e38741c27dae9eeb085d38acc23b1e3f2601400284602177c6e43615225

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page