DEV Community

Discussion on: Downloading recent Instagram photos using instascrape and Python

Collapse
 
chrisgreening profile image
Chris Greening

Yes! Just use the Post object on it's own like so:

from instascrape import Post
google_post = Post("https://www.instagram.com/p/CGiWeQjl4DI/")
google_post.download("/your/image/path.png")
Enter fullscreen mode Exit fullscreen mode