mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-27 09:34:42 +00:00
Merge pull request #623 from cjmayo/pdfminer
Test and recommend pdfminer.six for PdfParser
This commit is contained in:
commit
58c874f453
4 changed files with 4 additions and 4 deletions
|
|
@ -1,7 +1,7 @@
|
|||
# for testing:
|
||||
miniboa
|
||||
parameterized
|
||||
pdfminer
|
||||
pdfminer.six
|
||||
pyftpdlib
|
||||
pyopenssl
|
||||
pytest
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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")
|
||||
|
|
|
|||
2
tox.ini
2
tox.ini
|
|
@ -5,7 +5,7 @@ envlist = py37, py38, py39, py310
|
|||
deps =
|
||||
pyftpdlib
|
||||
parameterized
|
||||
pdfminer
|
||||
pdfminer.six
|
||||
pyopenssl
|
||||
pytest-xdist
|
||||
pytest-cov
|
||||
|
|
|
|||
Loading…
Reference in a new issue