1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
[](https://github.com/pycontribs/ansi2html/actions?query=workflow%3Atox+branch%3Amain)
# ansi2html
Convert text with ANSI color codes to HTML or to LaTeX.
Inspired by and developed off of the work of
[pixelbeat](https://www.pixelbeat.org/docs/terminal_colours/) and
[blackjack](https://web.archive.org/web/20100911103911/http://www.koders.com/python/fid5D57DD37184B558819D0EE22FCFD67F53078B2A3.aspx).
[Read the docs](https://ansi2html.readthedocs.io/) for more
informations.
## Example - Python API
```python
from ansi2html import Ansi2HTMLConverter
conv = Ansi2HTMLConverter()
ansi = "".join(sys.stdin.readlines())
html = conv.convert(ansi)
```
## Example - Shell Usage
```shell
$ ls --color=always | ansi2html > directories.html
$ sudo tail /var/log/messages | ccze -A | ansi2html > logs.html
$ task rc._forcecolor:yes limit:0 burndown | ansi2html > burndown.html
```
See the list of full options with:
```shell
$ ansi2html --help
```
## Get this project:
```shell
$ pip3 install ansi2html
```
Source: <https://github.com/pycontribs/ansi2html/>
pypi: <https://pypi.org/project/ansi2html/>
## License
`ansi2html` is licensed LGPLv3+.
# Credits
- Author: [Ralph Bean](mailto:rbean@redhat.com)
- Contributor: [Robin Schneider](mailto:ypid23@aol.de)
|