A Pure-Python library built as a PDF toolkit.
1
vote
0answers
70 views
EOF marker not found - How to fix in PyPDF and PyPDF2?
I'm attempting to combine a few PDF files into a single PDF file using Python. I've tried both PyPDF and PyPDF2 - on some files, they both throw this same error:
PdfReadError: EOF marker not found
...
0
votes
1answer
69 views
PDF merging in Python 3
Is there a working PDF manipulation module for Python 3? I've tried Pypdf, but it glitches out when I try to install with PIP. I'd like to merge PDF files. If I use Pypdf2, I get the following message ...
0
votes
1answer
87 views
pyPdf for Python 2.7 does not work with py2exe and cx_freeze?
everyone,
I wrote a little program using pyPdf for Python 2.7. And it has been tested in Python. Now I want it to be converted to exe file to run it in Windows. Neither py2exe or cx_freeze works out. ...
1
vote
2answers
368 views
How to install a module for python 2.6 on CentOS?
After I install python 2.6 on CentOS by:
wget http://download.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm
sudo rpm -ivh epel-release-5-4.noarch.rpm
yum install python26
Then I ...
1
vote
1answer
194 views
Extract Text Using PdfMiner and PyPDF2 Merges columns
I am trying to parse the pdf file text using pdfMiner, but the extracted text gets merged. I am using the pdf file from the following link.
PDF File
I am good with any type of output (file/string). ...
0
votes
1answer
57 views
pyPdf: illegal UTF-16 surrogate
I have a pdf file that breaks pyPdf: http://tovotu.de/tests/test.pdf
This is the sample script:
from pyPdf import PdfFileWriter, PdfFileReader
outputPdf = PdfFileWriter()
inpdf = ...
1
vote
0answers
40 views
merging PDFs in pyPDF on larger canvas
What I am looking to do in pyPDF is create a script that will generate a 17x11 PDF "canvas", add the 1st PDF to the left side, and the 2nd PDF to the right side.
My initial question is: What is the ...
3
votes
1answer
182 views
How to extract text from a PDF file in Python?
How can I extract text from a PDF file in Python?
I tried the following:
import sys
import pyPdf
def convertPdf2String(path):
content = ""
pdf = pyPdf.PdfFileReader(file(path, "rb"))
...
0
votes
0answers
51 views
PyPDF2 cannot import pdf file header
I use PyPDF2 to import pdf file in string into python. Problem is the top of the first page doesn't want to be imported (.getPage(0).extracText() misses the top part).
I guess that there is a header ...
1
vote
1answer
112 views
How to get pypdf to read page content line by line?
I have a pdf in which every page contains an address. The addresses are in this format:
Location Name
Street Address
City, State Zip
for example:
The Gift Store
620 Broadway Street
Van Buren, ...
1
vote
1answer
65 views
“import decimal” raises errors
here's the code I am using
import os
import decimal
from pyPdf import PdfFileReader
path = r"E:\python\Real Python\Real Python\Course materials\Chapter 8\Practice files"
inputFileName = ...
2
votes
0answers
56 views
pypdf errors - module object has no attribute number
here's the code I am using
import os
import decimal
from pyPdf import PdfFileReader
path = r"E:\python\Real Python\Real Python\Course materials\Chapter 8\Practice files"
inputFileName = ...
0
votes
0answers
19 views
pypdf not returning string
When attempting to read a pdf document and print the output in the python shell, rather than returning the text it returns code (unicode I think) as a string. Is there any way to get the program to ...
0
votes
1answer
63 views
Merge non-standard PDFs with pyPdf
I would like to merge a couple of PDF files into a single PDF document. As it turns out, the input files are not fully standard-compliant. The EOF marker is followed by some additional information:
...
0
votes
1answer
137 views
PyPDF2 throws error when merging (Python3.3/Win7)
I'm using PyPDF2 to do a simple merge of PDFs. I wrote the code on XP/Python 3.2 and it works fine. When I moved it to Win7-64bit/Python 3.3 and used the latest PyPDF2 distribution ...
0
votes
1answer
97 views
Python PyPDF - EOF Marker Not Found
I have seen other articles that talked about doing something along the lines of:
fileOpen = file(file_name,'a')
fileOpen.write("%%EOF")
file.close()
But this does not work For me. Anyone have any ...
1
vote
0answers
90 views
How to split a pdf document containing multiple logical pages on each sheet?
I want to split a 2x2 pdf document into its original pages. Each page consists of four logical pages which are arranged like in this example.
I'm trying to use python and pypdf:
import copy, sys
...
-2
votes
1answer
142 views
Python .txt to .pdf convertion [closed]
I have a .txt file. I need to convert to .pdf with same content.....
So anyone leave a direct code snip so i can test directly....
It would be better if its through pypdf....
i have failed in trying ...
1
vote
1answer
155 views
appending %%EOF to a PDF file in python
I'm trying to open a PDF with pyPdf. I get the following error:
pyPdf.utils.PdfReadError: EOF marker not found
I thought that I should add the EOF myself. However, I don't want to write bytes. ...
1
vote
0answers
69 views
How to insert a “missing” page as blank page in PDF with Python?
Say you have to join some pages that are number 2, 4 and 5… (the files are named test_002.pdf, test_004.pdf and test_005.pdf), then we could say there is a page 3 missing.
What I try to do is having ...
1
vote
0answers
145 views
How can I add transparent watermark to PDF printout using reportlab python library
I have to draw a watermark in my dynamically generated PDF Print.
I did it using the pyPdf library(By merging the Original PDF and the PDF with watermark).
http://wa5pb.freeshell.org/motd/?p=769
...
0
votes
2answers
53 views
How to obtain a file object from a variable or from http URL without actually creating a file?
I want to manipulate a downloaded PDF using PyPDF and for that, I need a file object.
I use GAE to host my Python app, so I cannot actually write the file to disk.
Is there any way to obtain the ...
1
vote
2answers
137 views
display pdf pages with GUI on tkinter
I`m using pyPdf to crop pdf pages.
And the only thing i miss, is GUI for this script.
I picked up tkinter module to do the GUI, but i cannot find whether it is possible to display pdf pages with GUI ...
0
votes
0answers
66 views
Disable editing of PDFs with python only
I am having an issue locking down PDFs only using Python. I have looked at PyPDF but the encrypt part isn't working for me. I just need to disable the ability for an end user to edit the fields. I ...
2
votes
1answer
132 views
Create blobstore file from PdfFileWriter
I'm trying to merge two pdfs with pyPdf library using python and google app engine.
I read the files from blobstore and I create PdfFileWriter object with the information that I need but then I'm ...
2
votes
1answer
124 views
PDF bleed detection
I'm currently writing a little tool (Python + pyPdf) to test PDFs for printer conformity.
Alas I already get confused at the first task: Detecting if the PDF has at least 3mm 'bleed' (border around ...
0
votes
0answers
35 views
PDFFileReader isn't closing pdf after use [duplicate]
Possible Duplicate:
How to close pyPDF “PdfFileReader” Class file handle
I'm running Python 2.7 on Win 64bit.
I'm trying to download a pdf to file, open the pdf, extract the text, and then ...
0
votes
2answers
140 views
how to iterate over all the objects in a PDF page and check which ones are text objects?
I want to iterate over all the objects in a page of a pdf using pypdf.
I also want to check that what is the type of the object, whether it is text or graphics.
A code snippet would be a great help.
...
1
vote
1answer
192 views
PyPdf Merge error
When i merge several Pdf pages using PyPdf into one single page using mergeTranslatedPage, i got some unknown characters, these unknown squares are the characters not included in the last merged page, ...
2
votes
2answers
953 views
Cannot install PyPdf 2 module
Trying to install PyPdf2 module, I downloaded the zip and unzipped it, I executed python setup.py build and python setup.py install, but it seems that it has not been installed , when I try to import ...
0
votes
1answer
99 views
pyPdf: Speeding up the write / combine operation?
I've got a pyPdf application combining a bunch of PDFs into one PDF and properly building a table of contents using external metadata. It works really well for some PDFs, but for others, it just seems ...
0
votes
1answer
101 views
finding on which page a search string is located in a pdf document using python
Which python packages can I use to find out out on which page a specific “search string” is located ?
I looked into several python pdf packages but couldn't figure out which one I should use.
...
3
votes
1answer
265 views
pyPDF - Retrieve page numbers from document
At the moment I'm looking into doing some PDF merging with pyPdf, but sometimes the inputs are not in the right order, so I'm looking into scraping each page for its page number to determine the order ...
0
votes
0answers
228 views
PyPDF2 with Python 3.2 cannot instantiate PdfFileReader class
I get an error when trying to instantiate PdfFileReader class in PyPDF2, it complains about a type problem in the filter.py module, but I think the issue is somewhat deeper.
My (very simple) code:
...
0
votes
0answers
65 views
pyPdf print escape characters
I'm trying to write a script which runs to a series of pdf files to extract the abstract of academic papers. So far I have written a scripts which iterates through the files and reads the characters ...
1
vote
0answers
213 views
pyPDF bad xref character at startxref
I'm using pyPDF for pdf page extraction and merging. My issues isn't completely dependent on pyPDF, since I've ran into the same type of error with pdfSharp in the past on the same pdf file.
The ...
0
votes
0answers
119 views
pyPdf::mergePage. One page hides the other (overlapping)
I'm using this method (mergePage) to get a combination of two pages, but the result is that one of the pages hides the other, so one is printed on top of the other. The fact is that "watermark" page ...
3
votes
1answer
746 views
Parsing a PDF with no /Root object using PDFMiner
I'm trying to extract text from a large number of PDFs using PDFMiner python bindings. The module I wrote works for many PDFs, but I get this somewhat cryptic error for a subset of PDFs:
ipython ...
0
votes
1answer
415 views
Generating pdf using web2py-appreport (xhtmltopdf) in Python Web2py webapp
I am from a non coding background so python, web2py is very new to me.
My app needs to export textarea content (using RTE redactor) to pdf. I get html content from textarea (redactor), can you please ...
0
votes
0answers
98 views
pypdf python do not write Roman characters
I am using pypdf python library to create pdf files. When I execute the code below the pdf file is created but it do not has correct roman characters in it. I am using python 2.7
Can anyone please ...
0
votes
0answers
143 views
Cannot convert a PDF document to Text using Python (output does not contain any spaces between words)
I'm trying to convert a PDF to text but I must be doing something wrong because the output does not contain any spaces between words.
I've tried pyPDF, PDFminer and slate (using the examples that I ...
0
votes
2answers
232 views
Whitespace gone from PDF extraction, and strange word interpretation
Using the snippet below, I've attempted to extract the text data from this PDF file.
import pyPdf
def get_text(path):
# Load PDF into pyPDF
pdf = pyPdf.PdfFileReader(file(path, "rb"))
# ...
1
vote
2answers
316 views
pyPdf ignores newlines in PDF file
I'm trying to extract each page of a PDF as a string:
import pyPdf
pages = []
pdf = pyPdf.PdfFileReader(file('g-reg-101.pdf', 'rb'))
for i in range(0, pdf.getNumPages()):
this_page = ...
0
votes
4answers
255 views
Combine two lists of PDFs one to one using Python
I have created a series of PDF documents (maps) using data driven pages in ESRI ArcMap 10. There is a page 1 and page 2 for each map generated from separate *.mxd. So I have one list of PDF documents ...
1
vote
1answer
260 views
pyPdf error invalid argument
I'm actually using pyPdf to open, read and write the content of a PDF file.
for that I use these lines of code :
from pyPdf import PdfFileWriter, PdfFileReader
pdf = ...
5
votes
3answers
2k views
PDF - Remove White Margins
I would like to know a way to remove white margins from a PDF file. Just like Adobe Acrobat X Pro does. I understand it will not work with every PDF file.
I would guess that the way to do it, is by ...
1
vote
2answers
814 views
Opening pdf urls with pyPdf
How would I open a pdf from url instead of from the disk
Something like
input1 = PdfFileReader(file("http://example.com/a.pdf", "rb"))
I want to open several files from web and download a merge of ...
1
vote
1answer
462 views
pyPdf output files are the same size regardless of page count
I'm trying to use pyPdf to extract a few pages from a large pdf to a separate file. Whenever I do, the resulting filesize is nearly identical to the source file. I think it has something to do with ...
2
votes
1answer
419 views
creating a new PDF from existing PDF in Python
I'm struggling how to create a PDF report using another PDF as template in Python.
I have a PDF file ( Template.pdf) that can be used as the template to create report every day.
Template.pdf looks ...
2
votes
1answer
232 views
Assertion Error in Pypdf package in Python
I am using Python 2.4 and PyPdf 1.13 on a Windows platform.
I am trying to merge PDF files from a list into one using the following code:
import os
from pyPdf import PdfFileWriter, PdfFileReader
...