convert pdf to text python code example

Example 1: pdf to string python

pip install PyPDF2
import PyPDF2
pdfFileObject=open(r"F:\fileName.pdf",'rb')
pdfReader = PyPDF2.PdfFileReader(pdfFileObject) //Creating reader obj
print(" No. Of Pages :", pdfReader.numPages)//To know no.of pages

Example 2: pdf to text python

#!pip install tabula-py
import tabula
#read all table data
df = tabula.read_pdf("sample.pdf",pages=[1,2])
df[1]

#tabula.convert_into("sample.pdf", "sample.csv", output_format="csv")

Example 3: pdf to string python

import PyPDF2

pdfFileObject = open(r"F:\pdf.pdf", 'rb')

pdfReader = PyPDF2.PdfFileReader(pdfFileObject)

print(" No. Of Pages :", pdfReader.numPages)

pageObject = pdfReader.getPage(0)

print(pageObject.extractText())

pdfFileObject.close()

Example 4: pdf to text python 3

pip install pdftotext

Example 5: python convert dict_keys to list

d = {1:1, 2:2, 3:3}
d_keys_list = list(d.keys())

Tags:

Cpp Example