ade module

ade.main() None

Main entry into the Gooey.

ade.print_pyinstaller(statement: object) None

Hack to allow a PyInstaller Gooey exe to print correctly.

A side effect with an exe is that print statements don’t print when called and instead all print at once at the end of the program.

This function calls the print statement and in order for it to print at the right time, calls input() for a split second. The program pause allows the print statement to run as desired.

Parameters

statement (object) – The desired object to print.

ade.run(args: argparse.Namespace)

Main code logic in order to run ade reports.

Parameters

args (argparse.Namespace) – The parsed arguments required to run a report.