Skip to content

Python development

Joachim Metz edited this page May 16, 2026 · 1 revision

libvsbsdl comes with Python-bindings named pyvsbsdl.

Below are examples how use pyvsbsdl. They assume you have a working version of pyvsbsdl on your system. To build pyvsbsdl see Building.

Import

To be able to use pyvsbsdl in your Python scripts add the following import:

import pyvsbsdl

Get version

The get_version() module function can be used to retrieve the version of the pyvsbsdl.

pyvsbsdl.get_version()

This will return a textual string (Unicode) that contains the libvsbsdl version. Since pyvsbsdl is a wrapper around libvsbsdl it does not have a separate version.

Also see

import pyvsbsdl

help(pyvsbsdl)
help(pyvsbsdl.None)

Clone this wiki locally