├── README.md └── main.py /README.md: -------------------------------------------------------------------------------- 1 | # gmail-checker 2 | Gmail Username Checker, no ratelimit 3 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | import requests, threading, random 2 | 3 | 4 | class Checker: 5 | def __init__(self): 6 | self.threads = 10 7 | self.hits = 0 8 | self.fails = 0 9 | self.file = open('hits.txt', 'a') 10 | 11 | while True: 12 | if threading.active_count() < self.threads: 13 | threading.Thread(target=self.check_email) 14 | 15 | def check_email(self): 16 | email = f"{''.join(random.choices('abcdefghijklmnopqrstuvwxyz', k=5))}@gmail.com" 17 | r = requests.get(f"https://mail.google.com/mail/gxlu?email={email}") 18 | try: 19 | if r.headers["Set-Cookie"]: 20 | self.fails += 1 21 | 22 | else: 23 | self.hits += 1 24 | print(email); print(email, file=self.file) 25 | except: 26 | self.hits += 1 27 | print(email, file=self.file) 28 | 29 | 30 | Checker() 31 | --------------------------------------------------------------------------------