简体   繁体   English

将 PDF 文件转换为 TXT 文件

[英]Convert a PDF files to TXT files

I need a last touch from an expert !!我需要专家的最后一击!! I want to convert all pdf files in a directory to txt files.我想将目录中的所有pdf文件转换为txt文件。 I wrote a code to create empty txt files having the same name as pdf files and a code to convert a single pdf to txt but I want to convert all files in the directory.我编写了一个代码来创建与 pdf 文件同名的空 txt 文件和一个将单个 pdf 转换为 txt 的代码,但我想转换目录中的所有文件。 please see the code below: PS : I Already tried with PDFminer, and every other package and it does not work请参阅下面的代码: PS:我已经尝试过使用 PDFminer 和其他所有软件包,但它不起作用

import pandas as pd
import os
import PyPDF2

###Create empty txt files Named as pdf files ###########

path = '....\\PDF2Text\\PDF\\'
newpath = '....\\PDF2Text\\Text\\'

files = []
for r, d, f in os.walk(path):
    for file in f:
        if '.pdf' in file:
            files.append(os.path.join(r, file))

for f in files:

    ext = f.replace('.pdf','.txt')
    extpath = ext.replace(path,newpath) 

    ft= open(extpath ,"w+")
    ft.close()
    print(extpath)   

 ##Here we Convert a single pdf file to a txt file providing pdf path and empty txt path #####

import PyPDF2

def getPDFFileContentToTXT(pdfFile):
    myPDFFile = PyPDF2.PdfFileReader(pdfFile)

    with open('....\\PDF2Text\\Text\\blabla.txt', 'w') as pdf_output:
       for page in range (myPDFFile.getNumPages()):
           data = myPDFFile.getPage(page).extractText()
           pdf_output.write(data)



   with open('.....\\PDF2Text\\Text\\blabla.txt', 'r') as myPDFContent:
       return myPDFContent.read().replace('\n',' ')

pdfFileContent = getPDFFileContentToTXT('.....\\PDF2Text\\PDF\\blabla.pdf')

Have you tried Tika?你试过蒂卡吗? Just do a pip install tika (also need to have Java 7+ installed on your system) and maybe this is the piece of code you want:只需执行pip install tika (还需要在您的系统上安装 Java 7+),也许这就是您想要的代码:

import os
from tika import parser

def read_pdf(pdf_file):

    text = parser.from_file(pdf_file)['content']
    return text.encode('utf-8')

def pdf_to_txt(folder_with_pdf, dest_folder):

"""

folder_with_pdf: path to your pdf's
dest_folder: path where you want .txt files saved

"""

    pdf_files = []

    for root, dirs, files in os.walk(folder_with_pdf):
        for f in files:
            if '.pdf' in f:
                pdf_files.append(os.path.join(root, f))
    #print(pdf_files)

    for file_ in pdf_files:
        text_file = os.path.splitext(os.path.basename(file_))[0]+'.txt'
        with open(os.path.join(dest_folder,text_file), 'wb') as text_f:
            text_f.write(read_pdf(file_))

    return None

pdf_to_txt('./pdf_folder', './txt_folder') #you should see .txt files being populated in ./txt_folder

Aside: If pdf files in sub-directories of ./pdf_folder happens to have the same name (but different content) by any chance, then you will lose one (or more) .txt files.旁白:如果 ./pdf_folder 子目录中的 pdf 文件碰巧具有相同的名称(但内容不同),那么您将丢失一个(或多个).txt 文件。

import pandas as pd
import os
import PyPDF2

#Create empty txt files Named as pdf files 

path = 'C:\\PDF2Text\\PDF\\'
newpath = 'C:\\PDF2Text\\Text\\'

# r=root, d=directories, f = files

files = []
for r, d, f in os.walk(path):
    for file in f:
        if '.pdf' in file:
            files.append(os.path.join(r, file))

for f in files:

    txt = f.replace('.pdf','.txt')
    txtpath = txt.replace(path,newpath) 
    print(f)
    ft= open(txtpath ,"w+")
    ft.close()
    print(txtpath)
    Vpath = f.replace('.pdf','')
    #print(Vpath)

    myPDFFile = PyPDF2.PdfFileReader(f)
    with open(txtpath, 'w') as pdf_output:   #, encoding="utf-8"
         for page in range (myPDFFile.getNumPages()):
            data = myPDFFile.getPage(page).extractText()
            pdf_output.write(data)            
    with open(txtpath, 'r') as myPDFContent:
        myPDFContent.read().replace('\n',' ')

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM