Metadata-Version: 2.1
Name: nr.ansiterm
Version: 0.0.2
Summary: Package description here.
Home-page: https://git.niklasrosenstein.com/NiklasRosenstein/nr
Author: Niklas Rosenstein
Author-email: rosensteinniklas@gmail.com
License: MIT
Description: 
        > Note: This package is in the dangerous land of `0.x.y` versions and may be subject to breaking
        > changes with minor version increments.
        
        # nr.ansiterm
        
          [W]: https://en.wikipedia.org/wiki/ANSI_escape_code
        
        Module for producing ANSI escape codes and stylizing text in terminals. Supports SGR, LUT and
        True colors as well as all ANSI attributes per [Wikipedia: ANSI escape code][W].
        
        Example:
        
        ```py
        from nr.ansiterm import styled, parse_style, Attribute
        print('Hello', styled(name, 'bright_blue', attrs=['bold', 'underline']))
        print(str(parse_style('%014 italic')) + "What's kickin'?" + str(Attribute.RESET))
        ```
        
        ---
        
        <p align="center">Copyright &copy; 2020 Niklas Rosenstein</p>
        
Platform: UNKNOWN
Requires-Python: >=3.5.0,<4.0.0
Description-Content-Type: text/markdown
