Get your API Resource Availability Bot running in 5 minutes!
- Python 3.9+
- Telegram account
- Open Telegram → Search
@BotFather - Send
/newbotand follow instructions - Copy your bot token
cd d:\API_Bot
# Create virtual environment
python -m venv venv
# Activate (Windows)
venv\Scripts\activate
# Install packages
pip install -r requirements.txt
# Install Playwright
playwright install chromium# Copy example environment file
copy .env.example .env
# Edit .env and add your token
TELEGRAM_BOT_TOKEN=your_token_here# Option 1: Direct
python bot.py
# Option 2: Using script (Windows)
run_bot.bat
# Option 3: Using script (Linux/Mac)
chmod +x run_bot.sh
./run_bot.sh- Open Telegram
- Search for your bot
- Send
/start - Send a URL:
https://github.com - See the magic! ✨
"Token is invalid" → Check .env file for correct token
"Module not found" → Run pip install -r requirements.txt
"Playwright not found" → Run playwright install chromium
- Read SETUP.md for detailed configuration
- See EXAMPLES.md for usage examples
- Check README.md for complete documentation
- Check logs:
bot.log - Enable debug: Set
LOG_LEVEL=DEBUGin.env - Review documentation files
That's it! Your bot is ready to scan! 🎉