Skip to content
This repository has been archived by the owner on Mar 25, 2020. It is now read-only.
/ colourz Public archive

Colourz adds coloured text output and spinners to a Windows shell (Powershell / CMD)

License

Notifications You must be signed in to change notification settings

alexmacniven/colourz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

colourz

Colourz adds coloured text output and spinners to a Windows shell (Powershell / CMD)

Installation

$ pipenv install colourz

Usage

import colourz

# Print in bold text
print(colourz.bold("Bold text"))

# Print text in red
print(colourz.normal("Red text", "RED"))

# Print text in bold red
print(colourz.bold("Bold red text", "RED"))

# Use Bullets when waiting on a long task
import time

def main():
    s = colourz.Bullets()
    print("Doing long task...")
    s.start()
    long_task()
    s.stop()
    print("Success!")

# CAUTION: As Bullets is threaded, we need to watch out for exceptions
def long_task():
    raise LongTaskError

def main():
    s = colourz.Bullets()
    print("Doing long task...")
    s.start()
    try:
        long_task()
        msg = "Success!"
    except LongTaskError:
        msg = "Fail!"
    finally:
        s.stop()
        print(msg)

About

Colourz adds coloured text output and spinners to a Windows shell (Powershell / CMD)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages