-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsettings.py
More file actions
17 lines (15 loc) · 746 Bytes
/
settings.py
File metadata and controls
17 lines (15 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
topics = []
topics.append({
"name": "first_topic",
"subreddits": [ {"name": "BetterEveryLoop", "sort": "top", "time": "month", "limit": 50},
{"name": "interestingasfuck", "sort": "top", "time": "month", "limit": 50} ],
"MAX_CLIP_TIME": 10 * 60.0, # seconds
"MAX_SUBCLIP_TIME": 20.0, # seconds
})
topics.append({
"name": "second_topic",
"subreddits": [ {"name": "AnimalsBeingJerks", "sort": "top", "time": "month", "limit": 50},
{"name": "AnimalsBeingDerps", "sort": "top", "time": "month", "limit": 50} ],
"MAX_CLIP_TIME": 10 * 60.0, # seconds
"MAX_SUBCLIP_TIME": 20.0, # seconds
})