I am using a kali machine to run OWASP ZAP using python.
Is there a way to retrieve ZAP report in PDF format using python.
The python code example present on github uses core.jsonreport() function to print the report in JSON format in the terminal. Is there any inbuilt function that gives the report in PDF format which can also be exported and saved to my local library?
#example code on github
print('JSON report:')
pprint(core.jsonreport())