From 58eb962cc0aaaed31da183128cd20d216a9552d5 Mon Sep 17 00:00:00 2001 From: dhavalsays <60363945+dhavalsays@users.noreply.github.com> Date: Tue, 26 Jan 2021 08:44:12 -0500 Subject: [PATCH] Delete instagram.py --- 3_instagram/instagram.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 3_instagram/instagram.py diff --git a/3_instagram/instagram.py b/3_instagram/instagram.py deleted file mode 100644 index e26173a..0000000 --- a/3_instagram/instagram.py +++ /dev/null @@ -1,19 +0,0 @@ -from instabot import Bot -bot = Bot() -bot.login(username="dhavalsays", password="ienjoy123") - -###### upload a picture ####### -bot.upload_photo("yoda.jpg", caption="biscuit eating baby") - -###### follow someone ####### -bot.follow("elonrmuskk") - -###### send a message ####### -bot.send_message("Hello from Dhaval", ['user1','user2']) - -###### get follower info ####### -my_followers = bot.get_user_followers("dhavalsays") -for follower in my_followers: - print(follower) - -bot.unfollow_everyone()