Skip to main content

Redlines

Repository banner image PyPI - Version GitHub Release Date - Published_At GitHub last commit (by committer) PyPI - License

Redlines compares two strings/text and produces structured output showing their differences. Changes are represented with strike-throughs and highlights, similar to Microsoft Word's track changes. The output includes detailed change information, positions, and statistics for programmatic use.

Supports multiple output formats: JSON (default, with structured change data and statistics), Markdown, HTML, and rich (terminal display).

Quick Start

# Install
pip install redlines

# CLI: Compare two texts (outputs JSON by default)
redlines "The quick brown fox jumps over the lazy dog." "The quick brown fox walks past the lazy dog."

# Python: Compare and get markdown
from redlines import Redlines
test = Redlines(
    "The quick brown fox jumps over the lazy dog.",
    "The quick brown fox walks past the lazy dog.",
    markdown_style="none"
)
print(test.output_markdown)
# Output: The quick brown fox <del>jumps over </del><ins>walks past </ins>the lazy dog.

Supported: Python 3.10 - 3.14 (Python 3.8 and 3.9 support dropped)

Optional dependencies:

  • pip install redlines[pdf] for PDF file comparison
  • pip install redlines[nupunkt] for advanced sentence boundary detection (Python 3.11+, handles abbreviations, citations, URLs)
  • pip install redlines[levenshtein] for additional statistics

Usage

Python API

The library contains one class: Redlines, which is used to compare text.

Basic comparison:

from redlines import Redlines

test = Redlines(
    "The quick brown fox jumps over the lazy dog.",
    "The quick brown fox walks past the lazy dog.",
    markdown_style="none"
)
assert (
    test.output_markdown
    == "The quick brown fox <del>jumps over </del><ins>walks past </ins>the lazy dog."
)

Multiple comparisons with one source:

from redlines import Redlines

test = Redlines("The quick brown fox jumps over the lazy dog.", markdown_style="none")
assert (
    test.compare("The quick brown fox walks past the lazy dog.")
    == "The quick brown fox <del>jumps over </del><ins>walks past </ins>the lazy dog."
)

assert (
    test.compare("The quick brown fox jumps over the dog.")
    == "The quick brown fox jumps over the <del>lazy </del>dog."
)

JSON output with structured data:

from redlines import Redlines

test = Redlines(
    "The quick brown fox jumps over the lazy dog.",
    "The quick brown fox walks past the lazy dog."
)

# Get JSON with changes, positions, and statistics
print(test.output_json(pretty=True))

CLI

Basic usage (outputs JSON by default):

redlines "old text" "new text"
redlines file1.txt file2.txt --pretty

Output formats:

redlines text "source" "test"              # Rich terminal display
redlines markdown file1.txt file2.txt      # Markdown output
redlines stats old.txt new.txt             # Statistics only

Run redlines --help or redlines guide for the Agent Integration Guide. See also: redlines-textual.

Advanced Features

Custom Processors

Use NupunktProcessor for sentence-level tokenization with intelligent boundary detection:

from redlines import Redlines
from redlines.processor import NupunktProcessor

processor = NupunktProcessor()
test = Redlines("Dr. Smith said hello.", "Dr. Smith said hi.", processor=processor)

Sentence mode preserves the input's paragraph boundaries (fixed in 0.6.2): sentences are anchored within their paragraph, so the output is not reflowed one sentence per paragraph.

Use NupunktProcessor for: Legal/technical documents with abbreviations, URLs, citations, decimals Use WholeDocumentProcessor (default) for: Simple documents, speed-critical tasks (5-6x faster), paragraph-level granularity

See demo comparison for benchmarks.

For AI Agents & Automation

🤖 Using with AI coding agents? See the Agent Integration Guide for JSON schemas, automation patterns, error handling, and runnable examples. Agents fetching documentation as text can start at llms.txt.

Documentation & Resources

Full Documentation: https://houfu.github.io/redlines

Example Use Cases:

License

MIT License

Download files

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

Source Distribution

redlines-0.6.2.tar.gz (517.6 kB view details)

Uploaded Source

Built Distribution

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

redlines-0.6.2-py3-none-any.whl (32.4 kB view details)

Uploaded Python 3

File details

Details for the file redlines-0.6.2.tar.gz.

File metadata

  • Download URL: redlines-0.6.2.tar.gz
  • Upload date:
  • Size: 517.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for redlines-0.6.2.tar.gz
Algorithm Hash digest
SHA256 1679acdef2ac97e3d02e43497c163e580b68a57fab0f753e6adc52508ce3cd69
MD5 3913c75e1f01aeb97f789a38f545d306
BLAKE2b-256 ecd9bdd4afb006d9182bd97833924bbbd22a77bf42b62c31afbc4327ee729178

See more details on using hashes here.

Provenance

The following attestation bundles were made for redlines-0.6.2.tar.gz:

Publisher: python-publish.yml on houfu/redlines

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file redlines-0.6.2-py3-none-any.whl.

File metadata

  • Download URL: redlines-0.6.2-py3-none-any.whl
  • Upload date:
  • Size: 32.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for redlines-0.6.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a1f72897f24ce6a612344497d54a4534393383a01a213303a0f01f038bb795f2
MD5 2e3b095d1604b366c47b3b192cb65ba2
BLAKE2b-256 b973eea007f7c8ab13c668a6d0984c0df6601f7379b80182ed265a0d7049d574

See more details on using hashes here.

Provenance

The following attestation bundles were made for redlines-0.6.2-py3-none-any.whl:

Publisher: python-publish.yml on houfu/redlines

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.6.2 This release

2 files

0.6.1

2 files

0.6.0

2 files

0.5.2

2 files

0.5.1

2 files

0.5.0

2 files

0.4.2

2 files

0.4.0

2 files

0.3.0

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

0.1.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