Metadata-Version: 2.4
Name: disposable-email-domains
Version: 0.0.174
Summary: A set of disposable email domains
Author-email: Dustin Ingram <github@dustingram.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/disposable-email-domains/disposable-email-domains
Keywords: disposable,email,domains,blocklist
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Typing :: Typed
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Provides-Extra: dev
Requires-Dist: check-manifest; extra == "dev"
Dynamic: license-file

# Disposable Email Domains

This module provides a set of known disposable email domains.

## Usage

The blocklist is a Python `set` containing all domains in the blocklist:

```python
>>> from disposable_email_domains import blocklist
>>> 'bearsarefuzzy.com' in blocklist
True
```

The domains are guaranteed to be fully lowercased and stripped of whitespace.

## Source

The source of this list is the [disposable-email-domains][1] project.

This module attempts to provide a mirror of that project as a Python module.

If you feel a domain should or shouldn't be on the blocklist, you are
encouraged to make a pull request against the [source repository][2]

[1]: https://github.com/disposable-email-domains/disposable-email-domains
[2]: https://github.com/disposable-email-domains/disposable-email-domains
