Start
Install Docling as a Python library with your favorite package manager:
pip install docling
Run the CLI directly from your terminal:
docling https://arxiv.org/pdf/2206.01062
Code a document conversion as part of a Python application:
from docling.document_converter import DocumentConverter
source = "https://arxiv.org/pdf/2408.09869"
converter = DocumentConverter()
doc = converter.convert(source).document
print(doc.export_to_markdown())
Deploy it as
Docling Serve
Enable an agent via
Docling MCP
Features
Import many document formats into a unified and structured Docling Document, including scanned pages via an OCR engine of your choice.
Export a parsed document to formats that simplify processing and ingestion into AI, RAG, and agentic systems.
Extract document components and their properties from the Docling Document.