Metadata-Version: 2.1
Name: temp-email
Version: 0.2
Summary: Wrapper for online service which provides temporary email address: https://www.1secmail.com/api/
Home-page: https://github.com/leirons/TempMail
Author: Ivan Grechka
Author-email: grecigor11@gmail.com
License: MIT
Keywords: temporary temp mail email address wrapper api anon anonymous secure free disposable
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP

# Temp-Mail Api Wrapepr
Python API wrapper for 1secmail.com/api/. Temp mail lets you use anonymous emails for free
## Requirements
- requests
## Installation
- pip install 

## Usage
Get list of active domains
```
from tempmail import TempMail
email = TempMail() # you can youse your login
print(email.get_list_of_active_domain())
```
Generate random email address

```
from tempmail import TempMail
email = TempMail() # you can youse your login
email.generate_random_email_address()
```
Get your login and domain
```
from tempmail import TempMail
email = TempMail()
get.login()
get.domain()
```
Download Attachment from MailBox
```
from tempmail import TempMail()
email = TempMail(login='login')
email.download_attachments_by_id(id=12312,attachemnts='file.jpg')
```

Download all Files from MailBox
```
from tempmail import TempMail()
email = TempMail(login='login')
email.download_all_files()
```


Get list of emails
```
from tempmail import TempMail()
email = TempMail(login='login')
email.get_list_of_emails()
```

