Metadata-Version: 2.1
Name: tmail
Version: 1.0.7
Summary: Free temporary email
Home-page: https://github.com/zelvdsk/tmail
Author: Ipan (zelvdsk)
Keywords: tmail,temporary email,email sementara,gmail,temp mail,10 minute mail,free temporary email,free temp mail
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Requires-Dist: bs4

# tmail
Free temporary email (python library)
```
pip install tmail
```

# Usage Example 
import library 
```py
import requests
from tmail import TMail

tm = TMail()
```
displays the mail name
```py
print('Your Mail: '+ tm.mail)
```
check incoming messages
```py
while True:
    try:
        boxmail = tm.messages()
        if len(boxmail) != 0:
            print(boxmail)
            break
        else:
            continue
    except requests.exceptions.ConnectionError:
        continue
```
