it worked very effectively on my computer, I hope it will work well on your computer
#!/usr/bin/python
#Collects email addr from database
#and writes them to a file.
import sys, re, sets
if len(sys.argv) != 3:
print "\nUsage: ./dumpemail.py <database> <save file>"
print "Example:"
print...