--- id: email-reply-parser version: "0.5.12" license: MIT license_treatment: permissive maintenance: dormant --- # email-reply-parser — Email reply parser License: permissive · Maintenance: dormant · Downloads: 2.0M/mo ## What it is and what it does Email Reply Parser is a Python port of GitHub's email reply parsing library. It solves the problem of extracting only the most recent user reply from an email thread, discarding quoted text, forwarded messages, and previous replies that different email clients format in incompatible ways. The library handles the messy reality that email clients wrap and quote replies differently, making naive text extraction unreliable. You pass a full email message as a string to either EmailReplyParser.read() to get a parsed object or EmailReplyParser.parse_reply() to get just the reply text directly. The library has no runtime dependencies and works across Python 2 and 3, making it lightweight and easy to integrate into transaction email processing, support ticket systems, or any workflow where you need to isolate user responses from notification boilerplate. Use it for: - Extract customer replies from support ticket notification emails to feed into a ticketing system - Parse user responses to transactional emails to capture feedback without boilerplate - Build email-to-task automation that needs only the new message, not the full thread history - Process incoming email for systems that should respond only to new content - Clean email archives by isolating unique replies for deduplication or storage ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Extracts the most recent reply from an email thread, stripping quoted text and previous messages that email clients format differently. Yes, if you need to extract replies from email threads. The package is stable, has no dependencies, and carries no security vulnerabilities. However, maintenance is dormant—last release was 2020-10-07—so it will not receive updates for modern email formats or Python versions beyond 3.8. Use it for established, low-change email parsing workflows; avoid it if you need active support. ## Install pip install email-reply-parser uv add email-reply-parser poetry add email-reply-parser ## Installing email-reply-parser Before you install: Installs with no dependencies. Maintenance is dormant—last release was 2020-10-07 and last commit was 2024-07-22—but the package is stable with no active development planned. License in practice: MIT license is permissive; you can use, modify, and distribute this package freely in commercial and private projects with minimal restrictions. Quickstart: pip install email-reply-parser from email_reply_parser import EmailReplyParser email_message = "Your email text here" reply = EmailReplyParser.parse_reply(email_message) Verify before relying: - Whether the package handles modern email client formats introduced after the latest release - Compatibility with Python versions beyond 3.8 (classifiers stop at 3.8) ## Package facts - License: MIT (permissive) - Python support: unspecified - Install friction: low - Maintenance: dormant - Downloads: 2.0M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags email reply extraction, parse email thread, get last email reply, email message parsing, strip email quotes, email conversation parsing, extract reply from thread, email-parsing, text-extraction, low-dependency [View on SkillFed](https://skillfed.io/packages/email-reply-parser) · [View on PyPI](https://pypi.org/project/email-reply-parser/)