Download Instagram Posts Using Python
- A very simple and easy code to download any Instagram post.
- This code redirects you to a website called savefrom.net where you can easily download the posts by pasting their url.
Source Code:
#Follow @Programmerfect
import webbrowser
post_url = input("Enter post url: ")
download_url = "savefrom.net/"+ post_url
webbrowser.open(download_url)
import webbrowser
post_url = input("Enter post url: ")
download_url = "savefrom.net/"+ post_url
webbrowser.open(download_url)