-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPdfAnnotations.py
executable file
·121 lines (111 loc) · 5.15 KB
/
PdfAnnotations.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#!/usr/bin/python3
## Python manipulation of PDF annotation text
## By Joseph T. Foley <foley AT RU.IS>
## Based upon Enno Groper's answer on Jan 25, 2021 at https://stackoverflow.com/questions/1106098/parse-annotations-from-a-pdf
## This code is modified to work with the newer python3 poppler API
## Ubuntu install
## apt install python3-poppler-qt5
## Helpful documentation on Poppler QT5
## Document https://poppler.freedesktop.org/api/qt5/classPoppler_1_1Document.html
## Page https://poppler.freedesktop.org/api/qt5/classPoppler_1_1Page.html
## Annotation https://poppler.freedesktop.org/api/qt5/classPoppler_1_1Annotation.html
## WSL binding issues: if you installed Qt and get an error about it not existing, try
## (from https://superuser.com/questions/1347723/arch-on-wsl-libqt5core-so-5-not-found-despite-being-installed )
## sudo strip --remove-section=.note.ABI-tag /usr/lib/x86_64-linux/libQt5Core.so.5
from popplerqt5 import Poppler
import sys
#import urllib ##might be useful for extracting from web documents
import os
from pathlib import PurePath##https://docs.python.org/3/library/pathlib.html#module-pathlib
import argparse
import logging
from datetime import datetime
class PdfAnnotations():
SubTypes = ("BASE", #0 base class
"Text", #1 Text callout (bubble)
"Line", #2 strike out
"Geometry", #3 geometric figure, like a rectangle or an ellipse.
"Highlight",#4 some areas of text being "highlighted"
"Stamp", #5 drawing a stamp on a page
"Ink", #6 ink path on a page
"Link", #7 link to something else (internal or external)
"Caret", #8 a symbol to indicate the presence of text.
"FileAttachment", #9 file embedded in the document
"Sound", #10 sound to be played when activated.
"Movie", #11 movie to be played when activated.
"Screen", #12 screen to be played when activated.
"Widget", #13 widget (form field) on a page
"RichMedia" #14 video or sound on a page.
)
def __init__(self, pdfpath,logger):
# load from file
self.logger = logger
self.annotations = []
self.document = Poppler.Document.load(str(pdfpath))
n_pages = self.document.numPages()
for i in range(n_pages):
page = self.document.page(i)
print(f"Processing page {i+1}")
for annotation in page.annotations():
subtype_num = annotation.subType()
subtype = self.SubTypes[subtype_num]
#print(f"{subtype_num}={subtype}: {annotation.contents()}")
anno_record = { "page": page, "subtype": subtype, "contents": annotation.contents() }
self.annotations.append(anno_record)
def extract_comments(self, subtypes={"Text","Highlight"}):
"""Dump out all of the comments in a list
For grading purposes, I only care about the Highlight and Text
annoation subtypes so they are default"""
commentlist = []
for annotation in self.annotations:
if annotation['subtype'] in subtypes:
commentlist.append(annotation['contents'])
return(commentlist)
def main():
"""Main program loop"""
print("""PDF Annotation Processor by Joseph. T. Foley<foley AT ru DOT is>
From https://github.com/foleyj2/teaching-tools""")
parser = argparse.ArgumentParser(
description="Extract comments from PDF.")
# parser.add_argument('--maxval', type=Decimal,
# help='Max value for each grading element.')
parser.add_argument('filepaths', nargs=argparse.REMAINDER)
parser.add_argument('--log', default="INFO",
help='Log level: Number or DEBUG, INFO, WARNING, ERROR')
parser.add_argument('--ext', default=".cmt",
help='Extension for output')
args = parser.parse_args()
numeric_level = getattr(logging, args.log.upper(), None)
if not isinstance(numeric_level, int):
raise ValueError('Invalid log level: %s' % args.log)
print(f"Log level: {numeric_level}")
logger = logging.getLogger("app")
logger.setLevel(logging.INFO)
# log everything to file
logpath = 'PdfAnnotation-{:%Y%m%d-%H%M%S}.log'.format(datetime.now())
fh = logging.FileHandler(logpath)
fh.setLevel(logging.DEBUG)
# log to console
ch = logging.StreamHandler()
ch.setLevel(numeric_level)
# create formatter and add to handlers
consoleformatter = logging.Formatter('%(message)s')
ch.setFormatter(consoleformatter)
spamformatter = logging.Formatter('%(asctime)s %(name)s[%(levelname)s] %(message)s')
fh.setFormatter(spamformatter)
# add the handlers to logger
logger.addHandler(ch)
logger.addHandler(fh)
logger.info("Creating PdfAnnotations log file %s", logpath)
for filepath in args.filepaths:
# filename pre-processing for output
inpath = PurePath(filepath)
outpath = inpath.with_suffix(args.ext)
print(f"File: {inpath} -> {outpath}")
PA = PdfAnnotations(filepath,logger)
COMMENTS = PA.extract_comments()
with open(outpath, "w") as outfd:
for comment in COMMENTS:
print(comment)
if __name__ == "__main__":
main()