I have extract the pdf file using python tika but i want to extract header and footer details. so how can i get that one?

237 Views Asked by At

import tika from tika import parser

FileName = "sample.pdf"

PDF_Parse = parser.from_file(FileName)

print(PDF_Parse ['content'])

print(PDF_Parse ['metadata'])

but i want to extract header and footer details.what should i do??? using python tika???

0

There are 0 best solutions below