About 50 results
Open links in new tab
  1. python - How do I use PyPDF2 to read and display the contents of my …

    Dec 10, 2023 · I have a dummy pdf that has words on it. The course I am using to learn uses PyPDF2 on python. Is there a way for PyPDF2 to actually read the words on the pdf rather than give me …

  2. How do I install pyPDF2 module using windows? - Stack Overflow

    Feb 28, 2014 · As a newbie... I am having difficulties installing pyPDF2 module. I have downloaded. Where and how do I install (setup.py) so I can use module in python interpreter?

  3. python - Maintained alternatives to PyPDF2 - Stack Overflow

    Jul 31, 2020 · I'm using the PyPDF2 library for extracting text, images, page width and heights, annotations, and other attributes from pdf documents. However, the library has many bugs and …

  4. python 3.x - Unable to use pypdf module - Stack Overflow

    Jun 12, 2017 · 8 Use PyPDF2. I've been using it in Python 3 (v3.5.2 to be precise), and it works quite well. Here's a simple command that you can use to install PyPDF2.

  5. Adding page numbers while merging a pdf with PyPDF2

    I use a combination of FPDF and PyPDF2 to accomplish adding page numbers. You could probably modify my simple example to be more efficient if you are already merging documents, but I do it this …

  6. python - "no module named PyPDF2" error - Stack Overflow

    I use Spyder, with Python 2.7, on a windows 10. I was able to install the PyPDF2 package with a conda command from my prompt. I said installation complete. Yet, If I try to run a simple import comm...

  7. Extract images from PDF using python PyPDF2 - Stack Overflow

    Is there any way to extract images as stream from pdf document (using PyPDF2 library)? Also is it possible to replace some images to another (generated with PIL for example or loaded from file)? ...

  8. pypdf Merging multiple pdf files into one pdf - Stack Overflow

    If I have 1000+ pdf files need to be merged into one pdf, from PyPDF2 import PdfReader, PdfWriter writer = PdfWriter () for i in range (1000): filepath = f"my/pdfs/ {i}.pdf" reader =

  9. How to extract text from a PDF file via python? - Stack Overflow

    0 If you try it in Anaconda on Windows, PyPDF2 might not handle some of the PDFs with non-standard structure or unicode characters. I recommend using the following code if you need to open and read …

  10. python - how to open pdf file using pypdf2 - Stack Overflow

    I tried to open a pdf file using pypdf in Google Colab using import PyPDF2 as pdf2 with open ("sample.pdf", "r+") as f: pdf = pdf2.PdfFileReader (f) but I get following error: UnsupportedOperati...