Sonunda bir şeyler başardım Şaka bir yana internetteki hiçbir sayfa çalışmadı en son kendim yaptım. Kullanımı çok kolay
Hesap İD'lerini uygun şekilde girdikten sonra kendisi otomatik ayıklıyor ihtiyacı olan varsa buyrun Lazım bir şey varsa eklenmesi gereken söyleyin ekleyelim.

Çok önemli not : Lütfen yorum yaparken kod hakkında yorum yapmayın ChatGPT yazdı ben kodu okuyamıyorum bile

import requests
def check_facebook_accounts(account_ids):
  results = {}
  for account_id in account_ids:
    response = requests.get(f"https://facebook.com/{account_id}")
    if response.status_code == 200:
      if "About" in response.text:
        results[account_id] = "TEMİZ"
      else:
        results[account_id] = "COP"
  return results
account_ids = input("Facebook hesap ID'lerini virgülle ayrılmış şekilde girin:").split(",")
results = check_facebook_accounts(account_ids)
print("Facebook ID    Sonuç")
print("-------------------")
for account_id, result in results.items():
  print(f"{account_id:<15} {result}")
delete_confirmation = input("COP hesapları silmek istiyor musunuz? (Evet/Hayır)").strip().lower()
if delete_confirmation == "evet":
  cop_accounts = [account_id for account_id, result in results.items() if result == "COP"]
  for account_id in cop_accounts:
    # delete the COP account here
    print(f"{account_id} hesabı silindi.")
else:
  print("Silme işlemi iptal edildi.")
print("Kalan TEMİZ hesaplar:")
for account_id, result in results.items():
  if result == "TEMİZ":
    print(account_id)
Etiket : Facebook İD Checker , Facebook Live Account Checker