Community maintained fork of pdfminer - we fathom PDF
 
 
Go to file
Pieter Marsman 694aa508c3 Release 20191020 2019-10-20 14:21:48 +02:00
cmaprsrc Fix typos 2016-09-13 16:25:09 +02:00
docs Added: a simpler ordering mode when 1<F. 2016-09-26 18:06:34 +09:00
pdfminer Release 20191020 2019-10-20 14:21:48 +02:00
samples Adds Test Case 2019-08-10 10:19:20 +05:30
tests Removing assertion in drange to allow equal inputs (#246) and mimic behaviour of built-in method range 2019-10-17 12:04:25 +02:00
tools Replaced .iteritems() and with six.iteritems() for Python 3 compat 2019-07-24 14:08:30 -03:00
.gitignore Add tox configuration for easy local testing (#85) 2017-08-18 08:11:32 +02:00
.travis.yml Only define dependencies in setup.py (#306) 2019-10-20 11:41:31 +02:00
CHANGELOG.md Release 20191020 2019-10-20 14:21:48 +02:00
CONTRIBUTING.md Update CONTRIBUTING.md 2019-10-20 14:18:26 +02:00
LICENSE Added: LICENSE 2016-09-11 23:38:18 +09:00
MANIFEST.in Merge remote-tracking branch 'origin/master' 2017-01-19 08:03:16 +01:00
Makefile Merge remote-tracking branch 'origin/master' 2017-01-19 08:03:16 +01:00
README.md Remove licence from README.md because it is already in the LICENCE file 2019-10-20 14:19:18 +02:00
setup.py Only define dependencies in setup.py (#306) 2019-10-20 11:41:31 +02:00
tox.ini Only define dependencies in setup.py (#306) 2019-10-20 11:41:31 +02:00

README.md

PDFMiner.six

PDFMiner.six is a fork of PDFMiner using six for Python 2+3 compatibility

Build Status PyPI version

PDFMiner is a tool for extracting information from PDF documents. Unlike other PDF-related tools, it focuses entirely on getting and analyzing text data. PDFMiner allows one to obtain the exact location of text in a page, as well as other information such as fonts or lines. It includes a PDF converter that can transform PDF files into other text formats (such as HTML). It has an extensible PDF parser that can be used for other purposes than text analysis.

Features

  • Written entirely in Python.
  • Parse, analyze, and convert PDF documents.
  • PDF-1.7 specification support. (well, almost)
  • CJK languages and vertical writing scripts support.
  • Various font types (Type1, TrueType, Type3, and CID) support.
  • Basic encryption (RC4) support.
  • Outline (TOC) extraction.
  • Tagged contents extraction.
  • Automatic layout analysis.

How to Install

  • Install Python 2.7 or newer.

  • Install

    pip install pdfminer.six

  • Run the following test:

    pdf2txt.py samples/simple1.pdf

Command Line Tools

PDFMiner comes with two handy tools: pdf2txt.py and dumppdf.py.

pdf2txt.py

pdf2txt.py extracts text contents from a PDF file. It extracts all the text that are to be rendered programmatically, i.e. text represented as ASCII or Unicode strings. It cannot recognize text drawn as images that would require optical character recognition. It also extracts the corresponding locations, font names, font sizes, writing direction (horizontal or vertical) for each text portion. You need to provide a password for protected PDF documents when its access is restricted. You cannot extract any text from a PDF document which does not have extraction permission.

(For details, refer to /docs/index.html.)

dumppdf.py

dumppdf.py dumps the internal contents of a PDF file in pseudo-XML format. This program is primarily for debugging purposes, but it's also possible to extract some meaningful contents (e.g. images).

(For details, refer to /docs/index.html.)

TODO

  • PEP-8 and PEP-257 conformance.
  • Better documentation.
  • Performance improvements.

Contributing

Be sure to read the contribution guidelines.