Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nymann/pdf-information

PDF Information as a dataclass using pdfinfo
https://github.com/nymann/pdf-information

Last synced: 20 days ago
JSON representation

PDF Information as a dataclass using pdfinfo

Awesome Lists containing this project

README

        

# PDF Information

Maps output of `pdfinfo` to a dataclass.

## Usage

```py
from pathlib import Path
from pdf_information import PDFInfo

pdf_file = Path("pdf_files/some_file.pdf")
pdf_info = PDFInfo.from_cmd(pdf_file=pdf_file)
```

## Development

For help getting started developing check [DEVELOPMENT.md](DEVELOPMENT.md)