Untitled
unknown
plain_text
3 years ago
253 B
5
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...