instagram-api

Downloading A Picture of an individual Instagram post with with Instaloader and Python

Downloading A Picture of an individual Instagram post with with Instaloader and Python Question: Using Python and the Instaloader package I am able to to download A profile Picture via this code import instaloader dp = instaloader.Instaloader() dp.download_profile(profile_name, profile_pic_only = True) All I have to do is provide the profile name. What I also want …

Total answers: 2

Instabot API for Python raises error after running code for the 2nd time

Instabot API for Python raises error after running code for the 2nd time Question: I am currently working with the Instabot API for python and I ran across the following issue: I wrote a small program: from instabot import Bot bot = Bot() bot.login(username = "[my username]", password = "[my passowrd]") bot.follow("lego") which worked fine …

Total answers: 1