Django package to detect ~890 domains used by disposable email services
Project description
=============================== django-disposable-email-checker
Django package to detect between ~890 & ~8,600 domains used by disposable email services. You can validate any email against our internal list of ~890 domains used by disposable email services. Optionally you can also check each domain against the Block-Disposable-Email.com API, covering ~8,600 domains.
This code was initially developed at: https://github.com/aaronbassett/DisposableEmailChecker However PyPI ownership has been transferred to https://github.com/jheld/DisposableEmailChecker and as such all future contributions are expected to be made to the new github repo.
Setup
Install the disposable email checker from PyPI
pip install django-disposable-email-checker
The disposable email checker comes with a list of ~890 emails. If you would like to provide your own email list create a function which returns a list of domains to block.
from disposable_email_checker.emails import email_domain_loader
def custom_email_domain_loader():
# Anyone still using AOL will be too much of a customer service burden
return [
"aol.com",
] + email_domain_loader()
Then add the complete path including function name to your settings
DEC_LOADER = "my.package.custom_email_domain_loader"
If you would like to use the BDE integration add your API key to your Django settings
BDEA_APIKEY = "abcnotarealkey123"
optionally you can configure the BDE API timeout in seconds (default 5)
BDEA_TIMEOUT = 2
A default error message can be set globally for the validation checking (this is optional and if
left blank it will default to _('Blocked email provider.')
):
BDEA_MESSAGE = '<blocked email message>'
Adding to your models
Once you have completed setup add the DisposableEmailField
to your models.
from django.db import models
from disposable_email_checker.fields import DisposableEmailField
class MyModel(models.Model):
email = DisposableEmailField()
The DisposableEmailField
has a few optional arguments
- whitelist - A list of emails which will always be allowed. Defaults
to
[]
- message - The error message used by ValidationError if validation
fails. Defaults to
_('Blocked email provider.')
- code - The error code used by ValidationError if validation fails. Defaults to "invalid".
Using the validator
If you want to use the validator by itself
from django.core.exceptions import ValidationError
from disposable_email_checker.validators import validate_disposable_email
email = "emailaddress@readmetest.com" # replace with your own value
try:
validate_disposable_email(email)
except ValidationError:
pass
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-disposable-email-checker-2.0a3.tar.gz
.
File metadata
- Download URL: django-disposable-email-checker-2.0a3.tar.gz
- Upload date:
- Size: 15.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 716d20df7ef2553a06f0608b52d990e427026542acc0ff1f489f1690d689a35e |
|
MD5 | 7bdab326224e545039ae5c82e4e64103 |
|
BLAKE2b-256 | ca504b443e3a436f8ff13078184e9d325525043bd7acd6b8f6325bb1c2ba9a04 |
File details
Details for the file django_disposable_email_checker-2.0a3-py3-none-any.whl
.
File metadata
- Download URL: django_disposable_email_checker-2.0a3-py3-none-any.whl
- Upload date:
- Size: 14.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7436cac6ba7224435ed39be1c957b1b3c6eb988f22e3b1563e55946c768a7d4f |
|
MD5 | 6ea6a565fa87697ed111b86be475b668 |
|
BLAKE2b-256 | 206b10946580137734fbe791135aac62111b666fdc5711f790a33eb4dda8f214 |