forked from InstaPy/InstaPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker_quickstart.py
48 lines (47 loc) · 1.02 KB
/
docker_quickstart.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
from instapy import InstaPy
insta_username = 'schoennyc'
insta_password = 'theman'
bot = InstaPy(username=insta_username, password=insta_password, selenium_local_session=False)
bot.set_selenium_remote_session(selenium_url='http://selenium:4444/wd/hub')
bot.login()
bot.set_relationship_bounds(enabled=True,
potency_ratio=-1.21,
delimit_by_numbers=True,
min_followers=40,
min_following=40)
bot.like_by_tags(['a7sii',
'a7s',
'rokinon',
'sonyalpha',
'atomos',
'film',
'35mm',
'film',
'filmphotographyfilmisnotdead',
'35mm',
'analog',
'movie',
'ishootfilm',
'cinema',
'filmcamera',
'believeinfilm',
'filmcommunity',
'analogue',
'kodak',
'analogphotography',
'staybrokeshootfilm',
'filmfeed',
'movies',
'buyfilmnotmegapixels',
'thefilmcommunity',
'shootfilm',
'socialdraft',
'35mmfilm',
'filmmaking',
'actor ',
'keepfilmalive',
'filmphoto',
'films',
'filmmaker',
'mediumformat'], amount=100)
bot.end()