-
-
Notifications
You must be signed in to change notification settings - Fork 33.1k
Closed as not planned
Description
import itertools
import requests
import time
توليد كل أسماء المستخدمين الرباعية (A-Z)
letters = 'abcdefghijklmnopqrstuvwxyz'
all_usernames = [''.join(p) for p in itertools.product(letters, repeat=4)]
مثال: تحقق من أول 10 أسماء لتجنب الحظر
for username in all_usernames[:10]:
url = https://accountscenter.instagram.com/profiles/17841408101324331/username/?theme=dark/"
response = requests.get(url)
if response.status_code == 404:
print(f"{username} متاح")
else:
print(f"{username} محجوز")
time.sleep(5) # انتظر 5 ثوانٍ بين الطلبات لتجنب الحظر
Metadata
Metadata
Assignees
Labels
No labels