https://github.com/5monkeys/python-email-reply-parser
Python port of https://github.com/github/email_reply_parser
https://github.com/5monkeys/python-email-reply-parser
Last synced: about 1 year ago
JSON representation
Python port of https://github.com/github/email_reply_parser
- Host: GitHub
- URL: https://github.com/5monkeys/python-email-reply-parser
- Owner: 5monkeys
- License: mit
- Created: 2015-07-28T12:13:50.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-07-30T13:02:13.000Z (almost 11 years ago)
- Last Synced: 2025-04-14T01:15:20.716Z (about 1 year ago)
- Language: Python
- Size: 160 KB
- Stars: 7
- Watchers: 11
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# python-email-reply-parser
[](https://travis-ci.org/antonagestam/python-email-reply-parser)
Python port of https://github.com/github/email_reply_parser, including most of the test suite.
## Installation
PyPI version is coming soon, for now you can install from source:
``` shell
$ pip install -e git+https://github.com/antonagestam/python-email-reply-parser.git#egg=email_reply_parser
```
## Usage
``` python
>>> from email_reply_parser import parse_reply
>>> print(parse_reply("""Hi Anton,
...
... I'm totally fine, how are you?
...
... On Tue, Jul 28, 2015 at 11:38 AM, Anton Agestam
... wrote:
...
... > Hi there Jane,
... > How are you today?
... > —
... > Anton Agestam
...
... """))
Hi Anton,
I'm totally fine, how are you?
```