Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/calebmadrigal/email-extractor
Extracts emails from stdin and prints them out as a comma-separated list.
https://github.com/calebmadrigal/email-extractor
Last synced: about 1 month ago
JSON representation
Extracts emails from stdin and prints them out as a comma-separated list.
- Host: GitHub
- URL: https://github.com/calebmadrigal/email-extractor
- Owner: calebmadrigal
- License: mit
- Created: 2014-08-02T17:06:14.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-02T01:25:48.000Z (almost 10 years ago)
- Last Synced: 2024-04-15T06:53:47.338Z (7 months ago)
- Language: Python
- Size: 156 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
email-extractor
===============Extracts emails from stdin and prints them out as a comma-separated list.
## Examples
$ cat testdata.txt | ./email_extractor.py
[email protected], [email protected], [email protected]$ echo "several emails [email protected] more stuff [email protected] blah blah blah" | ./email_extractor.py
[email protected], [email protected]## Motivation
I often need to send emails to groups of people, whose emails I have in some unorganized format. This script lets me just paste that unorganized data containing emails, and it outputs a comma-separated list I can just paste into my email program.