-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrequirements.txt
More file actions
40 lines (34 loc) · 1.33 KB
/
Copy pathrequirements.txt
File metadata and controls
40 lines (34 loc) · 1.33 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
35
36
37
38
39
40
# Claude Ads Pro — Python Dependencies
# Core dependencies are optional — the tool works without them
# but with reduced functionality (manual data input only).
# Last updated: March 3, 2026
# ── Core (required for any Python features) ──
requests>=2.32.4,<3.0.0 # HTTP client for APIs
urllib3>=2.6.3,<3.0.0 # HTTP library (security fixes)
# ── Landing Page Analysis ──
playwright>=1.56.0,<2.0.0 # Browser automation (fallback for PageSpeed)
# ── API Connectors (optional — install what you need) ──
google-ads>=25.0.0,<26.0.0 # Google Ads API v23 connector
facebook-business>=22.0.0,<23.0.0 # Meta Marketing API connector
# ── AI Creative Scoring (optional) ──
anthropic>=0.45.0,<1.0.0 # Claude SDK for vision-based creative analysis
# ── PDF Report Generation (optional) ──
fpdf2>=2.8.0,<3.0.0 # PDF report generator
# ── Quick Install Commands ──
# Full install (everything):
# pip install -r requirements.txt
#
# Minimal (landing page + PageSpeed only):
# pip install requests playwright && playwright install chromium
#
# Google Ads connector only:
# pip install google-ads
#
# Meta Ads connector only:
# pip install facebook-business
#
# Creative scoring only:
# pip install anthropic
#
# PDF reports only:
# pip install fpdf2