Initial commit
parent
2a4e9f0525
commit
aebb3f4591
35
README.md
35
README.md
|
@ -1,2 +1,37 @@
|
||||||
# tenminutesemail_py
|
# tenminutesemail_py
|
||||||
|
|
||||||
|
## Create a temporal e-mail using the [10minutemail](https://10minutemail.com/) service.
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
- Python 3.x
|
||||||
|
- requests
|
||||||
|
- datetime
|
||||||
|
|
||||||
|
### Usage
|
||||||
|
** Generate a new e-mail **
|
||||||
|
```
|
||||||
|
In [1]: email = TenMinutesEmail()
|
||||||
|
In [2]: email
|
||||||
|
Out[2]: (b3763093@urhen.com, seconds_left=594)
|
||||||
|
```
|
||||||
|
** Check seconds left **
|
||||||
|
```
|
||||||
|
In [3]: email.seconds_left()
|
||||||
|
Out[3]: 472
|
||||||
|
```
|
||||||
|
> You can use `email.seconds_left(True)`, to get a more precise value but is a little bit more slow
|
||||||
|
|
||||||
|
** Verify if the e-mail is expired **
|
||||||
|
```
|
||||||
|
In [4]: email.is_alive()
|
||||||
|
Out[4]: True
|
||||||
|
```
|
||||||
|
> You can use `email.is_alive(True)`, to get a more precise value but is a little bit more slow
|
||||||
|
** Request 10 minutes more **
|
||||||
|
```
|
||||||
|
In [5]: email.reset_time()
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
### TO-DO
|
||||||
|
1. Access to the e-mail received
|
||||||
|
|
Loading…
Reference in New Issue