-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_example.json
44 lines (37 loc) · 1.16 KB
/
config_example.json
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
/* Configuration file example
All keys below are REQUIRED. Feel free to use this as a template
for config.json. Make sure to remove all comments before starting the bot
(Python's json library throws errors when it attempts to parse comments). */
{
/* You may not leave this blank or provide 3 or more tags.
Use underscores instead of spaces. */
"tags":[
"tag1",
"tag2"
],
/* Score threshold for posts, must be an integer */
"score":0,
/* Favorite count threshold, must be an integer.
Use any number less than 1 to bypass */
"favorites":1,
/* Maximum number of posts to fetch from API, must be an integer or null */
"limit":null,
/* Tag and artist blacklists
Insert them like you would with above tags */
"blacklist":{
"tags":[
"naughty_tag"
],
"artists":[
"restricted_user"
]
},
/* Put your bot's Twitter API keys below (found in your Twitter app's
settings at https://apps.twitter.com/) */
"twitter_keys":{
"consumer":"",
"consumer_secret":"",
"access":"",
"access_secret":""
}
}