Metadata-Version: 1.1
Name: temporary-email
Version: 0.5
Summary: A simple way to use temporary email.
Home-page: https://github.com/tongyongquan/temporary_email
Author: TongYongQuan
Author-email: 1070969926@qq.com
License: MIT License
Description: =====

        T_email

        =====

        临时邮箱接口返回邮箱地址和邮件内容,用做接收验证码

        

        Quick start

        -----------

        pip instll temporaty_email

        

        .. code:: python

        

            from temporaty_email.temporary_email import TemporaryEmail

            t_email = TemporaryEmail()

            print(t_email.get_email_address())

            while True:

                if t_email.check_received_email():

                    content = t_email.get_email_content()

                    print(content)

                    break

        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
