I have a ReportLab script that generates a large PDF file (thousands of pages). This is done in a simple for-loop that creates a page for each iteration.
However, because canvas.save() closes the file for further editing, I have to wait until the for-loop is complete before saving. This means my Python process swells to about 250MB memory usage as the PDF grows in memory - this seems unnecessary from my application's point of view.
Is there a way to save or flush the ReportLab canvas without closing for editing?