# -*- coding: utf-8 -*-
"""
Configuration for Telegram API ID/Hash generator bot.

IMPORTANT:
- BOT_TOKEN: token from @BotFather
- OWNER_ID: only this Telegram user can use the bot
- HTTP_PROXY / HTTPS_PROXY: optional. Example:
      http://127.0.0.1:8080
  Leave empty when not needed.
"""

BOT_TOKEN = "8825930713:AAF-I-UBPZIM5KbNh6yxoGiLJegMAUYNXfg"
OWNER_ID = 2122148353

# Optional proxy for both Telegram Bot API and my.telegram.org.
# HTTP/HTTPS proxy only; SOCKS requires requests[socks].
HTTP_PROXY = ""
HTTPS_PROXY = ""

# my.telegram.org application defaults
APP_TITLE = "API Robot Personal"
APP_SHORTNAME_PREFIX = "apirobot"
APP_PLATFORM = "desktop"
APP_DESCRIPTION = "Personal Telegram API application"

# Network
REQUEST_TIMEOUT = 30
LONG_POLL_TIMEOUT = 50
MAX_NETWORK_RETRIES = 3

# Conversation expiry (seconds)
STATE_TTL = 15 * 60
