Python:将pdf转换为csv / json

时间:2018-04-26 17:34:58

标签: python nlp

我是转换文件的新Python。我试图在这段代码中将pdf转换为csv,我指的是这个git repo:https://github.com/bhishan/PDFMiningUsingLessAndSubprocess

我收到错误信息“文件A测试套件评估英语到韩文.pdf失败”。除了'subprocess.Popen'之外,一切正常。我在这做错了什么?

PDF文件链接(无法在git上添加附件):http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.503.4016&rep=rep1&type=pdf

import subprocess
import glob
import time
import csv

csvwriter = csv.writer(file('translation.csv', 'wb'))
csvwriter.writerow(['title','contributornames','institutions','abstract'])

def parse_pdf_buffer(buffer_file):
    with open(buffer_file, 'rb') as f:
        all_content = f.readlines()
        for each_line in all_content[0:29]:
            title_part = each_line[0]
            contributornames = each_line[1]
            institutions = each_line[1:3]
            abstract = each_line[7:27]
            title_part = " ".join(desc_part.split())
            contributornames_part = " ".join(withdraw_part.split())
            institutions_part = " ".join(desc_part.split())
            abstract_part = " ".join(desc_part.split())
            csvwriter.writerow(['title','contributornames','institutions','abstract'])

def read_pdf_file(file_name):
   print file_name
   try:
       fileptr = open('koreanenglish_extracted.txt', 'wb') #parsed it from different code
       command_out = subprocess.Popen(['less', file_name], stdout=fileptr, stderr=subprocess.STDOUT) #ERROR occurs here
       time.sleep(2)
       parse_pdf_buffer('koreanenglish_extracted.txt') #parsed it from different code 
   except:
       print "failed for file", file_name

def main():
   for file_name in glob.glob("*.pdf"): #capture all the pdf
       read_pdf_file(file_name)

if __name__ == '__main__':
    main()

FortunatoScienceParsed.txt内容:在txt中复制粘贴。抱歉,我无法将文件作为附件上传。如果需要,我会在聊天中发送整个koreanenglish_extracted.txt。非常感谢帮助!!!

A Test Suite for Evaluation of English-to-Korean Machine Translation Systems
Sungryong Koh, Jinee Maeng, Ji-Young Lee, Young-Sook Chae, Key-Sun ChoiKorea Terminology Research Center for Language and Knowledge Engineering (KORTERM)
Korea Advanced Institute of Science and Technology (KAIST) 
Kusong-dong Yusong-gu Taejon 305-701 Korea
{koh,aphroditejin,jinny206}@world.kaist.ac.kr
, pinochae@chollian.net
, kschoi@cs.kaist.ac.kr
Abstract
This paper describes KORTERM™s test suite and their practicability.
 The test-sets have been being constructed on the basis of f
ine-
grained classification of linguistic phenomena 
to evaluate the technical st
atus of English-to-Korean 
MT systems systematically.
 They
consist of about 5000 test-sets and are growi
ng.  

0 个答案:

没有答案