Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Generated by script below, a.txt source of:www.laquadrature.net/wiki/MEPs_NL
- 1 import os;
- 2 import re;
- 3 import sys;
- 4
- 5 f = open('a.txt', 'r').read()
- 6 re_email = re.compile('[a-zA-Z].*?\(at\)europarl.europa.eu')
- 7 for email in re_email.findall(f):
- 8 print email.replace('(at)','@')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement