Metadata-Version: 2.0
Name: intercessions
Version: 1.1.5
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-Content-Type: UNKNOWN
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
Requires-Dist: colorama
Provides-Extra: dev
Requires-Dist: pypandoc; extra == 'dev'
Requires-Dist: pipreqs; extra == 'dev'

|Known Vulnerabilities|\ |Requirements Status| # 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

.. |Known Vulnerabilities| image:: https://snyk.io/test/github/eeems/intercessions/badge.svg
   :target: https://snyk.io/test/github/eeems/intercessions
.. |Requirements Status| image:: https://requires.io/github/Eeems/intercessions/requirements.svg?branch=master
   :target: https://requires.io/github/Eeems/intercessions/requirements/?branch=master


