forked from subzeroid/instagrapi
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbot.py
More file actions
141 lines (115 loc) · 3.43 KB
/
Copy pathbot.py
File metadata and controls
141 lines (115 loc) · 3.43 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
import os
from time import sleep
from typing import Dict, List
from instagrapi import Client
from instagrapi.types import UserShort
IG_USERNAME = ''
IG_PASSWORD = ''
IG_CREDENTIAL_PATH = './ig_settings.json'
SLEEP_TIME = '600' # in seconds
class Bot:
_cl = None
def __init__(self):
self._cl = Client()
if os.path.exists(IG_CREDENTIAL_PATH):
self._cl.load_settings(IG_CREDENTIAL_PATH)
self._cl.login(IG_USERNAME, IG_PASSWORD)
else:
self._cl.login(IG_USERNAME, IG_PASSWORD)
self._cl.dump_settings(IG_CREDENTIAL_PATH)
def follow_by_username(self, username) -> bool:
"""
Follow a user
Parameters
----------
username: str
Username for an Instagram account
Returns
-------
bool
A boolean value
"""
userid = self._cl.user_id_from_username(username)
return self._cl.user_follow(userid)
def unfollow_by_username(self, username) -> bool:
"""
Unfollow a user
Parameters
----------
username: str
Username for an Instagram account
Returns
-------
bool
A boolean value
"""
userid = self._cl.user_id_from_username(username)
return self._cl.user_unfollow(userid)
def get_followers(self, amount: int = 0) -> Dict[int, UserShort]:
"""
Get bot's followers
Parameters
----------
amount: int, optional
Maximum number of media to return, default is 0 - Inf
Returns
-------
Dict[int, UserShort]
Dict of user_id and User object
"""
return self._cl.user_followers(self._cl.user_id, amount=amount)
def get_followers_usernames(self, amount: int = 0) -> List[str]:
"""
Get bot's followers usernames
Parameters
----------
amount: int, optional
Maximum number of media to return, default is 0 - Inf
Returns
-------
List[str]
List of usernames
"""
followers = self._cl.user_followers(self._cl.user_id, amount=amount)
return [user.username for user in followers.values()]
def get_following(self, amount: int = 0) -> Dict[int, UserShort]:
"""
Get bot's followed users
Parameters
----------
amount: int, optional
Maximum number of media to return, default is 0 - Inf
Returns
-------
Dict[int, UserShort]
Dict of user_id and User object
"""
return self._cl.user_following(self._cl.user_id, amount=amount)
def get_following_usernames(self, amount: int = 0) -> List[str]:
"""
Get bot's followed usernames
Parameters
----------
amount: int, optional
Maximum number of media to return, default is 0 - Inf
Returns
-------
List[str]
List of usernames
"""
following = self._cl.user_following(self._cl.user_id, amount=amount)
return [user.username for user in following.values()]
def update(self):
"""
Do something
"""
pass
if __name__ == '__main__':
bot = Bot()
bot.follow_by_username('futbot__')
while True:
"""
Infnit loop
"""
bot.update()
sleep(SLEEP_TIME)