-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
example.config.json
65 lines (64 loc) · 1.48 KB
/
example.config.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"accounts": [
{
"username": "username",
"password": "password",
"request_timeout": 1,
"use_proxy": false,
"follow_users": {
"enabled": true,
"follows_per_day": 20,
"source_account": "instagram",
"engagement": {
"like_recent_posts": true,
"like_count": 3
}
},
"unfollow_users": {
"enabled": true,
"unfollow_after": "0-12-0-0"
},
"comment_on_media": {
"enabled": true,
"comment_on_tag": "instagram",
"amount_per_day": 50,
"comments": [
"Comments ..."
]
},
"upload_posts": {
"enabled": true,
"amount_per_day": 3,
"posts_dir": "./scheduled_posts",
"delete_after_upload": true,
"caption": "Cool caption.."
},
"upload_stories": {
"enabled": true,
"amount_per_day": 2,
"posts_dir": "/path_to_stories",
"delete_after_upload": true,
"caption": [
"Cool video caption..."
]
},
"download_posts_from_account": {
"enabled": true,
"source_account": "instagram",
"amount": 5,
"timeout": 2
},
"dm_accounts_from_list": {
"enabled": true,
"message": [
"Hey! \n\n This is a cool DM!"
],
"accounts": [
"username1",
"username2"
],
"timeout": 60
}
}
]
}