From 11a4c8b6c1430d97352fc5587935bdd1480f4f75 Mon Sep 17 00:00:00 2001 From: Philippe Guglielmetti Date: Tue, 18 Apr 2017 19:13:20 +0200 Subject: [PATCH] version 20170418 --- README.md | 35 ++++------------------------------- pdfminer/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 33 deletions(-) diff --git a/README.md b/README.md index beabc5d..60d9273 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,6 @@ PDF parser that can be used for other purposes than text analysis. * Webpage: https://github.com/pdfminer/ * Download (PyPI): https://pypi.python.org/pypi/pdfminer.six/ - * Demo WebApp: http://pdf2html.tabesugi.net:8080/ (broken?) Features @@ -36,14 +35,12 @@ Features How to Install -------------- - * Install Python 2.7 or newer. (Python 3.4 is supported in pdfminer.six) - * Download the source code. - * Unpack it. - * Run `setup.py`: + * Install Python 2.7 or newer. (Python 3.x is supported in pdfminer.six) + * Install - $ python setup.py install + $ pip install pdfminer.six - * Do the following test: + * Run the following test: $ pdf2txt.py samples/simple1.pdf @@ -76,35 +73,11 @@ but it's also possible to extract some meaningful contents (e.g. images). (For details, refer to the html document.) -API Changes ------------ - -As of November 2013, there were a few changes made to the PDFMiner API -prior to October 2013. This is the result of code restructuring. Here -is a list of the changes: - - * PDFDocument class is moved to pdfdocument.py. - * PDFDocument class now takes a PDFParser object as an argument. - PDFDocument.set_parser() and PDFParser.set_document() is removed. - * PDFPage class is moved to pdfpage.py - * process_pdf function is implemented as a class method PDFPage.get_pages. - - TODO ---- * PEP-8 and PEP-257 conformance. * Better documentation. - * Crypt stream filter support. - - -Related Projects ----------------- - - * pyPdf - * xpdf - * pdfbox - * mupdf Terms and Conditions diff --git a/pdfminer/__init__.py b/pdfminer/__init__.py index e8baa5a..84f9bff 100644 --- a/pdfminer/__init__.py +++ b/pdfminer/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -__version__ = '20170119' +__version__ = '20170418' if __name__ == '__main__': print (__version__) diff --git a/setup.py b/setup.py index e5ffecb..8ea6d06 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ PDF parser that can be used for other purposes instead of text analysis.''', license='MIT/X', author='Yusuke Shinyama + Philippe Guglielmetti', author_email='pdfminer@goulu.net', - url='http://github.com/goulu/pdfminer', + url='http://github.com/pdfminer/pdfminer', scripts=[ 'tools/pdf2txt.py', 'tools/dumppdf.py',