for path in sessions_paths:
with open(path.rstrip("session") + "json") as f:
setting_json = json.load(f)
client = telethon.TelegramClient(
setting_json.get("session_path"),
setting_json.get("api_id"),
setting_json.get("api_hash"),
device_model=setting_json.get("device_model"),
system_version=setting_json.get("system_version"),
app_version=setting_json.get("app_version"),
lang_code=setting_json.get("lang_code"),
system_lang_code=setting_json.get("system_lang_code"),
proxy=setting_json.get("proxy")
)
if await check_client(client):
print(color.Green, f"[{count_number_account}] Аккаунт {path.lstrip(config.accounts_folder)} - рабочий",
color.END)
count_number_account += 1
else:
json_patch = path.rstrip("session") + "json"
os.remove(json_patch)
print(color.Red,
f"[{count_number_account}] Аккаунт {path.lstrip(config.accounts_folder)} невалид - удаляем",
color.END)
count_number_account += 1
client.session.close()
client.session.delete()
await client.disconnect()
sessions_paths = os.listdir(path=config.accounts_folder)