Simplified curses
Project description
Simplified curses interface, for quick and sane curses apps.
Installation
With pip, for the latest stable:
$ pip install cursed
Or from the project root directory:
$ python setup.py install
Usage
Example:
from cursed import CursedApp app = CursedApp() class MainWindow(CursedWindow): WIDTH=80 BORDERED = True @classmethod def update(cls): ''' update runs every tick ''' # Hello world printed at x,y of 0,0 cls.addstr('Hello, world!', 0, 0) # Redraw the screen. cls.redraw() if cls.getch() == 27: # Escape was pressed. Quit. cls.trigger('quit') result = app.run() if result.interrupted(): # check if ctrl-C was pressed print('Quit!') else: # Raises an exception if any thread ran into a different exception. result.unwrap()
Release Notes
- 0.0.2:
- implemented lots from the following:
- 0.0.1:
Project created
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cursed-0.1.0.tar.gz
(8.9 kB
view hashes)