Skip to main content

Terminal Bootstrap - A Python css file for unicode text formatting in python console output

Project description

termstrap

a css file (Bootstrap like) for unicode text formatting in python console output :)

USAGE

Install it using pip: pip install termstrap

Import in your code: import css or from css import Bootstrap, printc.

Create an object: text = Bootstrap()

Use as: text.colorize(<string>, <color>) or text.stylize(<string>, < b / i / u >) or text.start_block(<color>, <formatter>)

Accessible functions/methods

Simple ones :

  • colorize() : Takes a text, font color(optional) and bgcolor(optional).
  • stylize() : Takes a text, style name (bold, italics, underline and blink). Passing only initials work (e.g. 'b' for bold). You can pass multiple styles simultaneously.

INFO : blink is experimental, if it doesn't work, it does not break anything! Therefore no shorthand for it!

Lil advanced ones:

  • get_color() : Takes name of a font color and returns its color code
  • get_bgcolor() : Takes name of a background color and returns its color code
  • new_color(): Takes a color name and color code. Can be used to add a new custom font color entry
  • new_bgcolor(): Takes a color name and color code. Can be used to add a new custom background color entry

WARNING : Only use new_color() or new_bgcolor() if you know what you are doing!

Accessible Variables

All colors can be accessed by the class instance. Overwriting them will/may break functionality.

  • Color variables: Bootstrap names - primary, danger, warning, etc.
  • Background color variables: bg_primary, bg_danger, bg_warning, etc.
  • Style variables: bold, italics, underline, selected, blink

More Utility Functions

THESE ARE NOT MEMBERS OF BOOTSTRAP CLASS. NO NEED FOR INSTANCE CREATION. just import and use.

  • printc: Like standard print(). Except: Does not have flush and file params. Have color param, takes name of the color. style param, takes a list or tuple of all styles. bgcolor param, takes name of the bgcolor!
  • hide_cursor: Hides cursor in the console
  • show_cursor: Restores cursor visibility.

Example

    from css import  Bootstrap, printc # make sure you have downloaded the css.py file in the same folder/directory
    text = Bootstrap()

    # Using colorize to color
    print(text.colorize("THIS IS RED", "red")) # You can also use Bootstrap classes, eg. danger
    print(text.colorize("THIS IS blue", "primary")) # blue will also work.

    # Using stylize to format text- bold(b), italics(i), underline(u), selected(s), blink
    print(text.stylize("A BOLD move", "bold")) # b also works in place of bold
    print(text.stylize("Slightly slanted", "i"))
    print(text.stylize("More the merrier", 'b', 'u', 's', 'i'))

    # You can also combine colors and formats:
    print(text.stylize(text.colorize("This is bold in red"), 'b'))

    # Change color for multiple lines if needed!
    text.start_block('red', bold=True)
    # Any text in this clock will be printed in RED, and BOLD by default
    text.end_block()

    # Using the printc
    printc("RED text in *BOLD*", color='red', style=('b'))
    printc("[1,2,3,4]", color='warning', style=('b', 'u'), sep='***') # yellow text, styled bold and underlined, seperated by - ***
    printc("a", "b", "cdf", color="primary", end='') # print multiple strings and specify end param as none, ie. no newline at end!

IMPORTANT: Info is not the same color as bootstrap info, its violet!

KNOWN ISSUES

  1. Style - blink DOES NOT work in most cases.
  2. Windows cmd only supports color in windows 10 (v1511 onwards)!

INSPIRATION

This stackoverflow was the inspiration for this project.

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

termstrap-1.2.4.tar.gz (4.2 kB view details)

Uploaded Source

Built Distribution

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

termstrap-1.2.4-py3-none-any.whl (5.2 kB view details)

Uploaded Python 3

File details

Details for the file termstrap-1.2.4.tar.gz.

File metadata

  • Download URL: termstrap-1.2.4.tar.gz
  • Upload date:
  • Size: 4.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/42.0.0 requests-toolbelt/0.9.1 tqdm/4.39.0 CPython/3.7.5

File hashes

Hashes for termstrap-1.2.4.tar.gz
Algorithm Hash digest
SHA256 b0a431192a12453d85ef05706fd2e14f3f20930ca8e5d178f4274cce2e0f2c36
MD5 f8438e24db632603a3e7a08ce51ff177
BLAKE2b-256 13d3c36d3c89ca88b2ccd71579da63f35951814ccd836cfb00e8fb4473b409d0

See more details on using hashes here.

File details

Details for the file termstrap-1.2.4-py3-none-any.whl.

File metadata

  • Download URL: termstrap-1.2.4-py3-none-any.whl
  • Upload date:
  • Size: 5.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/42.0.0 requests-toolbelt/0.9.1 tqdm/4.39.0 CPython/3.7.5

File hashes

Hashes for termstrap-1.2.4-py3-none-any.whl
Algorithm Hash digest
SHA256 9d1a8a36f6cd285507830df242ed84bbec70b89fcaf5dd83639da77c843b52fd
MD5 c51303aa3a333538180f8027e3b02ae3
BLAKE2b-256 1f6e2c067c4f20d437d23a671a8646a1b5a99c47e512aa3d4542f8a8890d71bf

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