-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
34 lines (26 loc) · 1.21 KB
/
requirements.txt
File metadata and controls
34 lines (26 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# ──────────────────────────────────────────────────────────────────────────────
# Core dependencies
# ──────────────────────────────────────────────────────────────────────────────
# Environment & config
python-dotenv>=1.0.0
# Web scraping
requests>=2.31.0
beautifulsoup4>=4.12.0
lxml>=4.9.0 # faster BS4 parser
# Selenium (for JS-rendered pages)
selenium>=4.15.0
webdriver-manager>=4.0.0
# Database
psycopg2-binary>=2.9.9 # PostgreSQL driver (binary = no compiler needed)
# LLM providers — install the ones you use
openai>=1.12.0 # OpenAI / GPT
anthropic>=0.20.0 # Anthropic Claude
google-generativeai>=0.5.0 # Google Gemini
groq>=0.5.0 # Groq (ultra-fast inference)
# Excel export
pandas>=2.1.0
openpyxl>=3.1.0
# Progress bar
tqdm>=4.66.0
# Utilities
tenacity>=8.2.0 # retry helper (optional, used in advanced mode)