Untitled
Anonymous
plain_text
02/01/2023 2:19 PM
340 B
12
Indexable
for i in range(0, 10000):
username = str(i).zfill(5)
r = requests.get(f'https://www.tiktok.com/@{username}')
if r.status_code == 200:
print(f'{username} is already taken.')
else:
print(f'{username} is available.')
Editor is loading...