Skip to content

Parsers

Main Entry Point

parse

parse(aep_file_path: str | PathLike[str]) -> Application

Parse an After Effects (.aep) project file and return an Application instance.

This is the main entry point for the library. It parses the binary RIFX data and returns an Application object whose project attribute holds the full project tree.

Parameters:

Example
import py_aep

app = py_aep.parse("project.aep")
project = app.project
print(app.version)