Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from instabot import Bot
- bot = Bot()
- bot.login(username="", password="")
- ###### 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)
- ####### Unfollow Everyone #######
- bot.unfollow_everyone()
- ###### Upload An Image #######
- file = open('image_path', 'r')
- bot.upload_photo(file, caption="image_caption")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement