Skip to main content

DocConvert

Clean Markdown & structured data from Excel & Word — built for RAG pipelines and LLM workflows. Works 100% offline. No API keys. No data leaves your machine.

PyPI version License: MIT Python 3.10+ Build Downloads Stars

Why DocConvert

Most document-to-Markdown tools convert the file — they don't clean it. Raw outputs are full of page numbers, duplicate headers, and whitespace noise that eats your context window and dilutes retrieval quality.

DocConvert was built for people who feed documents into LLMs and need every token to count.

Feature DocConvert MarkItDown Pandas + python-docx
Legacy .doc support
Excel merged cells (rowspan/colspan) ⚠️ Manual
Configurable cleaning pipeline ✅ 4 rules, toggle any
Batch + specific sheet selection
Desktop GUI (no terminal needed)
PDF / PPT / audio support
MCP server / Claude integration
100% offline, no cloud dependency

Choose DocConvert if: you work with Excel/Word documents inside an organization, need legacy .doc support, or want a configurable cleaning pipeline before feeding docs into a RAG system.

Choose MarkItDown if: you need PDF, PPT, images, or audio conversion, or want MCP/Claude Desktop integration out of the box.

Use Cases

  • RAG ingestion — clean Excel financial reports and Word contracts into Markdown ready for embedding

  • LLM context prep — strip page numbers, duplicates, and noise before chunking

  • Offline compliance — convert sensitive documents without uploading to any cloud service

  • Batch automation — convert entire folders of reports into a structured directory

Installation

pip install docconvert-local

Optional extras:

# Legacy .doc support (Linux / macOS only)
pip install docconvert-local[doc]

# Full feature set including build tools
pip install docconvert-local[all]

Quick Start

GUI (interactive)

python main.py

CLI (batch / scripting)

# Single file → clean Markdown
python main.py convert input.xlsx --format md

# Batch convert with enhanced cleaning (recommended for RAG)
python main.py convert input.docx --format md --enhanced

# Multiple files → HTML into output/
python main.py convert file1.xlsx file2.docx --format html -o ./output

# Pick specific Excel sheets → JSON
python main.py convert input.xlsx --format json --sheet "Sheet1" --sheet "Sheet2"

Python API

from docconvert.controller import ConversionController

controller = ConversionController()
results = controller.convert_files(
    files=["input.xlsx", "report.docx"],
    output_fmt="md",
    enhanced_md=True,
)

for name, path, error in results:
    if error:
        print(f"Failed: {name}{error}")
    else:
        print(f"OK: {name}{path}")

RAG Pipeline Integration

from docconvert.controller import ConversionController
from langchain.text_splitter import RecursiveCharacterTextSplitter

# Convert and clean
controller = ConversionController()
docs = []
for name, path, error in controller.convert_files(
    files=["contracts/*.docx"],
    output_fmt="md",
    enhanced_md=True,
):
    if not error:
        with open(path) as f:
            docs.append(f.read())

# Chunk and embed — noise already removed
splitter = RecursiveCharacterTextSplitter(chunk_size=1000, chunk_overlap=100)
chunks = splitter.split_text("\n".join(docs))

Output Preview

Input — an Excel sheet with merged cells:

Region Q1 Q2
North 120 150
South 90 200

Markdown output (auto-cleaned):

## Region    Q1    Q2
North       120   150
South        90   200

JSON output:

{
  "Region": ["North", "South"],
  "Q1": [120, 90],
  "Q2": [150, 200]
}

Smart Cleaning Pipeline

The --enhanced flag runs a configurable cleaning pass that removes common document noise before output. Each rule is independently toggleable:

from docconvert.config import AppConfig

config = AppConfig(
    cleaning_rules={
        "remove_page_numbers": True,    # strips 1, 2, 3… and "Page X of Y"
        "remove_duplicate_headers": True,  # deduplicates repeating section titles
        "remove_empty_lines": True,     # collapses excessive blank lines
        "normalize_spaces": True,       # single-spaces text, preserves tables
    }
)

All four rules are enabled by default with --enhanced. Set any to False to keep the raw output.

Features

  • Excel — Sheet selection, merged cells (rowspan/colspan), HTML / Markdown / JSON

  • Word.docx via python-docx + mammoth, legacy .doc via textract

  • Smart Markdown — Removes page numbers, duplicate headers, collapses blank lines; all rules configurable

  • GUI — Tkinter desktop app with file list, preview, progress bar, overwrite protection

  • CLI — One-line batch conversion via argparse

  • Python API — Programmatic control with full type hints

  • Executable releases — Download a standalone .exe for Windows / macOS / Linux, no Python install needed

Releases (no Python needed)

Standalone executables for Windows, macOS, and Linux are built automatically on each tag push. Download them from Releases.

Project Layout

docconvert/
  converters/     # Excel / Word / .doc readers
  cleaners/       # Markdown cleaning pipeline
  exporters/      # HTML / Markdown / JSON output
  controller/     # Orchestration, async, overwrite checks
  gui/            # Tkinter desktop app
  parsers/, chunkers/  # Extension points
tests/
main.py           # GUI / CLI entry point

Contributing

See CONTRIBUTING.md.

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

docconvert_local-2.0.1.tar.gz (62.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

docconvert_local-2.0.1-py3-none-any.whl (45.9 kB view details)

Uploaded Python 3

File details

Details for the file docconvert_local-2.0.1.tar.gz.

File metadata

  • Download URL: docconvert_local-2.0.1.tar.gz
  • Upload date:
  • Size: 62.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.11.16

File hashes

Hashes for docconvert_local-2.0.1.tar.gz
Algorithm Hash digest
SHA256 cbd8bd36f9e8bdd57958514f9e8bd8e6ef8aa3683871b8fb282c0078a0f71e5a
MD5 dcbadf4792e68c5606e9fd9314d0cfba
BLAKE2b-256 68d10dbbc56f2ce3054c9f615d3ca52fc46e2962e0f6590f7a63f3d10fef4f66

See more details on using hashes here.

File details

Details for the file docconvert_local-2.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for docconvert_local-2.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 83c2d61b7164fbb329cc9919e00ee6fb386a35841adf943f2cf194281d025f85
MD5 12883ae412510d0919cd2f069ca6a330
BLAKE2b-256 144b22c87a633417582417c556bcb987d8787c67cdf8ee70dc2dc4039b36267f

See more details on using hashes here.

Release history Release notifications | RSS feed

2.0.3

2 files

2.0.2

2 files

This release

2.0.1 This release

2 files

2.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page