
Now you can run the code, and the output will be as follows: 22:17:17,366 - INFO - Instabot version: 0.117.0 Started

Well all you need to do is add a line of code there: from instabot import Bot Now let us modify the above code to get your list of followers. It will have all the log information there. You will also find one directory/folder created called config. You can see that our login was a successful one. So basically the bot mimics a real device and performs the login. 22:17:17,656 - INFO - Logged-in successfully as 'instacodeblog'! 22:17:14,368 - INFO - LOGIN FLOW! Just logged-in: False 22:17:14,367 - INFO - Recovery from from instabot import Botīot.login(username="instacodeblog", password="MY_SECTRET_PASSWORD_HERE") We will start by importing the necessary file and performing the login. Before that, you will be surprised that we can write this bot with just FOUR lines of Code. It sounds cool but let me not make it boring with lots of theoretical stuff. You can check the instabot-py documentation for more information. See the library is really a powerful one.
