Spaces:
Sleeping
Sleeping
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() | |