Merge branch 'master' of github.com:jbarlow83/OCRmyPDF

This commit is contained in:
James R. Barlow
2021-08-04 02:49:23 -07:00
4 changed files with 6 additions and 5 deletions
+2 -2
View File
@@ -41,8 +41,8 @@ layer. First, it runs all PDFs through
`pikepdf <https://github.com/pikepdf/pikepdf>`__, a library based on
`qpdf <https://github.com/qpdf/qpdf>`__, a program that repairs PDFs
with syntax errors. This is done because, in the author's experience, a
significant number of PDFs in the wild especially those created by
scanners are not well-formed files. qpdf makes it more likely that
significant number of PDFs in the wild, especially those created by
scanners, are not well-formed files. qpdf makes it more likely that
OCRmyPDF will succeed, but offers no security guarantees. qpdf is also
used to split the PDF into single page PDFs.
+1
View File
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
# Copyright (C) 2019 Ian Alexander: https://github.com/ianalexander
# Copyright (C) 2020 James R Barlow: https://github.com/jbarlow83
#
+1 -1
View File
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
# webservice.py wrapper for OCRmyPDF
# Copyright (C) 2019 James R. Barlow: github.com/jbarlow83
#
@@ -36,7 +37,6 @@ from flask import (
redirect,
request,
send_from_directory,
url_for,
)
from werkzeug.utils import secure_filename
+2 -2
View File
@@ -84,9 +84,9 @@ docs =
extended_test =
PyMuPDF == 1.13.4
watcher =
watchdog >= 1.0.2, < 2
watchdog >= 1.0.2, < 3
webservice =
Flask >= 1, < 2
Flask >= 1, < 3
[options.entry_points]
console_scripts =