Skip to content

Instantly share code, notes, and snippets.

@kushalchauhan98
Created August 2, 2018 14:03
Show Gist options
  • Save kushalchauhan98/f2d65567c924d2a4f7e3a53f46dec64c to your computer and use it in GitHub Desktop.
Save kushalchauhan98/f2d65567c924d2a4f7e3a53f46dec64c to your computer and use it in GitHub Desktop.
Email Cleaner
# clean() is a modified version of extract_signature() found in bruteforce.py in the GitHub repository linked above
cleaned_email, _ = clean(email)
lines = cleaned_email.split('\n')
lines = [line for line in lines if line != '']
cleaned_email = ' '.join(lines)
@arjhunmohanarangam
Copy link

can i see the modified version of that plz?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment