-
Notifications
You must be signed in to change notification settings - Fork 7
/
settings.base.py
65 lines (56 loc) · 1.44 KB
/
settings.base.py
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
settings = {
"dbPath" : "dbPath/db.db",
"webCtntPath" : "./Content/",
"runThreads" : 8,
"dldCtntPath" : "whereShitWillGo/XaDownloads/",
"artSites" : ["da", "fa", "hf", "px"],
"dbConf":
{
"namesDb" : "siteArtistNames",
"retrevialTimeDB" : "retreival_times",
"erroredPagesDb" : "errored_pages",
"successPagesDb" : "retrieved_pages"
},
"da" : # Deviant Art
{
"username" : "username",
"password" : "password",
"threads" : 5,
"runInterval" : 60*60*24*2, # every 24 hours
"dlDirName" : "DeviantArt",
"shortName" : "da"
},
"fa" : # Fur Affinity
{
"username" : "username",
"password" : "password",
"threads" : 5,
"runInterval" : 60*60*24*3, # every 72 hours
"dlDirName" : "Fur Affinity",
"shortName" : "fa"
},
"hf" : # Hentai Foundry
{
"username" : "username",
"password" : "password",
"threads" : 5,
"runInterval" : 60*60*24*2, # every 36 hours
"dlDirName" : "Hentai Foundry",
"shortName" : "hf"
},
"px" : # Pixiv
{
"username" : "username",
"password" : "password",
"threads" : 5,
"runInterval" : 60*60*24*2, # every 24 hours
"dlDirName" : "Pixiv",
"shortName" : "px"
},
"eh" : # Pixiv
{
"username" : "username",
"password" : "password",
"runInterval" : 60*60*24*2 # every 24 hours
},
}