forked from pdfminer/pdfminer.six
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
David Fraser
committed
Sep 15, 2020
1 parent
bc494ff
commit 1acb8cf
Showing
43 changed files
with
4,704 additions
and
4,531 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
language: python | ||
python: | ||
- "2.7" | ||
- "3.4" | ||
- "3.5" | ||
- "3.6" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,27 @@ | ||
# -*- coding: utf-8 -*- | ||
""" | ||
Fork of PDFMiner using six for Python 2+3 compatibility | ||
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 to obtain the exact location of texts 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 instead of text analysis. | ||
""" | ||
import sys | ||
import warnings | ||
|
||
__version__ = '20200121' | ||
|
||
|
||
if sys.version_info < (3, 0): | ||
warnings.warn('On January 1st, 2020, ' | ||
'pdfminer.six will stop supporting Python 2. ' | ||
'Please upgrade to Python 3. ' | ||
'For more information see ' | ||
'https://github.com/pdfminer/pdfminer.six/issues/194') | ||
|
||
if __name__ == '__main__': | ||
print(__version__) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.