We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a045442 commit dbade0bCopy full SHA for dbade0b
TempMail/TempMail.py
@@ -34,9 +34,9 @@ def makeHTTPRequest(endpoint):
34
GenerateInbox will generate an inbox with an address and a token
35
and returns an Inbox object
36
"""
37
- def generateInbox():
+ def generateInbox(rush = False):
38
try :
39
- s = TempMail.makeHTTPRequest("/generate")
+ s = TempMail.makeHTTPRequest("/generate" + ("/rush" if rush else ""))
40
except:
41
print("Website responded with: "+ s)
42
data = json.loads(s)
setup.py
@@ -8,7 +8,7 @@
8
long_description = "\n" + fh.read()
9
10
setup(name='tempmail-lol',
11
- version='1.0.0',
+ version='1.1.0',
12
description='A Python API for TempMail',
13
author='Alex Torres',
14
author_email='cloudbotsedc@gmail.com',
0 commit comments