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 to archive is, I want to download the picture of an individual post, such as: https://www.instagram.com/p/CgbAU5GD6MU/
Can this be done with Python instaloader?
Thanks!