Problem with PdfFileWriter of PyPDF2: addPage() missing 1 required positional argument: 'page'

2.1k Views Asked by At

I need to write in a new PDF the content of each page.

In 'curr_page' i am saving the PageObject of each Page, but when i try to write it in a new one i receive the error of that "addPage needs an argument". But i am giving it the argument, which should be an PageObject.

Some thoughts?

pdf = PdfFileReader("suenios_lucidos.pdf")

for page in range(pdf.getNumPages() - 210):

    # Write in a pdf each page:
    pdf_writer = PdfFileWriter
    curr_page = pdf.getPage(page)
    pdf_writer.addPage(curr_page)

----> 8 pdf_writer.addPage(curr_page)

TypeError: addPage() missing 1 required positional argument: 'page'

1

There are 1 best solutions below

0
On

Add ( ) to the PdfFileWriter:

pdf_writer = PdfFileWriter()