Metadata-Version: 2.1
Name: disposable-email-domains
Version: 0.0.61
Summary: A set of disposable email domains
Home-page: https://github.com/di/disposable-email-domains
Author: Dustin Ingram
Author-email: github@dustingram.com
License: MIT
Description: # 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/martenson/disposable-email-domains
        [2]: https://github.com/martenson/disposable-email-domains
        
Keywords: disposable email domains blocklist
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
