Files
stealergram/.env.example
anti 741e6bb0d3 Rename to stealergram, add pyproject.toml, purge em-dashes
- Rename project to stealergram throughout
- Add pyproject.toml (replaces requirements.txt split, folds pytest.ini)
- Replace all em-dashes with hyphens across all source files

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-19 10:06:30 -04:00

23 lines
1.4 KiB
Plaintext

# ─── Telegram API credentials ──────────────────────────────────────────────
# Get these from https://my.telegram.org → API development tools
API_ID=12345678
API_HASH=your_api_hash_here
# ─── Bot credentials ────────────────────────────────────────────────────────
# Create a bot via @BotFather and paste the token here
BOT_TOKEN=123456789:ABCdefGHIjklMNOpqrSTUvwxYZ
# ─── Alert destination ──────────────────────────────────────────────────────
# Chat ID to send hit notifications to (your personal ID or a group)
# Tip: message @userinfobot on Telegram to get your ID
NOTIFY_CHAT_ID=987654321
# ─── Session name (just a filename, no extension needed) ────────────────────
SESSION_NAME=monitor_session
# ─── tdl (fast Go downloader) - optional but strongly recommended ───────────
# Install: https://github.com/iyear/tdl
# After installing, run once: tdl login -n <SESSION_NAME>
# SESSION_NAME above is shared between Telethon and tdl - no double login needed.
# If tdl is not on PATH the bot falls back to Telethon automatically.