Main function
()
| 478 | |
| 479 | |
| 480 | def main(): |
| 481 | """Main function""" |
| 482 | print("Generating PythonAPI documentation...") |
| 483 | script_path = os.path.dirname(os.path.abspath(__file__)) |
| 484 | docs = Documentation(script_path) |
| 485 | with open(os.path.join(script_path, '../../Docs/python_api.md'), 'w') as md_file: |
| 486 | md_file.write(docs.gen_markdown()) |
| 487 | print("Done!") |
| 488 | |
| 489 | |
| 490 | if __name__ == "__main__": |
no test coverage detected