Skip to main content

A Python package designed to enhance code readability and CLI experience.

Project description

ansiplus

Pepy Total Downlods PyPI - Python Version GitHub repo size PyPI - License PyPI - Version

A Python package designed to enhance code readability and CLI experience.

ansiplus-v2_1-preview

Usage

[!WARNING] Not all terminals work perfectly with ANSI codes. Ideally you should use xterm-256color.

[!NOTE] Terminal themes can change colors, e.g. magenta might show up as yellow, but it is still using the magenta ANSI code.

Prerequisites

  • Python version >=3.10
  • A terminal emulator that accepts ANSI codes
  • A terminal emulator that uses xterm-256color

[!NOTE] ANSi codes are not limited to xterm-256color, but they may still be limited to all features this package provides.

Tested Terminals on Linux

Terminal ($TERM)

  • Konsole (xterm-256color) - no missing features
  • Xterm (xterm) - no missing features
  • Alacritty (alacritty) - blinking text does not work
  • Kitty (xterm-kitty) - blinking text does not work

Colors

This package introduces the ability to print colors via name, id, rgb, and hex codes with a single function:

>>> from ansiplus import print_color
>>> print_color("my colored text", color=(100, 200, 255), bgcolor=198)
'my colored text'
>>> print_color("red text", color="red")
>>> print("hex color 'f06'", color="#f06")

Colors may also be manually printed:

>>> from ansiplus.ansi.colors import Fore
>>> print(f"{Fore.GREEN}green text{Fore.RESET}")

Rainbow & Random Colors

Text can be colored to resemble a rainbow:

>>> from ansiplus import print_color
>>> print_color("this text is rainbow colored", "rainbow")
'this text is rainbow colored'
>>> print_color("each character will be a random color", "random")
'each character will be a random color'

[!WARNING] Using rainbow or random color option uses a lot of ANSI codes.

User Input

Along with colors, users can be prompted for input which can be colored:

>>> from ansiplus import input_color
>>> txt = input_color("example: ", color="blue")
>>> print(txt)
'my input'

Prompting input can also store history if you assign it to a variable:

>>> from ansiplus import NewPrompt
>>> ui = NewPrompt()
>>> ui.set_color("red")
>>> ui.set_prompt_color("green")
>>> ui.prompt("prompt class example: ")
>>> ui.history
['my text']
>>> ui.latest
'my text'
>>> ui.prompt("prompt class example 2: ", "yellow")
>>> ui.latest
'this text is yellow, but default is red'

Rainbow & Random Colors

Prompt foreground text can also be colored rainbow:

>>> from ansiplus import input_color
>>> input_color("this text is rainbow: ", prompt_color="rainbow")

Clearing Prompt Lines

After receiving user input, the line can be cleared:

from ansiplus import input_color
while True:
    input_color("forever input: ", clearline=True)

The above code sample will ask for input forever, after every input, the line will clear and the input will be prompted again on the same line.

Text Styles

This package includes several several styles that can be used:

>>> from ansiplus import print_style
>>> print_style("underline text", "underline")
'underline text'

Like colors, styles may also be used manually:

>>> from ansiplus.ansi.styles import BOLD, BOLD_RESET
>>> print(f"{BOLD}bold text{BOLD_RESET}")
'bold text'
>>>

More Functions

There are more ANSI codes featured beyond colors and styles, these could be viewed by using help(ansiplus) inside the python interpreter.

Developers

When building the package for testing, it is recommended to use python3 -m build.

Wheels

When building the package for testing, it is recommended to use python3 -m build.

PIP Virtual Environments

Virtual environments should be named ".venv" or ".env", as this is used in the ".gitignore" file.

Contributing

Contributions must not include:

  • breaking code
  • major changes
  • changes to the version number
  • wheel files or egg-info files
  • spaghetti code

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

ansiplus-3.1.tar.gz (12.1 kB view details)

Uploaded Source

Built Distribution

ansiplus-3.1-py3-none-any.whl (13.9 kB view details)

Uploaded Python 3

File details

Details for the file ansiplus-3.1.tar.gz.

File metadata

  • Download URL: ansiplus-3.1.tar.gz
  • Upload date:
  • Size: 12.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.4

File hashes

Hashes for ansiplus-3.1.tar.gz
Algorithm Hash digest
SHA256 1810a9c57f1bd05575ab51691cadf7e77d04386a427975254f192731150b4262
MD5 37816249b7201f5df4e34c2cc6b4edee
BLAKE2b-256 3f261785fe065b58c7e6349044a02228ad8cf718d318415713df68738703db84

See more details on using hashes here.

File details

Details for the file ansiplus-3.1-py3-none-any.whl.

File metadata

  • Download URL: ansiplus-3.1-py3-none-any.whl
  • Upload date:
  • Size: 13.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.4

File hashes

Hashes for ansiplus-3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 33af5af41a2a18c16376a817afc257725ab25d802015536af35e7cf117378b60
MD5 96813cf20564ef8d13d5c811b50cdb2f
BLAKE2b-256 9de729dc5d708d1c0edbaa802b3f3a4a9d2c53474cd26b33bafe0e80be9cb51e

See more details on using hashes here.

Supported by

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