2020-03-03 02:15:35 -08:00
|
|
|
#!/usr/bin/env python3
|
2020-08-05 00:12:44 -07:00
|
|
|
# Copyright 2016 findingorder: https://github.com/findingorder
|
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
|
|
# copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
# SOFTWARE.
|
2020-03-03 02:15:35 -08:00
|
|
|
|
|
|
|
# This script must be edited to meet your needs.
|
|
|
|
|
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
import ocrmypdf
|
|
|
|
|
|
|
|
# pylint: disable=logging-format-interpolation
|
|
|
|
# pylint: disable=logging-not-lazy
|
|
|
|
|
|
|
|
script_dir = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
print(script_dir + '/batch.py: Start')
|
|
|
|
|
|
|
|
if len(sys.argv) > 1:
|
|
|
|
start_dir = sys.argv[1]
|
|
|
|
else:
|
|
|
|
start_dir = '.'
|
|
|
|
|
|
|
|
if len(sys.argv) > 2:
|
|
|
|
log_file = sys.argv[2]
|
|
|
|
else:
|
|
|
|
log_file = script_dir + '/ocr-tree.log'
|
|
|
|
|
|
|
|
logging.basicConfig(
|
|
|
|
level=logging.INFO,
|
|
|
|
format='%(asctime)s %(message)s',
|
|
|
|
filename=log_file,
|
|
|
|
filemode='w',
|
|
|
|
)
|
|
|
|
|
|
|
|
ocrmypdf.configure_logging(ocrmypdf.Verbosity.default)
|
|
|
|
|
2021-09-21 16:37:03 -07:00
|
|
|
for dir_name, _subdirs, file_list in os.walk(start_dir):
|
2020-03-03 02:15:35 -08:00
|
|
|
logging.info(dir_name + '\n')
|
|
|
|
os.chdir(dir_name)
|
|
|
|
for filename in file_list:
|
|
|
|
file_ext = os.path.splitext(filename)[1]
|
|
|
|
if file_ext == '.pdf':
|
|
|
|
full_path = dir_name + '/' + filename
|
|
|
|
print(full_path)
|
|
|
|
result = ocrmypdf.ocr(filename, filename, deskew=True)
|
|
|
|
if result == ocrmypdf.ExitCode.already_done_ocr:
|
|
|
|
print("Skipped document because it already contained text")
|
|
|
|
elif result == ocrmypdf.ExitCode.ok:
|
|
|
|
print("OCR complete")
|
|
|
|
logging.info(result)
|