Skip to content

A Python Terminal User Interface based on urwid with asynchronous input/output that can be easily expanded to your application

License

Notifications You must be signed in to change notification settings

jmount1992/TerminalUI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TerminalUI

A Python Package that allows for the easily development of Terminal User Interfaces that require asynchronous read/write. Features include:

  • TerminalUI class which handles user keypresses, simply pass it your command entered function
  • Asynchronous read/write capabilities
  • Configurable options panel for configuring your application at runtime
  • Options can either be a list of selectable values or an editable value
  • Several other features

The package is built upon urwid. This means, unfortunately, based on how the TerminalUI class is currently implemented it will not work with on Windows. It will however, work with the Windows Linux Subsystem (WSL). Here is a guide on how to enable WSL on Windows 10.

TerminalUI Image

Installation

To install via pip

pip3 install terminalui

To install from source (with symlink so updates to source are immediately reflected in packages that utilise TerminalUI)

git clone https://github.com/jmount1992/TerminalUI.git
python3 -m pip install --user --upgrade setuptools wheel
python3 setup.py sdist bdist_wheel 
pip3 install -e . 

Documentation

Additional documentation will be coming in the future. For now check out the examples and the docstrings in the TerminalUI class.

About

A Python Terminal User Interface based on urwid with asynchronous input/output that can be easily expanded to your application

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages