ansicon

Python wrapper for loading Jason Hood's ANSICON


Keywords
ansicon, terminal, console
License
MPL-2.0
Install
pip install ansicon==1.89.0

Documentation

Appveyor Build Status Coverage Status
PyPI Package latest release Supported versions Supported implementations

Overview

ansicon is a Python wrapper for loading Jason Hood's ANSICON

Installation

$ pip install ansicon

Usage

import ansicon

# Load ansicon
ansicon.load()

# Have fun with terminal codes
print(u'\x1b[32mGreen\x1b[m')

# Unload ansicon
ansicon.unload()

# Check if ansicon is loaded
if not ansicon.loaded():
    ansicon.load()
if ansicon.loaded():
    ansicon.unload()