Skip to main content

Parametric file browser written in pure python.

Project description

PyPScan

PyPScan is a parametric file browser.

Originally developed as "pscan" by the VISPA Group.

Available as a Jupyter widget, a terminal UI, and a web browser UI:

demo

Install

Base package (no UI dependencies):

pip install pypscan

With Jupyter support:

pip install pypscan[jupyter]

With terminal UI support:

pip install pypscan[tui]

Everything at once:

pip install pypscan[all]

How it works

PyPScan walks a directory tree and extracts named parameters from file paths using a regular expression. Each (?P<name>...) group becomes a browsable dimension. The UI then lets you select values for each parameter interactively, filtering available options to only show valid combinations.

Usage

Jupyter notebook

from pypscan import PyPScan

REGEX = (
    r"param0_(?P<param0>.+)"
    r"/param1_(?P<param1>\d+)"
    r"/file\.png"
)

browser = PyPScan(regex=REGEX, base_path="demo/")
browser.run()

Subclass PyPScan and override display_content(path) to add support for custom file formats.

Terminal UI

pypscan --regex "param0_(?P<param0>.+)/param1_(?P<param1>\d+)/file\.png" \
        --base-path demo/ \
        --ui tui

Requires pip install pypscan[tui]. Press q to quit, r to rescan.

Web browser UI

pypscan --regex "param0_(?P<param0>.+)/param1_(?P<param1>\d+)/file\.png" \
        --base-path demo/ \
        --ui web

Opens a local browser tab automatically. No extra dependencies beyond the base install. Use --port PORT to change the default port (8765).

Python API (no UI)

Access the scanner and index directly:

from pypscan import Scanner, ParametricIndex

scanner = Scanner(
    regex=r"param0_(?P<param0>.+)/param1_(?P<param1>\d+)/file\.png",
    base_path="demo/",
)
index = ParametricIndex(scanner.scan())

# All available options
print(index.get_options())
# {'param0': ['a', 'b', 'c'], 'param1': ['0', '1', '2']}

# Filter options given a partial selection
print(index.get_options({"param0": "a"}))
# {'param1': ['0', '1', '2']}

# Resolve a full selection to a file path
path = index.resolve({"param0": "a", "param1": "0"})

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

pypscan-2026.0.2.tar.gz (336.0 kB view details)

Uploaded Source

Built Distribution

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

pypscan-2026.0.2-py3-none-any.whl (341.0 kB view details)

Uploaded Python 3

File details

Details for the file pypscan-2026.0.2.tar.gz.

File metadata

  • Download URL: pypscan-2026.0.2.tar.gz
  • Upload date:
  • Size: 336.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for pypscan-2026.0.2.tar.gz
Algorithm Hash digest
SHA256 8b1db71a7aa250360eae91be3d5ac863b582ffd65a9d75f07f71bdcd6caf63c1
MD5 57f72274521e46d16caec94bd19db34b
BLAKE2b-256 548019de5b26ddbc3679382c2ac10c84d9b34a144bcacc6439ceb4a78b927fb7

See more details on using hashes here.

File details

Details for the file pypscan-2026.0.2-py3-none-any.whl.

File metadata

  • Download URL: pypscan-2026.0.2-py3-none-any.whl
  • Upload date:
  • Size: 341.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for pypscan-2026.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 5b0e1d3ce6c74cc62723f9d7cb3e7214e717f21776137925148677b5ca9aa08c
MD5 e6b10d45dc263004923c1102c7ee13dc
BLAKE2b-256 4ba1810f95fb73282e5712bcd5c6e6f34cdf2ceccfa72c5b6a0a9e7f87fe0892

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