closeio / quotequail

a library that identifies quoted text in email messages
MIT License
58 stars 23 forks source link

========== quotequail

A library that identifies quoted text in plain text and HTML email messages. quotequail has no mandatory dependencies, however using HTML methods require libxml.

(Interested in working on projects like this? Close.io is looking for great engineers to join our team)

.. _Close.io: http://close.io .. _great engineers: http://jobs.close.io

Introduction

quotequail comes with the functions listed below which are documented in detail in quotequail's __init__.py.

Examples

.. code:: python

In [1]: import quotequail

In [2]: quotequail.quote("""Hello world.

On 2012-10-16 at 17:02 , Someone someone@example.com wrote:

Some quoted text """) Out[2]: [(True, 'Hello world.\n\nOn 2012-10-16 at 17:02 , Someone someone@example.com wrote:'), (False, '\n> Some quoted text\n')]

In [3]: quotequail.unwrap("""Hello

Begin forwarded message:

From: "Some One" some.one@example.com Date: 1. August 2011 23:28:15 GMT-07:00 To: "Other Person" other@example.com Subject: AW: AW: Some subject

Original text

Text bottom """)) Out[3]: {'date': '1. August 2011 23:28:15 GMT-07:00', 'from': '"Some One" some.one@example.com', 'subject': 'AW: AW: Some subject', 'text': 'Original text', 'text_bottom': 'Text bottom', 'text_top': 'Hello', 'to': '"Other Person" other@example.com', 'type': 'forward'}