Metadata-Version: 2.1
Name: email-normalize
Version: 1.0.4
Summary: Return a normalized email-address stripping ISP specific behaviors
Home-page: https://github.com/gmr/email-normalize
Author: Gavin M. Roy
Author-email: gavinmroy@gmail.com
License: BSD 3-Clause License
Project-URL: Bug Tracker, https://github.com/gmr/email-normalize/issues
Project-URL: Documentation, https://email-normalize.readthedocs.io
Project-URL: Source Code, https://github.com/gmr/email-normalize/
Description: email-normalize
        ===============
        ``email-normalize`` is a Python 3 library for returning a normalized email-address
        stripping mailbox provider specific behaviors such as "Plus addressing"
        (foo+bar@gmail.com).
        
        |Version| |Status| |Coverage| |License|
        
        Example
        -------
        
        .. code:: python
        
            import email_normalize
        
            # Returns ``foo@gmail.com``
            normalized = email_normalize.normalize('f.o.o+bar@gmail.com')
        
        Currently Supported Mailbox Providers
        -------------------------------------
        - Apple
        - Fastmail
        - Google
        - Microsoft
        - ProtonMail
        - Rackspace
        - Yahoo
        - Yandex
        - Zoho
        
        Documentation
        -------------
        http://email-normalize.readthedocs.org
        
        Python Versions Supported
        -------------------------
        3.7+
        
        .. |Version| image:: https://img.shields.io/pypi/v/email-normalize.svg?
           :target: https://pypi.python.org/pypi/email-normalize
        
        .. |Status| image:: https://github.com/gmr/email-normalize/workflows/Testing/badge.svg?
           :target: https://github.com/gmr/email-normalize/actions?workflow=Testing
           :alt: Build Status
        
        .. |Coverage| image:: https://img.shields.io/codecov/c/github/gmr/email-normalize.svg?
           :target: https://codecov.io/github/gmr/email-normalize?branch=master
        
        .. |License| image:: https://img.shields.io/pypi/l/email-normalize.svg?
           :target: https://email-normalize.readthedocs.org
        
Keywords: email
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Framework :: AsyncIO
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Communications
Classifier: Topic :: Communications :: Email
Classifier: Topic :: Internet
Classifier: Topic :: Software Development
Classifier: Typing :: Typed
Description-Content-Type: text/x-rst; charset=UTF-8
Provides-Extra: testing
