EN DE
← ← Back to Index

ocr-and-documents

productivity › ocr-and-documents v2.3.0
PDF Documents Research Arxiv Text-Extraction OCR

Description

Extract text from PDFs/scans (pymupdf, marker-pdf).

Relevance to Our Projects

Extract text from PDFs/scans (pymupdf, marker-pdf).

SKILL.md Preview

# PDF & Document Extraction

For DOCX: use `python-docx` (parses actual document structure, far better than OCR).
For PPTX: see the `powerpoint` skill (uses `python-pptx` with full slide/notes support).
This skill covers **PDFs and scanned documents**.

## Step 1: Remote URL Available?

If the document has a URL, **always try `web_extract` first**:

```
web_extract(urls=["https://arxiv.org/pdf/2402.03300"])
web_extract(urls=["https://example.com/report.pdf"])
```

This handles PDF-to-markdown co

← ← Back to Index