Created
August 2, 2018 14:03
-
-
Save kushalchauhan98/f2d65567c924d2a4f7e3a53f46dec64c to your computer and use it in GitHub Desktop.
Email Cleaner
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
can i see the modified version of that plz?