Skip to content

Latest commit

 

History

History
72 lines (49 loc) · 2.19 KB

README.rst

File metadata and controls

72 lines (49 loc) · 2.19 KB
GitHub Actions 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()