Metadata-Version: 1.1
Name: intercessions
Version: 1.1.0
Summary: A blessings polyfill for the windows command line
Home-page: https://github.com/Eeems/intercessions
Author: Nathaniel van Diepen
Author-email: eeems13@gmail.com
License: MIT
Description: Intercessions
        =============
        
        A blessings polyfill for the windows command line
        
        Attempts to implement the full
        `blessings <https://pypi.python.org/pypi/blessings/>`__ API in a format
        that will work on windows. Makes use of
        `colorama <https://pypi.python.org/pypi/colorama>`__ to help with
        styling.
        
        Installation
        ============
        
        ``pip install intercessions``
        
        Usage
        =====
        
        .. code:: python
        
            from intercessions import Terminal
        
            t = Terminal()
            with t.location(0,0), t.hidden_cursor():
                print(t.bold_red('Hello World!') + t.clear_eol)
                raw_input('Press Enter' + t.clear_eol)
        
        Known Issues
        ============
        
        1. Terminal.fullscreen will work, but will crash CMD/Powershell after
           exit. See
           `tartley/colorama#139 <https://github.com/tartley/colorama/pull/139#issuecomment-340211264>`__
        2. The following will not work as they have no command codes entered
        
        -  standout
        -  no\_standout
        -  subscript
        -  no\_subscript
        -  superscript
        -  no\_superscript
        
Keywords: terminal tty curses ncurses formatting style color console blessings blessed
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Console
Classifier: Environment :: Console :: Curses
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: User Interfaces
Classifier: Topic :: Terminals
