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
  • Preselected options in multiselect prompts

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.3.0.tar.gz (10.9 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.3.0-py3-none-any.whl (14.7 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for listpicker-0.3.0.tar.gz
Algorithm Hash digest
SHA256 4cf55294b690ee40594b83ea4123aaeb589d8fc66302390e9320456e4f97922a
MD5 7164c9dee9285f0abcf4703dc711aaa1
BLAKE2b-256 5e40a24dba76d7953c601334333be40b399a52ac2dff2eebcd6764eb69b20e75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: listpicker-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 14.7 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.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 68746f4181a782fd3ba8f05ff8ee973e955f690072747fea76300f3ae0e8fe72
MD5 d23f3dd9c4a03c9abf1de7d592e6113b
BLAKE2b-256 06f440d9427f67c11a7501680f19a08417b82c3f70830f00def2918061cbdb65

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