Skip to content

Latest commit

 

History

History
55 lines (36 loc) · 1.69 KB

README.rst

File metadata and controls

55 lines (36 loc) · 1.69 KB

PyCodegen Build Status PyPi Version License

Pycodegen is a tool to help you generate code in your project using powerful Jinja2 templates.

To get started:

# Install
python3 -m pip install pycodegen

# Run cli
pycodegen

# Run cli using module
python3 -m pycodegen.cli
Frontend Description
cpp Parses C/C++ using libclang
json Passes a JSON file directly to the driver

How it works

  1. The requested frontend reads the input file and generates an intermediate representation.
  2. The representation is passed to the driver
  3. Driver does any processing required of the representation.
  4. Driver selects the output filename and template to be used and render the output file.

Example usage

# Generate the simple JSON example
pycodegen json examples/simple/input_file.json --driver examples/simple/driver.py --debug

# Get intermediate representation of a C++ file (to aid in driver development)
pycodegen cpp <name-of-file.cpp> --dump-json