Python client for block-disposable-email.com
Project description
Installation
pip install block-disposable-email
Simple usage (email)
from bdea.client import is_disposable_email
- if is_disposable_email(‘spam@mailinator.com’, ‘example_apikey_12345’):
print(“Email is disposable”)
- else:
print(“Email is valid”)
Simple usage (domain)
from bdea.client import is_disposable_domain
- if is_disposable_domain(‘mailinator.com’, ‘example_apikey_12345’):
print(“Domain is disposable”)
- else:
print(“Domain is valid”)
Django validator
Add your apikey to Django settings.py:
BDEA_APIKEY = ‘example_apikey_12345’
Add validator to your EmailField:
from django import forms from bdea.django_validators import disposable_email_validator
- class EmailField(forms.EmailField):
default_validators = forms.EmailField.default_validators + [disposable_email_validator]
Advanced usage
from bdea.client import BDEAClient
cl = BDEAClient(‘example_apikey_12345’, timeout=5)
# examine API status res = cl.get_api_status() print(res.status(), res.credit_status(), res.credits())
# get raw API response print(res.response)
# validate domain res = cl.get_domain_status(‘mailinator.com’) print(res.is_disposable(), res.status())
# get raw API response print(res.response)
Development
To bootstrap your development environment, install virtualenvwrapper and run the following commands from project directory:
mkvirtualenv disposable setvirtualenvproject pip install -r requirements/dev.txt pip install -e ./
To run tests use py.test, or run the following command:
tox
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file block-disposable-email-2.0.0.tar.gz
.
File metadata
- Download URL: block-disposable-email-2.0.0.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ecd0398d756bacd3708f350307b850ce54f28ac3cbf657bf8c9bfa5b598476a |
|
MD5 | 86cf0653bafc263dfe7b9dc836fb651c |
|
BLAKE2b-256 | 0032d16726fea4af803856305cfbc46b8650993f0fe5348883063a7fca06c21d |