export_json#
- Report.export_json(json_file_path: str) None #
Export this report to a JSON-formatted file.
- Parameters:
- json_file_path
str
Path of the JSON file to be exported to.
- json_file_path
- Returns:
- None.
Examples
import ansys.dynamicreporting.core as adr adr_service = adr.Service(ansys_installation=r'C:\Program Files\ANSYS Inc\v232') adr_service.connect(url='http://localhost:8020', username = "admin", password = "mypassword") report = adr_service.get_report(report_name="my_report_name") report.export_json(r'C:\tmp\my_json_file.json')