Project: ansicon

Python wrapper for loading Jason Hood's ANSICON

Project Details

Latest version
1.89.0
Home Page
https://github.com/Rockhopper-Technologies/ansicon
PyPI Page
https://pypi.org/project/ansicon/

Project Popularity

PageRank
0.0027089703323547464
Number of downloads
97848

.. start-badges

| |appveyor| |codecov| | |pypi| |supported-versions| |supported-implementations|

.. |appveyor| image:: https://img.shields.io/appveyor/ci/Rockhopper-Technologies/ansicon.svg?style=plastic :target: https://ci.appveyor.com/project/Rockhopper-Technologies/ansicon :alt: Appveyor Build Status .. |codecov| image:: https://img.shields.io/coveralls/github/Rockhopper-Technologies/ansicon.svg?style=plastic :target: https://coveralls.io/github/Rockhopper-Technologies/ansicon :alt: Coverage Status .. |pypi| image:: https://img.shields.io/pypi/v/ansicon.svg?style=plastic :alt: PyPI Package latest release :target: https://pypi.python.org/pypi/ansicon .. |supported-versions| image:: https://img.shields.io/pypi/pyversions/ansicon.svg?style=plastic :alt: Supported versions :target: https://pypi.python.org/pypi/ansicon .. |supported-implementations| image:: https://img.shields.io/pypi/implementation/ansicon.svg?style=plastic :alt: Supported implementations :target: https://pypi.python.org/pypi/ansicon

.. end-badges

Overview

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

Installation

.. code-block:: console

$ pip install ansicon

Usage

.. code-block:: python

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()

.. _Jason Hood: https://github.com/adoxa .. _ANSICON: https://github.com/adoxa/ansicon