Python Generator#

class besser.generators.python_classes.python_classes_generator.PythonGenerator(model: DomainModel, output_dir: str = None)[source]#

Bases: GeneratorInterface

PythonGenerator is a class that implements the GeneratorInterface and is responsible for generating the Python domain model code based on the input B-UML model.

Parameters:
  • model (DomainModel) – An instance of the DomainModel class representing the B-UML model.

  • output_dir (str, optional) – The output directory where the generated code will be saved. Defaults to None.

_abc_impl = <_abc._abc_data object>#
generate()[source]#

Generates Python domain model code based on the provided B-UML model and saves it to the specified output directory. If the output directory was not specified, the code generated will be stored in the <current directory>/output folder.

Returns:

None, but store the generated code as a file named classes.py