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.1.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.1-py3-none-any.whl (14.5 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: listpicker-0.1.1.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.1.tar.gz
Algorithm Hash digest
SHA256 613b67e5e5236f652e82c7ba806ddf723be36698f11e213f5617b1c8f3b89084
MD5 575efe1e3afc9efbf879a1d9ec9a3bab
BLAKE2b-256 0bf98e183063a477c7382dd13170f7026295db612d39f03678a1dc801a09b30a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: listpicker-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 14.5 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.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f38f93311cab9990c0053d901fc93da43ce05dbc2b1a9d59c4eb114cd1c459ae
MD5 8bda8cce5f4a137748f5b2adcfa59886
BLAKE2b-256 d1a3c26a6cfbc4b8c96e3632aeff873d209563aa680102d629b5f1be5483f403

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