Advertisement
Guest User

E-mails: Dutch EU parlementariers

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