General Device Type Format (GDTF) library for Python
Project description
python-gdtf
Python library for General Device Type Format
GDTF specification as per https://gdtf.eu/gdtf/prologue/introduction/
See source code for documentation. Naming conventions, in general, are identical to that on the GDTF, CamelCase is replaced with underscore_delimiters.
Credits
Originally created by Jack Page. Friendly forked to Open-Stage by vanous. We continue publishing to pypi under the same pygdtf name with Jack's permission.
This library is used for example by BlenderDMX (BlenderDMX on GitHub).
See CHANGELOG for details.
Status
- Reading and Writing of all aspects of GDTF 1.2 (DIN SPEC 15800:2022-02)
Installation
- With uv:
uv add pygdtf
- With pip
pip install pygdtf
Latest development version (if exists on pypi.org)
uv add pygdtf --pre
Usage
GDTF files reading
# import
import pygdtf
# parse a GDTF file
gdtf_fixture = pygdtf.FixtureType("BlenderDMX@LED_PAR_64_RGBW@v0.3.gdtf")
# one can also parse just a description.xml file during development or testing
gdtf_fixture = pygdtf.FixtureType(dsc_file="description.xml")
# now access things like DMX modes, channels and so on
# get DMX Mode name
gdtf_fixture.dmx_modes[0].name
'Mode 1 - Standard 16 - bit'
# get total number of DMX channels
gdtf_fixture.dmx_modes[0].dmx_channels_count
39
# get number of Virtual channels
gdtf_fixture.dmx_modes[0].virtual_channels_count
0
# get DMX breaks and DMX channels count:
gdtf_fixture.dmx_modes[0].dmx_breaks[0].dmx_break
1
gdtf_fixture.dmx_modes[0].dmx_breaks[0].channels_count
39
# get DMX channels as objects gdtf_fixture.dmx_modes[0].dmx_channels
<pygdtf.DmxChannel object at 0x7f789c63bb60>, <pygdtf.DmxChannel object at
0x7f789c375590>, <pygdtf.DmxChannel object at 0x7f789c375a90>,...
# get DMX channels as dict
gdtf_fixture.dmx_modes[0].dmx_channels.as_dict()
[[{'dmx': 1, 'offset': [1, 2], 'id': 'Pan', 'default': 128, 'highlight': None,
'geometry': 'Yoke', 'break': 1, 'parent_name': 'Base', 'channel_functions':
[{'name': 'Pan', 'attribute': 'Pan', 'dmx_from': 0, 'dmx_to': 255, 'default':
128, 'real_fade': 1.833, 'physical_to': 270.0, 'physical_from': -270.0,
'channel_sets': ['', 'Center', '']}, ...
# get geometry tree with expanded references
tree = gdtf_fixture.geometries.get_geometry_tree(
fixture_type=gdtf_fixture,
mode_name="Mode 1 - Standard 16 - bit",
)
tree.name
'Base'
# see the source code for more methods
Writing a GDTF file
import pygdtf
from pathlib import Path
# parse a GDTF file
fixture = pygdtf.FixtureType("BlenderDMX@LED_PAR_64_RGBW@v0.3.gdtf")
# modify the fixture as needed, you must ensure GDTF correctness
# create writer
writer = pygdtf.FixtureTypeWriter(fixture)
# write a new GDTF archive
writer.write_gdtf(Path("BlenderDMX@LED_PAR_64_RGBW@v0.3_roundtrip.gdtf"))
See BlenderDMX and tests for reference implementation and usage examples.
Development
PRs appreciated. You can use uv to get the project setup by running:
uv sync
Format
- To format, use ruff
uv run ruff format pygdtf/*
Pre-commit hooks
- You can use the pre-commit hooks
uv run pre-commit install
Testing
- To test, use pytest
uv run pytest
- To test typing with mypy use:
uv run pytest --mypy -m mypy pygdtf/*py
Updating Attribute Definitions
The canonical AttributeDefinitions XML is from the GDTF
Spec, and it is stored at the repo
root: AttributeDefinitions.xml. When the GDTF Spec updates that file, we need
to regenerate the baked Python data module by running the following:
uv run python -c "from pygdtf.utils import attr_loader; attr_loader.generate_attribute_definitions_module()"
This writes pygdtf/utils/attribute_definitions_data.py, which is imported at
runtime instead of reading the XML. Format and commit the regenerated module
along with the updated XML.
Citation
If you use this library in your research, publication, or software project, please cite it as follows:
@software{pygdtf2025,
title = {pyGDTF: Python Library for General Device Type Format},
author = {{OpenStage}},
year = {2026},
version = {1.4.5},
url = {https://github.com/open-stage/python-gdtf}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pygdtf-1.4.5-py3-none-any.whl.
File metadata
- Download URL: pygdtf-1.4.5-py3-none-any.whl
- Upload date:
- Size: 54.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":null,"id":"forky","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
852c206a04e978b142be259967676f9acf450328aa43c94b69f8a343369fa447
|
|
| MD5 |
7d3adf8ab3f5e7c5305e189d51bf3aab
|
|
| BLAKE2b-256 |
f9b4ba4c8b3bcfb4c50b6edf4cbf0207dc26d9faa062077e68b5afe60cb58ef0
|