Skip to main content

Interactive list selection and multiselect for POSIX terminals (non-curses)

Project description

python-listpicker

Interactive list selection for POSIX terminals.

pip install listpicker

Python 3.10+

Features

  • Single and multiple selection from a sequence of strings
  • Interactive substring filtering
  • Paging for long lists
  • Common navigation keybindings (vi, emacs, arrow keys, Home/End, etc)
  • Direct terminal manipulation with CSI commands (i.e. no curses)
  • Draw to main screen buffer without clearing the screen
  • Proper truncation of long lines with SGR color sequences
  • Redraw on terminal resize (SIGWINCH)
  • Help menu and multiselect confirmation prompt

Screenshots

timezones helpmenu filtering multiselect multiselect-confirmation

Examples

Basic usage

import listpicker

pizza_styles = ("Thin crust", "Stuffed crust", "Deep dish")
style = listpicker.pick("Choose pizza style:", pizza_styles)

# User can abort input, so handle the case where "pick()" returns "None"
if style is None:
    style = pizza_styles[0]

pizza_toppings = ("Pepperoni", "Sausage", "Mushroom", "Pineapple")
toppings = listpicker.pick_multiple("Choose toppings:", pizza_toppings)

Typical usage with dictionary

import dataclasses

import listpicker


@dataclasses.dataclass
class Book:
    isbn: str
    title: str
    authors: list[str]
    publication_year: int


books = [
    Book(
        "0201038013",
        "The Art of Computer Programming, Volume 1: Fundamental Algorithms",
        ["Knuth, Donald"],
        1968,
    ),
    Book(
        "0262010771",
        "Structure and Interpretation of Computer Programs",
        ["Harold Abelson", "Gerald Jay Sussman", "Julie Sussman"],
        1984,
    ),
    Book(
        "032163537X",
        "Elements of Programming",
        ["Stepanov, Alexander A.", "McJones, Paul"],
        2009,
    ),
]

options = {f"{b.title} ({b.publication_year})": b for b in books}
choice = listpicker.pick("Pick a book:", list(options.keys()))

# Pick a book:
#   (filter with f, submit with Enter, F1 for keybindings)
# > 1. The Art of Computer Programming, Volume 1: Fundamental Algorithms (1968)
#   2. Structure and Interpretation of Computer Programs (1984)
#   3. Elements of Programming (2009)

if choice:
    book = options[choice]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

listpicker-0.1.0.tar.gz (10.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

listpicker-0.1.0-py3-none-any.whl (11.9 kB view details)

Uploaded Python 3

File details

Details for the file listpicker-0.1.0.tar.gz.

File metadata

  • Download URL: listpicker-0.1.0.tar.gz
  • Upload date:
  • Size: 10.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for listpicker-0.1.0.tar.gz
Algorithm Hash digest
SHA256 27f513749d59c5e52ac0c824871381a344f6e61dcbeef184ac941abf042a916f
MD5 f2e7dc1f552d35d5f3dc3b3516906524
BLAKE2b-256 c2bff266de85ab6d164c95894473907a565043f0e1a3a48bde9d02a27f5a1a68

See more details on using hashes here.

File details

Details for the file listpicker-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: listpicker-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 11.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for listpicker-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 180c53feab20f7cc759f49ad929d9308db8a7e8fa42466b998b3ef55b1da3ccb
MD5 29a2f20e73573279c07e379d5380e4c3
BLAKE2b-256 9eab20e7de58526d587cbd703b61d2e7575bcd1ffb9b7eda67b70d8c217b8e1e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page