A Python library for creating Terminal User Interfaces using curses
Reason this release was yanked:
outdated
Project description
number selector
from tuilib import tui
def main(stdscr):
num:int = tui.number_selector(stdscr,0,0,10) #starts at 0, minimum 0, maximum 10
tui.func_exit(stdscr)
print(num)
tui.main(main)
list selector
from tuilib import tui
def main(stdscr):
options = ["banana","fruit","cherry","apple"]
choice = tui.list_selector(stdscr,options)
tui.func_exit(stdscr)
print("you chose",choice)
tui.main(main)
real time input
dosn't work, too lazy to fix
stdscr functions
same as the curses library
to install:
pip install tuilib
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
tuilib-1.1.5.0.tar.gz
(2.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tuilib-1.1.5.0.tar.gz.
File metadata
- Download URL: tuilib-1.1.5.0.tar.gz
- Upload date:
- Size: 2.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d01dad1a79a10e12a12c83251bd818eb335c68dbfc9eaf5ba9f39ae8bdc88ba2
|
|
| MD5 |
a1465b3998a20567e6d11c22f8b0aeee
|
|
| BLAKE2b-256 |
f49476166fc6f2d20552171f52e45ff3117548f0e1b8df6ec96d98e0353d2940
|
File details
Details for the file tuilib-1.1.5.0-py3-none-any.whl.
File metadata
- Download URL: tuilib-1.1.5.0-py3-none-any.whl
- Upload date:
- Size: 2.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3cc1deeca0e35f0d68fc2a3bd7043f18435c7730d37ca68161a7c087194c32e7
|
|
| MD5 |
dc7ead9826fc113f810ca2891ef4966c
|
|
| BLAKE2b-256 |
513aeb6897d1aa854140a25a472d1ccc53d3b84375db381faabff864079a3b46
|