forked from Second-Hand-Friends/ebayKleinanzeigen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json.example
42 lines (42 loc) · 1.51 KB
/
config.json.example
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
{
"glob_username": "",
"glob_password": "",
"glob_street": "",
"glob_zip": "",
"glob_contact_name": "",
"glob_phone_number": "",
"glob_photo_path": "/path/to/photos/",
"glob_ad_prefix": "Text to add which comes before the actual ad description.\nLeave free if not needed\n",
"glob_ad_suffix": "Text to add which comes after the actual ad description.\nLeave free if not needed\n",
"webdriver_enabled": false,
"update_interval": 30, // number of days an ad has to be old in order to be reposted
"ads": [
{
"type": "OFFER",
"title": "Example 1",
"desc": "... with a negotiable price (5 EUR) and some photos.",
"enabled": "1",
"price": "5",
"price_type": "NEGOTIABLE",
"caturl": "https://www.ebay-kleinanzeigen.de/p-kategorie-aendern.html#?path=80/88/sofas_sitzgarnituren&isParent=false",
"shipping_type": "PICKUP",
"photofiles": [ "file1.jpg", "file2.jpg" ],
"zip" : "33333"
},
{
"type": "WANTED",
"title": "Example 2",
"description_file" : "/abspath/to/file.txt", // will not read contents of "desc"
"enabled": "1",
"price": "10",
"shipping_type": "SHIPPING",
"price_type": "FIXED",
"caturl": "https://www.ebay-kleinanzeigen.de/p-kategorie-aendern.html#?path=80/88/sofas_sitzgarnituren&isParent=false",
"photo_dir": "folder_name/or/subdirectory/with/images/",
"additional_category_options": {
"foto.art_s": "Zubehör",
"foto.condition_s": "Gebraucht"
}
},
]
}