pick
pick copied to clipboard
create curses based interactive selection list in the terminal
Bumps [mypy](https://github.com/python/mypy) from 0.971 to 0.982. Commits 1c2b899 Bump version to 0.982 51d9858 Restore Type vs Callable special-casing that was broken in refactoring (#13784) d03f201 Suggest using upper bound for...
This is how im running the command: `option, index = pick(options, title='Batch Processing Helper & Wizards', indicator='=>', multiselect=False) ` However I get the error in the title (`ValueError: not enough...
 The command is 'pyinstaller -c -F -p C:\Users\Administrator\PycharmProjects\cfgC\venv\Lib\site-packages -i favicon.ico main.py ' python v3.11
I can't tell from the README whether it's possible to have a few options selected as the dialog is presented to the user at first. For example, there may be...
[REQUEST] Would you be so kind and enable the the NUMPAD_ENTER key to finish the selection just like ENTER? Thanks alot! Great little module!
Updated to latest Python3.12 and my pick crashed, no output, just crashes
So I have a basic `curses` console app and I have embedded `pick` into it using the `screen` argument. I use `pick` to make choosing an option easier for parts...
I copied the instance code but don't know why the error is reported python3.xx pick2.20 `from pick import pick title = 'Please choose your favorite programming language: ' options =...
pick works within VS Code on Windows for me if I change the KEYS_UP and KEYS_DOWN to ``` VS_CODE_KEY_UP = 456 VS_CODE_KEY_DOWN = 450 KEYS_UP = (curses.KEY_UP, ord("k"), VS_CODE_KEY_DOWN) KEYS_DOWN...