Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
dekrypted authored Sep 22, 2022
1 parent 3afb867 commit 3ac2edb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
print('\x1b[1;31mError: \x1b[1;33mInvalid Amount! Press ENTER to continue.\x1b[0m')
os._exit(0)

if amount > (2**(len(address[0]) - 1))*10:
input(f'\x1b[1;33mWARNING: \x1b[1;33mAbove maximum number of emails for this address. Lowering to {(2**(len(address[0]) - 1))*10}\x1b[0m')
amount = (2**(len(address[0]) - 1))*10

print(f'\x1b[1;32m{os.getlogin()}@GmailGen$ \x1b[1;34mGenerating {amount} Emails!\x1b[0m')
generated = []
for i in range(amount):
Expand Down

0 comments on commit 3ac2edb

Please sign in to comment.