Skip to content
Novus Examples
pdf2.4 KB

Password-protected PDF (encrypted)

An encrypted PDF protected with the openly-published sample password “novus-sample” — printing is allowed, editing denied. A fixture for testing password-prompt handling, decryption, and permission flags. There is nothing secret inside.

pdf

application/pdf

2.4 KB
Pages
1
Encryption
PDF standard security
User Password
novus-sample
Permissions
print allowed, edit denied

Binary pdf — no in-browser preview. Download it above to open in a compatible application.

Specifications

Pages
1
Encryption
PDF standard security
User Password
novus-sample
Permissions
print allowed, edit denied

What is a .pdf file?

PDF (Portable Document Format) is a page-oriented document format that preserves fixed layout, fonts, vector and raster graphics, and text across platforms. It can also embed forms, annotations, attachments, and digital signatures. It is the de facto standard for finished, print-ready documents.

How to use this file

Use an example PDF to test text extraction, rendering, page-count and metadata parsing, form-field handling, and conversion or OCR pipelines.

Code examples

import pdfplumber  # pip install pdfplumber

with pdfplumber.open("password-protected.pdf") as pdf:
    print(len(pdf.pages), "pages")
    print(pdf.pages[0].extract_text())

Generated by generation/docs_realworld.py. Free for any use, no attribution required — license.