Python wrapper for loading Jason Hood's ANSICON
.. 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
ansicon is a Python wrapper for loading Jason Hood
's ANSICON
.. code-block:: console
$ pip install ansicon
.. 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