A python library to interact with Pwndoc instances for pentest reports generation.
import pwndocapi
p = pwndocapi.pwndoc("192.168.1.19", 8443, verbose=True)
p.login("username", "password")
# Create a new audit
audit = p.audits.create("PoC Audit", "fr", "TI Externe")
print("audit:", audit)
Pull requests are welcome. Feel free to open an issue if you want to add other features.