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