0% found this document useful (0 votes)
615 views1 page

TikTok Checker

The document is a Python script that generates random TikTok usernames and checks their availability by sending requests to TikTok's website. It uses the requests library to handle HTTP requests and the colorama library for colored output in the terminal. Additionally, it allows the user to send messages via a Telegram bot with the availability status of the generated usernames.

Uploaded by

dwad dwdqd
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
615 views1 page

TikTok Checker

The document is a Python script that generates random TikTok usernames and checks their availability by sending requests to TikTok's website. It uses the requests library to handle HTTP requests and the colorama library for colored output in the terminal. Additionally, it allows the user to send messages via a Telegram bot with the availability status of the generated usernames.

Uploaded by

dwad dwdqd
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

import requests

import random
from colorama import *
g = Fore.GREEN
r = Fore.RED
y = Fore.YELLOW
c = Fore.CYAN
print(c + requests.get('http://artii.herokuapp.com/make?text= D R E X T E R
').text)

print('================================================')

rt = requests.session()
litters = 'qwertyuiopasdfghjklzxcvbnm1234567890'
u = ''

id = input("[+] Enter Id : ")

token = input("[+] Enter Bot Token : ")


print('')
hea = {
'accept':
'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/
webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
'accept-encoding': 'gzip, deflate, br',
'accept-language': 'en-US,en;q=0.9,ar;q=0.8',
'cache-control': 'max-age=0',
'sec-ch-ua': '" Not;A Brand";v="99", "Google Chrome";v="91",
"Chromium";v="91"',
'sec-ch-ua-mobile': '?0',
'sec-fetch-dest': 'document',
'sec-fetch-mode': 'navigate',
'sec-fetch-site': 'same-origin',
'sec-fetch-user': '?1',
'upgrade-insecure-requests': '1',
'user-agent': 'Mozilla/5.0(Windows NT 10.0;Win64;x64)
AppleWebKit/537.36(KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'
}
while True:
user = str("".join(random.choice(litters)for x in range(0)))
user1 = str("".join(random.choice(litters)for x in range(4)))
usernames = user + u + user1
tiko = f'https://www.tiktok.com/@{usernames}?'
reqsnd = rt.get(tiko, headers=hea).status_code
if reqsnd == 404:
print(g + f' [+] {usernames} ✅✅ ')
bot = f"https://api.telegram.org/bot{token}/sendMessage?chat_id={id}&text=
‫ متاح او مبند‬: {usernames}\n𝘽𝙔 : @ayqjn"
rt.get(bot)
else:
print(r + f' [+] {usernames} ❌❌ ')

You might also like