We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue seems to be around this defangged format:
firstname[.]lastname[@]domainname[.]org
When refanged, seeing the following:
[email protected]
For some reason, the username format of first.last is getting chopped off to just last.
The text was updated successfully, but these errors were encountered:
Actually, this might be an email parser issue in general. I just retested with refang disabled, and I get
lastname[@]domainname[.]org
Sorry, something went wrong.
Hi, @bradchiappetta!
This issue is now resolved and in our development branch. Once a new version is available for download from PyPI, I will post another comment here.
Here's a quick example for when the new version is available:
import iocextract def extract_data(): data = "firstname[.]lastname[@]domainname[.]org" # refang print(list(iocextract.extract_emails(data, True))) # normal print(list(iocextract.extract_emails(data, False))) extract_data()
New version is now available on PyPI: https://pypi.org/project/iocextract/1.14.0/
battleoverflow
No branches or pull requests
Issue seems to be around this defangged format:
firstname[.]lastname[@]domainname[.]org
When refanged, seeing the following:
[email protected]
For some reason, the username format of first.last is getting chopped off to just last.
The text was updated successfully, but these errors were encountered: