我正在努力寻找提高数据录入工作效率的好方法。
我想要做的是想出一种从PDF中抓取数据并将其输入Excel的方法。
更具体地说,我正在使用的数据来自杂货店传单。现在,我们必须手动将传单中的每笔交易输入数据库。传单的样本是http://weeklyspecials.safeway.com/customer_Frame.jsp?drpStoreID=1551
我希望做的是有产品,价格和预定义选项的列(会员卡,优惠券,精选品种......等等)。
任何帮助将不胜感激,如果我需要更具体,请告诉我。
答案 0 :(得分:17)
在查看特定的PDF linked to by the OP 之后,我不得不说这并不能显示典型的表格格式。
它在“单元格”中包含许多图像,但单元格并非都严格垂直或水平对齐:
所以这甚至不是一个'好'的桌子,而是一个非常丑陋和笨拙的工作......
话虽如此,我还是要加上:
标准PDF不提供有关他们在页面上绘制内容的语义的任何提示: 语法提供的唯一区别是矢量元素(线条,填充,...),图像和文本之间的区别。
通过解析PDF源代码,任何字符是否是表的一部分或一部分行,或者只是一个孤独的单个字符在其他空白区域内是不容易通过编程方式识别的。
有关为什么 PDF文件格式永远不应被视为适合托管可提取的结构化数据 的背景信息,请参阅此文章:
Why Updating Dollars for Docs Was So Difficult (ProPublica-Website)
说完上面的内容之后我就加上这个:
对于一个惊人的开源系列工具,每周都会越来越好地从PDF中提取表格数据(除非它们是扫描页面) - 与我在我的说法中所说的相矛盾介绍段落 ! - 查看 TabulaPDF 。请参阅以下链接:
Tabula-Extractor是用Ruby编写的。 在后台它使用PDFBox(用Java编写)和一些其他第三方库。 要运行,Tabula-Extractor需要安装JRuby-1.7。
我直接从其GitHub源代码库使用Tabula-Extractor的“前沿”版本。 让它工作非常简单,因为在我的系统上JRuby-1.7.4_0已经存在:
mkdir ~/svn-stuff
cd ~/svn-stuff
git clone https://github.com/tabulapdf/tabula-extractor.git git.tabula-extractor
此Git克隆中已包含必需的库,因此无需安装PDFBox。
命令行工具位于/bin/
子目录中。
探索命令行选项:
~/svn-stuff/git.tabula-extractor/bin/tabula -h
Tabula helps you extract tables from PDFs
Usage:
tabula [options] <pdf_file>
where [options] are:
--pages, -p <s>: Comma separated list of ranges, or all. Examples:
--pages 1-3,5-7, --pages 3 or --pages all. Default
is --pages 1 (default: 1)
--area, -a <s>: Portion of the page to analyze
(top,left,bottom,right). Example: --area
269.875,12.75,790.5,561. Default is entire page
--columns, -c <s>: X coordinates of column boundaries. Example
--columns 10.1,20.2,30.3
--password, -s <s>: Password to decrypt document. Default is empty
(default: )
--guess, -g: Guess the portion of the page to analyze per page.
--debug, -d: Print detected table areas instead of processing.
--format, -f <s>: Output format (CSV,TSV,HTML,JSON) (default: CSV)
--outfile, -o <s>: Write output to <file> instead of STDOUT (default:
-)
--spreadsheet, -r: Force PDF to be extracted using spreadsheet-style
extraction (if there are ruling lines separating
each cell, as in a PDF of an Excel spreadsheet)
--no-spreadsheet, -n: Force PDF not to be extracted using
spreadsheet-style extraction (if there are ruling
lines separating each cell, as in a PDF of an Excel
spreadsheet)
--silent, -i: Suppress all stderr output.
--use-line-returns, -u: Use embedded line returns in cells. (Only in
spreadsheet mode.)
--version, -v: Print version and exit
--help, -h: Show this message
我甚至没有尝试从OP的怪物PDF中提取这个丑陋的表格。我会把它留给那些喜欢充满冒险精神的读者。 ...
相反,我将演示如何提取一个“漂亮”的表格。我将从 official PDF-1.7 specification 中获取第651-653页,此处以截图显示:
我使用了这个命令:
~/svn-stuff/git.tabula-extractor/bin/tabula \
-p 651,652,653 -g -n -u -f CSV \
~/Downloads/pdfs/PDF32000_2008.pdf
将生成的CSV导入LibreOffice Calc后,电子表格如下所示:
对我来说,这看起来像是一张完整的表格,它可以分布在3个不同的PDF页面上。 (即使表格单元格中使用的换行符也会进入电子表格。)
这是一个ASCiinema截屏视频(您也可以 download ,并在asciinema
命令行的帮助下在Linux / MacOSX / Unix终端中重新播放工具),主演tabula-extractor
: