Skip to main content

Bash colors management and log system

Project description

Bash colors management and log system for python users

Bashutils provide you two functionnalities:

  • Create bash colored text

  • Log message system (like lsb init-functions log message)

Imports :

from bashutils import colors
from bashutils import logmsg

bash colors

Imports :

from bashutils import colors

Color function : color_text(text, color="none", bcolor="none", effect="none")

  • color : text color

  • bcolor : background color

  • effect : font effect

Text and background colors list : none, black ,red ,green ,yellow ,blue ,magenta ,cyan ,white

default color is ‘none’ (terminal default color)

Text effects : none, bold, underscore, blink, reverse, concealed

default effect is ‘none’

bash logmsg

Imports :

from bashutils import logmsg

Functions

Basic functions

Start a new log message :

log_begin_message("My message")

End a log message :

log_end_message(logmsg.LOG.OK)

Existing log type : LOG.OK (0), LOG.FAIL (1), LOG.ERROR (2)

Predefined message (begin and end message):

log_success_msg("My message")
log_failure_msg("My message")
log_error_msg("My message")``

Other functions

If you want to add some information before or after the begin message, you can use these functions:

log_msg_pre("SUPP")
log_msg_post("SUPP")
log_end_msg_pre("SUPP", logmsg.LOG.OK)
log_end_msg_post("SUPP", logmsg.LOG.OK)

The last two functions add a PRE or POST information and end massage with LOG status

Add a LOG Type

It is possible to add a new LOG Type :

add_log_type(name, display, color, bcolor)
  • name : call name (A-Z and ‘_’)

  • display : display message in [-]

  • color : text color (see bashutils.colors)

  • bcolor : background color (see bashutils.colors)

You can use this new LOG with LOG.MYNEWLOG (name in upper case)

You have an all in one function like log_success_msg with :

log_msg_type("My message", logmsg.LOG.MYNEWLOG)

Example :

add_log_type("MYNEWLOG", "NEWL", "red", "yellow")
log_msg_type("Message with new LOG", LOG.MYNEWLOG)

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

Bashutils-0.0.3.tar.gz (4.0 kB view details)

Uploaded Source

File details

Details for the file Bashutils-0.0.3.tar.gz.

File metadata

  • Download URL: Bashutils-0.0.3.tar.gz
  • Upload date:
  • Size: 4.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for Bashutils-0.0.3.tar.gz
Algorithm Hash digest
SHA256 d9dd49c7fbe931776d8bedc14cd80df856f7869e5363b3f10c83416f257f8df3
MD5 69748b8aa4b97b0ee0aa7195a54c9fda
BLAKE2b-256 0d51d63e71c48f42b51294e8d80348d92a8bfca9d22800595a3dc717f7521762

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