Spaces:
Runtime error
Runtime error
File size: 210 Bytes
ce4e319 |
1 2 3 4 5 6 7 8 9 10 |
import instabot
def insta_post(username, password, caption, image):
bot = instabot.Bot()
bot.login(username=username, password=password)
bot.upload_photo(image, caption=caption)
bot.logout()
|