Skip to content

General Information

Welcome to the documentation of PyAWE AWC Parser.

This package uses Python pydantic to read an AWE Designer exported AWC (AW Container) file. An AWC file contains all required information of an AWE signal flow for system integrators and application developers.

The package provides an Model Definition to be used in other Python programs, and some command line scripts.

The main entry point for using the AWC is the AwcFile.from_file method.

from pyawe_awc import AwcFile

awc = AwcFile.from_file("path-to-an-AWC-file")

print("File was generated at {}".format(awc.build_datetime()))