-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.default
More file actions
82 lines (82 loc) · 2.3 KB
/
Copy pathconfig.json.default
File metadata and controls
82 lines (82 loc) · 2.3 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
{
"mongodb_uri": "mongodb://admin:admin@localhost:27017/immo?authSource=admin",
"ollama_base_url": "http://localhost:11434",
"ollama_model": "llama3.1:8b",
"openai_api_key": null,
"openai_model": "gpt-4o-mini",
"source": "willhaben",
"max_pages": 12,
"scraping": {
"timeout": 30,
"delay_between_requests": 1,
"selenium_wait_time": 10,
"user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"
},
"willhaben": {
"base_url": "https://www.willhaben.at",
"search_url": "https://www.willhaben.at/iad/immobilien/eigentumswohnung/wien",
"max_pages": 12,
"timeout": 30
},
"immo_kurier": {
"base_url": "https://immo.kurier.at",
"search_url": "https://immo.kurier.at/suche?l=Wien&r=0km&_multiselect_r=0km&a=at.wien&t=all%3Asale%3Aliving&pf=&pt=&rf=&rt=&sf=&st=",
"max_pages": 12,
"timeout": 30
},
"derstandard": {
"base_url": "https://immobilien.derstandard.at",
"search_url": "https://immobilien.derstandard.at/suche/wien/kaufen-wohnung?roomCountFrom=3",
"max_pages": 12,
"timeout": 30
},
"telegram": {
"telegram_main": {
"bot_token": "YOUR_BOT_TOKEN_HERE",
"chat_id": "YOUR_CHAT_ID_HERE"
},
"telegram_vienna": {
"bot_token": "YOUR_BOT_TOKEN_HERE",
"chat_id": "YOUR_CHAT_ID_HERE"
},
"min_score_threshold": 40
},
"top5": {
"limit": 3,
"min_score": 40.0,
"days_old": 7,
"excluded_districts": ["1100", "1160", "1210", "1220"],
"min_rooms": 3,
"include_monthly_payment": true,
"pool_size": 200,
"candidate_pool": 75
},
"criteria": {
"price_max": 1000000,
"price_per_m2_max": 20000,
"area_m2_min": 20,
"rooms_min": 3,
"year_built_min": 1970,
"districts": [
"1010", "1020", "1030", "1040", "1050", "1060", "1070", "1080", "1090", "1100",
"1110", "1120", "1130", "1140", "1150", "1160", "1170", "1180", "1190", "1200",
"1210", "1220", "1230"
]
},
"minio": {
"endpoint": "localhost:9000",
"access_key": "minioadmin",
"secret_key": "minioadmin",
"bucket_name": "immo-images",
"secure": false
},
"api": {
"host": "0.0.0.0",
"port": 5000,
"debug": false
},
"scan_depth": {
"quick_max_pages": 4,
"deep_max_pages": 20
}
}