-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.toml
More file actions
45 lines (32 loc) · 1.12 KB
/
Copy pathconfig.example.toml
File metadata and controls
45 lines (32 loc) · 1.12 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
41
42
43
44
45
# amz-crawler configuration file
# Copy to config.toml or ~/.config/amz-crawler/config.toml
# Amazon region (us, uk, de, fr, es, it, ca, au, jp, in, br, mx, nl, se, pl)
region = "us"
# Proxy URL (optional)
# Supports HTTP, HTTPS, and SOCKS5 proxies
# proxy = "socks5://127.0.0.1:1080"
# proxy = "http://user:pass@proxy.example.com:8080"
# Delay between requests in milliseconds
# Higher values are safer but slower
delay_ms = 2000
# Random jitter added to delay (0 to this value in ms)
# Makes request timing more human-like
delay_jitter_ms = 3000
# Maximum number of results to fetch per search
max_results = 20
# Output format (table, json, markdown, csv)
format = "table"
# ----- Filters (applied to all searches) -----
# Price range filter
# min_price = 10.0
# max_price = 100.0
# Minimum star rating (1.0-5.0)
# min_rating = 4.0
# Only show Prime-eligible products
prime_only = false
# Exclude sponsored listings
no_sponsored = false
# Required keywords in title (all must match)
# keywords = ["wireless", "bluetooth"]
# Excluded keywords from title (none must match)
# exclude_keywords = ["refurbished", "renewed", "used"]