A Python library for creating Terminal User Interfaces using curses
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","grape","cherry","apple"]
choice = tui.list_selector(stdscr,options)
tui.func_exit(stdscr)
print("you chose",choice)
tui.main(main)
real time input
ok I fixed it anyway
from tuilib import tui
def main(stdscr):
name:str = tui.real_time_input(stdscr,"what is your name?: ")
tui.func_exit(stdscr)
print("hello",name)
tui.main(main)
country selector
from tuilib import tui
def main(stdscr) -> str:
stdscr.addstr("pick a country: ")
stdscr.refresh()
stdscr.getch()
country = tui.country_selector(stdscr)
return country
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-3.0.0.0.tar.gz
(2.3 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-3.0.0.0.tar.gz.
File metadata
- Download URL: tuilib-3.0.0.0.tar.gz
- Upload date:
- Size: 2.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c96a4cbc590e456e2d5ddc7528932ce527fde46c65fbd27408e97c0647b495e
|
|
| MD5 |
e6af1270b2fefb71654d4af04a21e9e5
|
|
| BLAKE2b-256 |
7c95007c2d4701076c2ec338a9d12ca99779899ad70d926ace36aca610f58a47
|
File details
Details for the file tuilib-3.0.0.0-py3-none-any.whl.
File metadata
- Download URL: tuilib-3.0.0.0-py3-none-any.whl
- Upload date:
- Size: 2.5 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 |
e88867293b31870eb6fa599db3d78c35370cb9a246e831a38b9c8a3f4ff58874
|
|
| MD5 |
1f935fb00b444e8a6726aa7aeae0fb23
|
|
| BLAKE2b-256 |
4de7399684edb2ed94d37b8420e96606081b204f8c61ea826238fda6b6454702
|