Created
January 18, 2017 07:54
-
-
Save bzamecnik/1abb64affb21322256f1c4ebbb59a364 to your computer and use it in GitHub Desktop.
Decrypt password-protected PDF in Python.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Decrypt password-protected PDF in Python. | |
# cleaned-up version of http://stackoverflow.com/a/26537710/329263 | |
# | |
# Requirements: | |
# pip install PyPDF2 | |
# | |
# Usage: decrypt_pdf('encrypted.pdf', 'decrypted.pdf', 'secret_password') | |
from PyPDF2 import PdfFileReader, PdfFileWriter | |
def decrypt_pdf(input_path, output_path, password): | |
with open(input_path, 'rb') as input_file, \ | |
open(output_path, 'wb') as output_file: | |
reader = PdfFileReader(input_file) | |
reader.decrypt(password) | |
writer = PdfFileWriter() | |
for i in range(reader.getNumPages()): | |
writer.addPage(reader.getPage(i)) | |
writer.write(output_file) | |
if __name__ == '__main__': | |
# example usage: | |
decrypt_pdf('encrypted.pdf', 'decrypted.pdf', 'secret_password') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks @bzamecnik . My pdf files do not ask for a password to open them, only this error appears in any pdf viewer when I try to open.
