Skip to main content

Yet another ANSI escape sequence library for Python - now modernised!

Project description

escapyde

Yet another ANSI escape sequence library for Python - now modernised!

Installation

The package is readily available on PyPI. There are no dependencies, but Python 3.9 or newer is required.

On Windows:

py -m pip install escapyde

On other platforms:

pip3 install escapyde

Changelog

You can find the project changelog here.

Usage

For basic usage, pre-made colours are available for your convenience. Use them with the pipe operator on strings you want to colour. They end the colour changes automatically, too!

import escapyde
from escapyde.examples.text import SKULL

some_text = "Hello, world!"

print(f"I want to print this red: {escapyde.FRED | some_text}, and this yellow: {escapyde.FYELLOW | 'Hi!'}.")

print(f"Here's a cyan skull:\n{escapyde.FCYAN | SKULL}")

You can also colour backgrounds,

import escapyde

some_more_text = "This should have a blue background."

print(f"{escapyde.BBLUE | some_more_text}")

combine formatting options,

import escapyde

even_more_text = "Lorem Ipsum dolor sit amet."

print(f"{escapyde.FRED | escapyde.BWHITE | even_more_text}")

and even mix formatting options on the fly (although at present you need to separate strings with parentheses):

import escapyde

print(f"{(escapyde.FRED | 'Hello') | (escapyde.FBLUE | 'World')}")

It is possible to use custom foreground and background colours via the escapyde.AnsiEscape class; these can be either valid ANSI literals or RGB values:

from escapyde.ansi import AnsiEscape
from escapyde.colours import sequence_table

fg_white = sequence_table['fg_white']  # You can alternatively use raw integers, eg. 37 for white

gold = AnsiEscape(foreground_colour=(0xDB, 0xAC, 0x34))
white_gold = AnsiEscape(foreground_colour=fg_white, background_colour=(219, 172, 34))

print(gold | "This is gold!")
print(white_gold | "This is white text on gold background!")

The class defaults to the default colours of the terminal, so you don't need to set both values.

Finally, if you have a string with multiple substrings you wish to recolour, there's a function for that:

from escapyde.ansi import AnsiEscape, escape_format

mapping = {
    'match': AnsiEscape(foreground_colour=(255, 0, 0)),
    'case': AnsiEscape(foreground_colour=(255, 255, 0)),
    'print': AnsiEscape(foreground_colour=(0, 255, 0)),
}

text = """
stuff = [3, 1, 4]

match stuff:
    case [3, *rest]:
        print("It's pi-like")
    case _:
        print("Not like pi")
"""

print(escape_format(string=text, escape_map=mapping, case_sensitive=True))

Screenshots

A screenshot of the example run on IPython on Windows. A screenshot of the newer examples run on IPython on Windows. A screenshot of the newer examples run on IPython on Windows.

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

escapyde-1.0.2.tar.gz (11.2 kB view details)

Uploaded Source

Built Distribution

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

escapyde-1.0.2-py3-none-any.whl (11.4 kB view details)

Uploaded Python 3

File details

Details for the file escapyde-1.0.2.tar.gz.

File metadata

  • Download URL: escapyde-1.0.2.tar.gz
  • Upload date:
  • Size: 11.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.12.1 Linux/6.5.0-1025-azure

File hashes

Hashes for escapyde-1.0.2.tar.gz
Algorithm Hash digest
SHA256 afe36c4a8876431773335043743d9b2d47c4eff5ed95c84c91c01149715a0067
MD5 06cd1813ed6c989cd4cc16a26dde4780
BLAKE2b-256 b23e5832cfd62fc988705943f901ed5816ce14e9894bbf34121fa10266a6a2ba

See more details on using hashes here.

File details

Details for the file escapyde-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: escapyde-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 11.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.12.1 Linux/6.5.0-1025-azure

File hashes

Hashes for escapyde-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 f46de7290571491f64d8b71d99406a03b4d53ba980682fc5e3fe38f0ceb2a3f2
MD5 cbbf01c579689680f683ea364791f803
BLAKE2b-256 3c4d9e4d81ec4f96331b2431a07af3c229d8b1b890d1f1c4599f399fb9c570bd

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