-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
86 lines (86 loc) · 1.84 KB
/
config.json
File metadata and controls
86 lines (86 loc) · 1.84 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"app_name": "Global Search Visualizer",
"version": "1.0.0",
"description": "Multi-Region Search Result Screenshot Tool",
"server": {
"host": "0.0.0.0",
"port": 8000,
"reload": true
},
"playwright": {
"headless": true,
"viewport": {
"width": 1366,
"height": 768
},
"timeout": 30000,
"wait_for": "networkidle"
},
"search_engines": {
"google": {
"url": "https://www.google.com/search?q={query}",
"enabled": true
},
"bing": {
"url": "https://www.bing.com/search?q={query}",
"enabled": true
},
"duckduckgo": {
"url": "https://duckduckgo.com/?q={query}",
"enabled": true
},
"yahoo": {
"url": "https://search.yahoo.com/search?p={query}",
"enabled": true
}
},
"google_search_api": {
"enabled": true,
"api_key": null,
"search_engine_id": null,
"results": 10,
"timeout": 15,
"safe": "off",
"fallback_to_browser": false,
"extra_params": {}
},
"proxy": {
"validation_timeout": 10,
"max_concurrent_validations": 10,
"retry_attempts": 2
},
"concurrency": {
"max_concurrent_browsers": null,
"max_concurrent_jobs": null,
"auto_calculate": true
},
"behavior": {
"shuffle_engines": true,
"task_delay_min_ms": 200,
"task_delay_max_ms": 500
},
"captcha_detection": {
"enabled": true,
"keywords": [
"unusual traffic",
"verify you're human",
"captcha",
"recaptcha",
"security check",
"access denied"
]
},
"storage": {
"results_dir": "results",
"logs_dir": "results/logs",
"screenshots_dir": "results/screenshots"
},
"features": {
"full_page_screenshot": true,
"viewport_screenshot": true,
"geolocation_lookup": true,
"session_history": true,
"zip_download": true,
"json_export": true
}
}