Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kkristof200/py_tempmailio
tempmailio
https://github.com/kkristof200/py_tempmailio
Last synced: 10 days ago
JSON representation
tempmailio
- Host: GitHub
- URL: https://github.com/kkristof200/py_tempmailio
- Owner: kkristof200
- License: mit
- Created: 2020-07-28T06:51:15.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-04T16:37:00.000Z (over 4 years ago)
- Last Synced: 2024-09-22T09:12:39.821Z (about 2 months ago)
- Language: Python
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tempmailio
![python_version](https://img.shields.io/static/v1?label=Python&message=3.5%20|%203.6%20|%203.7&color=blue) [![PyPI downloads/month](https://img.shields.io/pypi/dm/tempmailio?logo=pypi&logoColor=white)](https://pypi.python.org/pypi/tempmailio)
## Description
python wrapper for tempmail.io
## Install
````bash
pip install tempmailio
# or
pip3 install tempmailio
````## Usage
```python
import timefrom tempmailio import *
mail = TempMailI0(
user_name='test',
domain=Domain.cloudmail()
)success = mail.create_email()
print(mail.email_address)
while True:
inbox = mail.get_inbox()if len(inbox) > 0mermaid :
inbox[0].jsonprint()
exit(0)time.sleep(2.5)
```