Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/opencyphal/pydsdl
Cyphal DSDL processing front end implemented in Python
https://github.com/opencyphal/pydsdl
compiler-frontend cyphal dsdl opencyphal parser uavcan vehicular-networks
Last synced: about 1 month ago
JSON representation
Cyphal DSDL processing front end implemented in Python
- Host: GitHub
- URL: https://github.com/opencyphal/pydsdl
- Owner: OpenCyphal
- License: mit
- Created: 2018-10-19T12:17:38.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-25T18:20:51.000Z (5 months ago)
- Last Synced: 2024-10-29T18:47:19.247Z (2 months ago)
- Topics: compiler-frontend, cyphal, dsdl, opencyphal, parser, uavcan, vehicular-networks
- Language: Python
- Homepage: https://opencyphal.org
- Size: 754 KB
- Stars: 11
- Watchers: 6
- Forks: 9
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
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)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/pydsdl)](https://pypi.org/project/pydsdl/)
[![Forum](https://img.shields.io/discourse/https/forum.opencyphal.org/users.svg)](https://forum.opencyphal.org)PyDSDL is a [Cyphal](https://opencyphal.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 Cyphal 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.
```