# pydsdl **Repository Path**: aguei/pydsdl ## Basic Information - **Project Name**: pydsdl - **Description**: No description available - **Primary Language**: Python - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-06-07 - **Last Updated**: 2024-07-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # PyDSDL [![Build status](https://ci.appveyor.com/api/projects/status/lurx5gihhcl9wq1w/branch/master?svg=true)](https://ci.appveyor.com/project/Zubax/pydsdl/branch/master) [![Documentation Status](https://readthedocs.org/projects/pydsdl/badge/?version=latest)](https://pydsdl.readthedocs.io/en/latest/?badge=latest) [![Coverage Status](https://coveralls.io/repos/github/UAVCAN/pydsdl/badge.svg)](https://coveralls.io/github/UAVCAN/pydsdl) [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pydsdl.svg)](https://pypi.org/project/pydsdl/) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/a0fdcbe8332a46399a2da90f97900e78)](https://www.codacy.com/app/UAVCAN/pydsdl) [![Forum](https://img.shields.io/discourse/https/forum.uavcan.org/users.svg)](https://forum.uavcan.org) PyDSDL is a [UAVCAN](https://uavcan.org) DSDL compiler front-end implemented in Python. It accepts a DSDL namespace at the input and produces a well-annotated abstract syntax tree (AST) at the output, evaluating all constant expressions in the process. All DSDL features defined in the UAVCAN Specification are supported. The library should, in theory, work on any platform and with any Python implementation. **Read the docs at [pydsdl.readthedocs.io](https://pydsdl.readthedocs.io/).** ```python import pydsdl try: types = pydsdl.read_namespace(target_directory, lookup_directories) except pydsdl.InvalidDefinitionError as ex: print(f'{ex.path}:{ex.line}: Invalid DSDL: {ex.text}', file=sys.stderr) exit(1) else: for t in types: print(t) # Process the type -- generate code, analyze, etc. ```