├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── mistral_ocr_pdf.py └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reorx/mistral_ocr_pdf/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reorx/mistral_ocr_pdf/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reorx/mistral_ocr_pdf/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reorx/mistral_ocr_pdf/HEAD/README.md -------------------------------------------------------------------------------- /mistral_ocr_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reorx/mistral_ocr_pdf/HEAD/mistral_ocr_pdf.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reorx/mistral_ocr_pdf/HEAD/pyproject.toml --------------------------------------------------------------------------------