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.0.tar.gz (61.9 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.0-py3-none-any.whl (45.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: docconvert_local-2.0.0.tar.gz
  • Upload date:
  • Size: 61.9 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.0.tar.gz
Algorithm Hash digest
SHA256 96455dd2a7b9db4162997fd04cb720f368f79f81fd5c23b079480cec1382fb7a
MD5 32d8ce062949f8fdd1094e93888eecc2
BLAKE2b-256 fe76c0bddd0d98f55689f42b94dfefc041707cd72faa035e6334712d4bae64fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docconvert_local-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6f6ffa36778cbf64524571b149fb401632a6968bab11b1721937ef3f16309b2a
MD5 6cf82951787973ebe4bbdd1ffbe247df
BLAKE2b-256 bea4b892cdf00ddd814e4a7290b4dd040abc2424685a1bfb510e072650f71cb5

See more details on using hashes here.

Release history Release notifications | RSS feed

2.0.3

2 files

2.0.2

2 files

2.0.1

2 files

This release

2.0.0 This release

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