“Python читать PDF” Ответ

Как читать PDF на Python

# importing required modules
import PyPDF2
 
# creating a pdf file object
pdfFileObj = open('example.pdf', 'rb')
 
# creating a pdf reader object
pdfReader = PyPDF2.PdfFileReader(pdfFileObj)
 
# printing number of pages in pdf file
print(pdfReader.numPages)
 
# creating a page object
pageObj = pdfReader.getPage(0)
 
# extracting text from page
print(pageObj.extractText())
 
# closing the pdf file object
pdfFileObj.close()
ADESH KUMAR

Читать PDF Py

import textract
text = textract.process('path/to/pdf/file', method='pdfminer')
Distinct Donkey

Python читать PDF

from PyPDF2 import PDFFileReader
temp = open('document_path.PDF', 'rb')
PDF_read = PDFFileReader(temp)
first_page = PDF_read.getPage(0)
print(first_page.extractText())
Puzzled Puffin

Python читать PDF

from PDFminer.high_level import extract_text
PDF_read = extract_text('document_path.PDF')
Puzzled Puffin

Python читать PDF

import textract
PDF_read = textract.process('document_path.PDF', method='PDFminer')
Puzzled Puffin

Python читать PDF

import PDFplumber
with PDFplumber.open("document_path.PDF") as temp:
  first_page = temp.pages[0]
  print(first_page.extract_text())
Puzzled Puffin

Ответы похожие на “Python читать PDF”

Вопросы похожие на “Python читать PDF”

Больше похожих ответов на “Python читать PDF” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования