import time
import os
import toml
from rich.console import Console
from datetime import datetime
from telethon.tl.functions.account import UpdateProfileRequest
from telethon.sync import TelegramClient
console = Console()
settings = {}
if not os.path.exists("auth.toml"):
settings["api_id"] = int(console.input("[red]API ID> [/]"))
settings["api_hash"] = console.input("[red]API HASH> [/]")
with open("auth.toml", "w") as file:
toml.dump(settings, file)
else:
with open("auth.toml") as file:
settings = toml.load(file)
client = TelegramClient(
"my_session",
settings["api_id"],
settings["api_hash"]
)
while True:
with client:
bio = "Эй, сука, что ты знаешь о чистоте моего звука?"
bio2 = "Я дожил до момента, что мой лучший друг — базука"
bio3 = "Лишаю тебя слуха, бля, врубается бассуха"
client(
UpdateProfileRequest(about=bio)
)
time.sleep(60)
client(
UpdateProfileRequest(about=bio2)
)
time.sleep(60)
client(
UpdateProfileRequest(about=bio3)
)
time.sleep(60)