![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
A series of methods to help you work with validation and extraction of e-mails
emailtoolspython A series of methods to help you work with validation and extraction of e-mails
Install
>> pip install --user emailtoolspython
Or you can download the zip of the module, to your root project
>> cd path/to/your/module
>> wget https://github.com/EvertonTomalok/emailtoolspython/archive/master.zip
>> unzip master.zip
>> cd emailtoolspython-master
>> python3 setup.py install --user
Usage
>> from emailtoolspython import EmailTools
>> email = EmailTools()
Syntax Email Validation To verify if the syntax of an email is valid, use the method below:
>> email.syntax_validation('evertontomalok123@gmail.com')
>> True
>> email.syntax_validation('example@invalid_domain')
>> False
Passing the Parameter "can_start_with_number=True", you can verify e-mail that starts a number:
>> email.syntax_validation('24hours_laundry@gmail.com')
>> False
>> email.syntax_validation('24hours_laundry@gmail.com', can_start_with_number=True)
>> True
Email SMTP Validation
Pass an email to verify if domain is registered as a server, and if the email passed exists or not.
The example bellow is a valid email
>> email.email_smtp_validation('evertontomalok123@gmail.com')
>> 200
It isn't valid or the email couldn't be validated!
>> email.email_smtp_validation('evertontomalok123123123@gmail.com')
>> 400
The domain wasn't founded.
>> email.email_smtp_validation('asdar1t1@214135135qsas1.com')
>> 402
The syntax is invalid
>> email.email_smtp_validation('not_a_valid_email@not-domain')
>> 403
All returns:
200 - The email is valid
400 - The email is invalid
401 - Try later
402 - The domain wasn't founded
403 - The syntax is invalid
Validating a domain A valid domain >> email.domain_smtp_validation('gmail.com')) >> {'status': 200, 'ip_address': 'str_containing_ip' } - Ok
An invalid domain
>> email.domain_smtp_validation('gmail.com.br'))
>> {'status': 400, 'ip_address': None } - Not Found
Timeout, try later
>> email.domain_smtp_validation('a_timeout_ocurried.com'))
>> {'status': 401, 'ip_address': None } - Try Later
Extracting Emails from a text To extract all emails from a text, use extract_emails_from_text():
>> email.extract_emails_from_text('lorsi sldaljq indajfa email@example.com sajdiosafhu. A example@email.com')
>> ['email@example.com', 'example@email.com']
Extracting Emails from a web page You can pass a site domain to extract_emails_from_web(), and all emails crawled in that page, will be returned in a list. Note, a domain must be passed like this: "creditas.com.br" or "www.creditas.com.br" or another way "app.creditas.com.br". An url from a contact page, can be passed too, like this: "http://laclaw.com.br/Contato-e-Localizacao.html".
>> email.extract_emails_from_web('creditas.com.br')
>> ['meajuda@creditas.com.br', 'ouvidoria@creditas.com.br', 'imprensa@creditas.com.br']
Use parameter "user_agent=True" to choose a random user agent to be used in the request
>> email.extract_emails_from_web('urlexample.com', user_agent=True)
EXAMPLE
>> email.extract_emails_from_web('lendico.com.br', user_agent=True)
>> ['atendimento@lendico.com.br']
You can use selenium (a webdriver that simulate you are using Google Chrome to access some page) to run and crawl web pages that need to execute javascript. Is very simple use this feature, you only need to have chromedriver in your path /usr/bin or /usr/local/bin, and pass the parameter "use_selenium" as True. It's important to mention, that the speed of the crawl will decrease.
Extract emails using Selenium in headless
>> email.extract_emails_from_web('creditas.com.br', use_selenium=True, user_agent=True)
>> ['meajuda@creditas.com.br', 'ouvidoria@creditas.com.br', 'imprensa@creditas.com.br']
Using selenium, user_agent is not necessary. You can pass user_agent=False, if you want.
You can download chromedriver here (https://sites.google.com/a/chromium.org/chromedriver/downloads) and you can access the official documentation - python bindings for selenium (https://selenium-python.readthedocs.io/installation.html). For Windows users, go to the official documentation to have help to install chromedriver.
Author { 'name': Everton Tomalok, 'email': evertontomalok123@gmail.com, 'medium': medium.com/@everton.tomalok, 'linkedin': linkedin.com/in/evertontomalok }
FAQs
A series of methods to help you work with validation and extraction of e-mails
We found that emailtoolspython demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.