# temporary_email **Repository Path**: jf12458/temporary_email ## Basic Information - **Project Name**: temporary_email - **Description**: 10分钟临时邮箱接口,用来接收验证码 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2021-04-29 - **Last Updated**: 2021-04-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ===== 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