Skip to content

JurisU/pymailcheck

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pymailcheck

Suggest corrections to user-misspelled email addresses.

Python port of mailcheck.js.

Installation

$ pip install pymailcheck

Usage

>>> import pymailcheck
>>> pymailcheck.suggest("[email protected]")
{'domain': 'example.com', 'full': '[email protected]', 'address': 'test'}
>>> pymailcheck.suggest("[email protected]")
False

You can override or append the built-in list of domains, top-level domains, and/or second-level domains:

Parameter Defaults Example
domains pymailcheck.DOMAINS yahoo.com
top_level_domains pymailcheck.TOP_LEVEL_DOMAINS yahoo
second_level_domains pymailcheck.SECOND_LEVEL_DOMAINS com
>>> pymailcheck.suggest("[email protected]")
False
>>> custom_domains = ["example.com", "contoso.com"]
>>> pymailcheck.suggest("[email protected]", domains=custom_domains)
{'domain': 'contoso.com', 'full': '[email protected]', 'address': 'test'}
>>> pymailcheck.suggest("[email protected]")
False
>>> custom_domains = pymailcheck.DOMAINS.union(("example.com", "contoso.com"))
>>> pymailcheck.suggest("[email protected]", domains=custom_domains)
{'domain': 'contoso.com', 'full': '[email protected]', 'address': 'test'}

Running Tests

$ python -m unittest discover

About

Python port of mailcheck.js

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%