Typing stubs for VapourSynth
vs-stubs provides Python type stubs for VapourSynth plugins and core functions.
This helps editors, IDEs, and static type checkers (e.g. mypy, pyright) understand VapourSynth's API.
Due to the dynamic nature of VapourSynth's plugin system, any newly installed plugins are not automatically reflected in the stubs. When adding plugins, you will need to regenerate stubs to keep the type information accurate and in sync with your environment.
Note that vs-stubs does not include or install any actual VapourSynth plugins. Only their type definitions.
pip install vsstubsYou can use vsstubs via the command line or as a Python module.
-
Simply update the VapourSynth stubs:
vsstubs
-
Installing from the wheel output for a proper installation:
pip install $(vsstubs --wheel)
--wheelbuilds an installablevapoursynth-stubswheel instead of writing a.pyifile directly.By default, the wheel is created in a temporary directory and the wheel path is printed to stdout, which lets shells pass it straight to
pip install.Use
--outputwith--wheelto choose the directory where the wheel should be built:vsstubs --wheel --output dist
When
--wheelis enabled,--outputmust be a directory path. The special output values@and-are only for direct.pyioutput and cannot be used with wheel output. -
Generate a template stubs:
vsstubs -o out.pyi --template
-
Add plugin stubs:
vsstubs -i out.pyi -o @ add resize2
-
Remove plugin stubs (On Powershell you will need to escape the
@character):vsstubs -i out.pyi -o "@" remove resize2
from vsstubs import output_stubs
# Example usage
output_stubs(None, "output.pyi", template=True) Usage: vsstubs [OPTIONS] COMMAND [ARGS]...
vs-stubs command line interface
╭─ Options ─────────────────────────────────────────────────────────────────────╮
│ --template -T Export blank template; excludes existing plugins unless │
│ --load or --add is used. │
| --compat Enable return type compatibility for APIv3 plugins. |
│ --help Show this message and exit. │
╰───────────────────────────────────────────────────────────────────────────────╯
╭─ I/O options ─────────────────────────────────────────────────────────────────╮
│ --input -i,-I TEXT Path to the input .pyi file. Use '-' for piping. │
│ --output -o,-O TEXT Path to write the output .pyi file. '@' overwrites │
│ the input file and '-' writes to stdout. With │
│ --wheel, this is the directory where the wheel is │
│ built. │
│ [default: (vapoursynth-stubs/__init__.pyi inside │
│ the site-package folder)] │
│ --wheel -w Build an installable vapoursynth-stubs wheel │
│ instead of writing a .pyi file. The wheel path is │
│ printed to stdout so it can be passed to pip. │
│ --load -L PATH Load plugins from a folder or a single library │
│ file. │
╰───────────────────────────────────────────────────────────────────────────────╯
╭─ Informations ────────────────────────────────────────────────────────────────╮
│ --quiet Suppress message output. │
│ --version -V Show version info and exit. │
╰───────────────────────────────────────────────────────────────────────────────╯
╭─ Commands ────────────────────────────────────────────────────────────────────╮
│ add Add or update the specified plugins in the stubs │
│ remove Remove the specified plugins from the stubs │
│ check Check for new plugins or new plugin signatures │
│ update Update the current signatures from the input │
╰───────────────────────────────────────────────────────────────────────────────╯