📸 InstaCapture Anonymously Download Instagram Stories, posts, reels, IGTV videos, and profile pictures 🕵️♂️📥
InstaCapture is a Python package for downloading Instagram stories, posts, reels, IGTV videos, and profile pictures. It provides two main modules: InstaStory
for handling stories using user cookies and InstaPost
for downloading reels, posts, IGTV videos, and profile pictures without requiring cookies.
- Download Instagram stories using user cookies.
- Download reels, posts, IGTV videos, and profile pictures without cookies.
Install the package using pip:
pip install InstaCapture
from InstaCapture import InstaStory, InstaPost
cookies = {}
story_obj = InstaStory()
story_obj.cookies = cookies
story_obj.username = 'Enter username or profile link'
story_obj.get_story()
story_obj.username = 'Enter username or profile link'
story_obj.get_story()
- Open Chrome and go to Instagram.
- Log in to your account.
- Right-click anywhere and select Inspect.
- Go to the Network tab.
- Refresh the page.
- Find a request to
instagram.com
. - Click on the request.
- Right-click on the request and select Copy as cURL.
- Paste the copied cURL command into a tool like cURL to Python Converter.
- Copy the cookies from the converted Python code.
- Assign these cookies to the
cookies
variable in your script.
post_obj = InstaPost()
post_obj.reel_id = "Enter Post/Reel URL or code"
post_obj.media_download()
post_obj.reel_id = "Enter another Post/Reel URL or code"
post_obj.media_download()
- Ensure your cookies are up to date for downloading stories.
- For post, reel, IGTV, and profile picture downloads, cookies are not required.
This project is licensed under the MIT License.
Created by Prathmesh Soni
For more details, visit GitHub Repo.
Let me know if you'd like any modifications!