Community maintained fork of pdfminer - we fathom PDF
 
 
Go to file
Pieter Marsman f3ab1bc61e
Enforce pep8 coding-style (#345)
* Code Refractor: Use code-style enforcement #312

* Add flake8 to travis-ci

* Remove python 2 3 comment on six library. 891 errors > 870 errors.

* Remove class and functions comments that consist of just the name. 870 errors > 855 errors.

* Fix flake8 errors in pdftypes.py. 855 errors > 833 errors.

* Moving flake8 testing from .travis.yml to tox.ini to ensure local testing before commiting

* Cleanup pdfinterp.py and add documentation from PDF Reference

* Cleanup pdfpage.py

* Cleanup pdffont.py

* Clean psparser.py

* Cleanup high_level.py

* Cleanup layout.py

* Cleanup pdfparser.py

* Cleanup pdfcolor.py

* Cleanup rijndael.py

* Cleanup converter.py

* Rename klass to cls if it is the class variable, to be more consistent with standard practice

* Cleanup cmap.py

* Cleanup pdfdevice.py

* flake8 ignore fontmetrics.py

* Cleanup test_pdfminer_psparser.py

* Fix flake8 in pdfdocument.py; 339 errors to go

* Fix flake8 utils.py; 326 errors togo

* pep8 correction for few files in /tools/ 328 > 160 to go (#342)

* pep8 correction for few files in /tools/ 328 > 160 to go

* pep8 correction: 160 > 5 to go

* Fix ascii85.py errors

* Fix error in getting index from target that does not exists

* Remove commented print lines

* Fix flake8 error in pdfinterp.py

* Fix python2 specific error by removing argument from print statement

* Ignore invalid python2 syntax

* Update contributing.md

* Added changelog

* Remove unused import

Co-authored-by: Fakabbir Amin <f4amin@gmail.com>
2019-12-29 21:20:20 +01:00
.github Add item to checklist about updating CHANGELOG.md 2019-10-22 17:30:09 +02:00
cmaprsrc Fix typos 2016-09-13 16:25:09 +02:00
docs Enforce pep8 coding-style (#345) 2019-12-29 21:20:20 +01:00
pdfminer Enforce pep8 coding-style (#345) 2019-12-29 21:20:20 +01:00
samples Fix failing test on develop & cleaning up test files (#319) 2019-10-26 18:42:33 +02:00
tests Enforce pep8 coding-style (#345) 2019-12-29 21:20:20 +01:00
tools Enforce pep8 coding-style (#345) 2019-12-29 21:20:20 +01:00
.gitignore Add tox configuration for easy local testing (#85) 2017-08-18 08:11:32 +02:00
.travis.yml Enforce pep8 coding-style (#345) 2019-12-29 21:20:20 +01:00
CHANGELOG.md Enforce pep8 coding-style (#345) 2019-12-29 21:20:20 +01:00
CONTRIBUTING.md Enforce pep8 coding-style (#345) 2019-12-29 21:20:20 +01: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 Create sphinx documentation for Read the Docs (#329) 2019-11-07 21:12:34 +01:00
setup.py Create sphinx documentation for Read the Docs (#329) 2019-11-07 21:12:34 +01:00
tox.ini Enforce pep8 coding-style (#345) 2019-12-29 21:20:20 +01:00

README.md

pdfminer.six

Build Status PyPI version gitter

Pdfminer.six is an community maintained fork of the original PDFMiner. It is a tool for extracting information from PDF documents. Unlike other PDF-related tools, it focuses entirely on getting and analyzing text data. Pdfminer.six 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.

Check out the full documentation on Read the Docs.

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.
  • Support for extracting images (JPG, JBIG2 and Bitmaps).
  • Basic encryption (RC4) support.
  • Outline (TOC) extraction.
  • Tagged contents extraction.
  • Automatic layout analysis.

How to use

  • Install Python 2.7 or newer. Note that Python 2 support is dropped at January, 2020.

    pip install pdfminer.six

  • Use command-line interface to extract text from pdf:

    python pdf2txt.py samples/simple1.pdf

  • Check out more examples and documentation on Read the Docs.

Contributing

Be sure to read the contribution guidelines.