Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wordpress-seo domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/vinascript/html/wp-includes/functions.php on line 6114
Thiết lập mật khẩu cho file pdf sử dụng Python - VinaScript

Latest Post

Triển khai dự án PHP, Mysql với Nginx trên Docker Tìm hiểu về HTML – Ưu điểm, nhược điểm và cách hoạt động của HTML

Deprecated: Implicit conversion from float 19.6 to int loses precision in /var/www/vinascript/html/wp-content/plugins/internal-links/core/links/text-to-link-converter-factory.php on line 36

Hôm nay, tôi muốn chia sẻ với bạn một nhiệm vụ quan trọng mà tôi vừa được giao, đó là việc đặt mật khẩu cho các tệp payslip (bảng lương) bằng Python 3. Tôi sẽ chia sẻ source code mà tôi đã viết để thực hiện nhiệm vụ này, sử dụng thư viện PyPDF2.

Cài đặt package PyPDF2

PyPDF2 là một package được sử dụng phổ biến nhất khi thao tác với file PDF. Việc cài đặt rất đơn giản bằng pip

pip install PyPDF2

Trong trường hợp bạn sử dụng hệ điều hành Ubuntu thì có thể tham khảo lệnh cài đặt sau:

sudo apt install python3-pypdf2

Đặt mật khẩu cho file pdf bằng PyPDF2

Vào việc chính các bạn tham khảo đoạn source code sau để đặt mật khẩu cho file pdf. VD: input.pdf

from PyPDF2 import PdfFileReader, PdfFileWriter
with open("input.pdf", "rb") as in_file:
    input_pdf = PdfFileReader(in_file)

    output_pdf = PdfFileWriter()
    output_pdf.appendPagesFromReader(input_pdf)
    output_pdf.encrypt("password")

    with open("output.pdf", "wb") as out_file:
        output_pdf.write(out_file)

Nó sẽ đặt mật khẩu và ghi ra file output.pdf.

Các bạn muốn có thêm các xử lý với file pdf xin vui lòng tham khảo tài liệu về PyPDF2 tại đây.

Để lại một bình luận

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *