├── README.md
├── generator.py
└── run.bat
/README.md:
--------------------------------------------------------------------------------
1 |
2 |

7 |
Token Generator
8 |
9 | Syntax:
10 |
11 | - 2 uppercase letters
12 | - Random letter, uppercase or lowercase
13 | - Number or uppercase/lowercase letter
14 | - Combination of 20 upercase and lowecase letters and numbers
15 | - Dot
16 | - 1 Uppercase letter
17 | - 5 numbers and uppercase/lowercase letters
18 | - Dot
19 | - 27 Random numbers and uppercase/lowercase letters
20 | **Examples:**
21 | ODDFOFXUpgf7yEntul5ockCA.OFk6Ph.lmsA54bT0Fux1IpsYvey5XuZk04
22 | MTdqrd0vGDV1dcF0QPjom6OB.NQxUhj.I4JjFHIympR3mVF3UiUbbD5VVbi
23 | NTzQvPcLBacBmgajXQc7QAaU.XCgboz.c4t51kFWSEmdmaPnKoyUuu8E78E
24 | MDGGvAZ0mDvLYaBZgBXgOduB.LH6QMd.VYFAiCSAioXHxWnOGkACJ6cyVtO
25 | MTkkbSLuyGmw1OPR4fFvJjb1.BbmOlp.Eoysbe9kG1hXzbVRBFtUtB9CRuu
26 | PNtJFkF7fBH0we42HoZRbQ90.P8a1fh.lZ1EJt9XGhZQRHNfsmwgpeNvDkt
27 | MTf6LspX6mllDh9gYarxE7O7.ZAUQXX.8a8tN7HbDvI5GUbCbFiYEqbmjIz
28 | NTYVqPgR1oBTz1LCL2oRxFc8.XT4lzT.WRE6J8x4xTnPfEgqGhiG7JRK5ts
29 | MDFdikG8VCwPOAEM22D40si9.D76rfn.t4SWt6RFoYWhlFBRvc8en6Z0zCG
30 | MTOH5CqGFQNkyIXZUSJYvZbj.Mwhnup.JICfg8UPInb3x2Bze31unJPj3x8
31 | UDrvbuE1I1e3nZlSpb9w089Z.DCeI5i.H8NFmr5elG2E8vv5GkDb6D0X1zp
32 | ## How To use
33 | Once runned the program you just need to insert the amount of loops you want, 1 loop = 5 tokens
34 | Token Type:
35 | - First - completely random
36 | - Second - Starts with MT
37 | - Third - Starts with NT
38 | - Fourth - Starts with MD
39 | - Fifth - Starts with NT
40 | This because MT,NT,MD and NT tokens are the most common, this will have a major chance of getting working tokens.
41 |
42 | ## Screenshot:
43 | 
44 |
--------------------------------------------------------------------------------
/generator.py:
--------------------------------------------------------------------------------
1 | import random
2 | import string
3 | import os
4 | from datetime import date
5 | import datetime
6 | print("NOTE! 1 token loop = 5 Tokens of different types. ")
7 | N = input("How many tokens loop?: ")
8 | count = 0
9 | current_path = os.path.dirname(os.path.realpath(__file__))
10 | while(int(count)