get_url#

Report.get_url() str#

Get the URL corresponding to the report.

Returns:
str

URL corresponding to the report. If no URL exists, an empty string is returned.

Examples

import ansys.dynamicreporting.core as adr
adr_service = adr.Service(ansys_installation = r'C:\Program Files\ANSYS Inc\v232')
ret = adr_service.connect()
my_report = adr_service.get_report(report_name = 'Top report')
report_url = my_report.get_url()