Contents:
from pathlib import Path [docs] class PDF: """Data structure representing a PDF file.""" def __init__(self, path: Path): [docs] self.path = path [docs] def __str__(self) -> str: return str(self.path)