# Requirements for Media Crawler

# Web scraping and automation
selenium>=4.0.0
beautifulsoup4>=4.11.0

# Video/audio downloading
yt-dlp>=2023.0.0

# HTTP client (used by yt-dlp)
urllib3>=1.26.0

# Optional: Automatic ChromeDriver management (HIGHLY RECOMMENDED)
# Uncomment the line below to auto-download ChromeDriver:
# webdriver-manager>=4.0.0

# Note: You also need ChromeDriver
# 
# Option 1 (Recommended for Arch Linux):
#   sudo pacman -S chromium
#
# Option 2 (Automatic - works everywhere):
#   pip install webdriver-manager
#   (Automatically downloads ChromeDriver on first run)
#
# Option 3 (Manual):
#   Download from: https://chromedriver.chromium.org/
#   Make sure it matches your Chrome browser version
#
# See CHROMEDRIVER_INSTALL.md for detailed instructions
