No description
Find a file
Dan Horrigan 8a7d68e66c Merged in DaveRigby/ansiconv (pull request #1)
Add support for bright (90-97) colors
2014-04-29 15:18:01 -04:00
docs Adding CSS docs 2013-08-23 15:45:07 -04:00
test Add support for bright (90-97) colors 2014-02-17 16:35:24 +00:00
.gitattributes Initial Commit 2013-08-23 11:33:57 -04:00
.gitignore Initial Commit 2013-08-23 11:33:57 -04:00
.gitmodules Adding docs and gixing some docstrings 2013-08-23 15:21:15 -04:00
ansiconv.py Add support for bright (90-97) colors 2014-02-17 16:35:24 +00:00
LICENSE Initial Commit 2013-08-23 11:33:57 -04:00
README.md Adding docs link 2013-08-23 15:46:49 -04:00
setup.py Adding classifier 2013-08-23 15:23:17 -04:00

ANSIConv

Version: 1.0.0

A Python module for converting ANSI coded text and converts it to either plain text or HTML.

Documentation: http://pythonhosted.org/ansiconv/

Test Coverage: 100%

Installing

From PyPI

$ pip install ansiconv

From Git

$ git clone https://bitbucket.org/dhrrgn/ansiconv.git
$ cd ansiconv
$ python setup.py install

Testing

You can run the unit tests by running the following command:

$ python setup.py test

Coverage Report

The coverage report requires pytest-cov (pip install pytest-cov).

In the ansicov directory run the following command:

$ py.test --cov=ansiconv.py --cov-report=term

The tests are written using pytest.