-
Notifications
You must be signed in to change notification settings - Fork 531
/
Copy path6-encrypting-and-decrypting-pdfs.py
44 lines (31 loc) · 1.13 KB
/
6-encrypting-and-decrypting-pdfs.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
# 14.6 - Encrypting and Decrypting PDFs
# Solutions to review exercises
# ***********
# Exercise 1
#
# In the Chapter 13 Practice Files folder there is a PDF file called
# `top_secret.pdf`. Encrypt the file with the user password
# `Unguessable`. Save the encrypted file as in your home directory as
# `top_secret_encrypted.pdf`.
# ***********
from pathlib import Path
from PyPDF2 import PdfFileReader, PdfFileWriter
pdf_path = Path.cwd() / "practice_files" / "top_secret.pdf"
pdf_reader = PdfFileReader(str(pdf_path))
pdf_writer = PdfFileWriter()
pdf_writer.appendPagesFromReader(pdf_reader)
pdf_writer.encrypt(user_pwd="Unguessable")
output_path = Path.home() / "top_secret_encrypted.pdf"
with output_path.open(mode="wb") as output_file:
pdf_writer.write(output_file)
# ***********
# Exercise 2
#
# Open the `top_secret_encrpyted.pdf` file you created in exercise 1,
# decrypt it, and print the text on the first page of the PDF.
# ***********
pdf_path = Path.home() / "top_secret_encrypted.pdf"
pdf_reader = PdfFileReader(str(pdf_path))
pdf_reader.decrypt("Unguessable")
first_page = pdf_reader.getPage(0)
print(first_page.extractText())