Merge pull request #623 from cjmayo/pdfminer

Test and recommend pdfminer.six for PdfParser
This commit is contained in:
Chris Mayo 2022-06-23 19:24:52 +01:00 committed by GitHub
commit 58c874f453
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
# for testing:
miniboa
parameterized
pdfminer
pdfminer.six
pyftpdlib
pyopenssl
pytest

View file

@ -525,7 +525,7 @@ daemon must be installed.
PdfParser
^^^^^^^^^
Parse PDF files for URLs to check. Needs the :pypi:`pdfminer` Python package
Parse PDF files for URLs to check. Needs the :pypi:`pdfminer.six` Python package
installed.
WordParser

View file

@ -115,7 +115,7 @@ class WordParser(_ParserPlugin):
"""Word parsing plugin."""
def __init__(self, config):
"""Check for pdfminer."""
"""Check for Word."""
init_win32com()
if not has_word():
log.warn(LOG_PLUGIN, "Microsoft Word not found for WordParser plugin")

View file

@ -5,7 +5,7 @@ envlist = py37, py38, py39, py310
deps =
pyftpdlib
parameterized
pdfminer
pdfminer.six
pyopenssl
pytest-xdist
pytest-cov