This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | hashtag_list = ['travelblog', 'travelblogger', 'traveler'] | |
| # prev_user_list = [] - if it's the first time you run it, use this line and comment the two below | |
| prev_user_list = pd.read_csv('20181203-224633_users_followed_list.csv', delimiter=',').iloc[:,1:2] # useful to build a user log | |
| prev_user_list = list(prev_user_list['0']) | |
| new_followed = [] | |
| tag = -1 | |
| followed = 0 | |
| likes = 0 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | from selenium import webdriver | |
| from selenium.webdriver.common.keys import Keys | |
| from time import sleep, strftime | |
| from random import randint | |
| import pandas as pd | |
| chromedriver_path = 'C:/Users/User/Downloads/chromedriver_win32/chromedriver.exe' # Change this to your own chromedriver path! | |
| webdriver = webdriver.Chrome(executable_path=chromedriver_path) | |
| sleep(2) | |
| webdriver.get('https://www.instagram.com/accounts/login/?source=auth_switcher') |