Metadata-Version: 1.0
Name: ansi2html
Version: 0.7.0
Summary: Convert text with ANSI color codes to HTML
Home-page: http://github.com/ralphbean/ansi2html/
Author: Ralph Bean
Author-email: ralph.bean@gmail.com
License: GPL
Description: 
        
        Convert text with ANSI color codes to HTML
        
        .. _pixelbeat: http://www.pixelbeat.org/docs/terminal_colours/
        .. _blackjack: http://www.koders.com/python/fid5D57DD37184B558819D0EE22FCFD67F53078B2A3.aspx
        
        Inspired by and developed off of the work of `pixelbeat`_ and `blackjack`_.
        
        Example - Python API
        --------------------
        
        >>> from ansi2html import Ansi2HTMLConverter
        >>> conv = Ansi2HTMLConverter()
        >>> ansi = " ".join(sys.stdin.readlines())
        >>> html = conv.convert(ansi)
        
        Example - Shell Usage
        ---------------------
        
        ::
        
         $ ls --color=always | ansi2html > directories.html
         $ sudo tail /var/log/messages | ccze -A | ansi2html > logs.html
         $ task burndown | ansi2html > burndown.html
        
        Get this project:
        -----------------
        Source:  http://github.com/ralphbean/ansi2html/
        
        pypi:    http://pypi.python.org/pypi/ansi2html/
Platform: UNKNOWN
