From 3472dd72e77e34997d759e9c8d3a1c23a791b964 Mon Sep 17 00:00:00 2001 From: faraazkhan78 <80413609+faraazkhan78@users.noreply.github.com> Date: Wed, 10 Mar 2021 21:58:42 +0530 Subject: [PATCH] If r correct --- 3_instagram/instagram.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/3_instagram/instagram.py b/3_instagram/instagram.py index a29cbb0..d2bf896 100644 --- a/3_instagram/instagram.py +++ b/3_instagram/instagram.py @@ -1,12 +1,12 @@ from instabot import Bot bot = Bot() -bot.login(username="", password="") +bot.login(username="faraaz_temp", password="faraaz") ###### upload a picture ####### bot.upload_photo("yoda.jpg", caption="biscuit eating baby") ###### follow someone ####### -bot.follow("elonrmuskk") +bot.follow("faraaz_bhai78") ###### send a message ####### bot.send_message("Hello from Dhaval", ['user1','user2']) @@ -15,5 +15,3 @@ my_followers = bot.get_user_followers("dhavalsays") for follower in my_followers: print(follower) - -bot.unfollow_everyone()