https://github.com/jhviw/instagram-photo-downloader
Downloads all photos from a given Instagram profile.
https://github.com/jhviw/instagram-photo-downloader
Last synced: 3 months ago
JSON representation
Downloads all photos from a given Instagram profile.
- Host: GitHub
- URL: https://github.com/jhviw/instagram-photo-downloader
- Owner: JHVIW
- Created: 2024-07-24T11:03:40.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-07-24T11:05:33.000Z (10 months ago)
- Last Synced: 2025-01-12T11:44:59.049Z (4 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Instagram Photo Downloader
This project allows you to download all photos from an Instagram profile and save them in a single ZIP file. This script uses the `instaloader` library to fetch the images without creating any metadata files or directories.
## Features
- Downloads all photos from a given Instagram profile.
- Saves the photos in a ZIP file.
- Does not create any metadata files or directories.## Requirements
- Python 3.x
- `instaloader` library## Installation
1. Clone the repository:
```bash
git clone https://github.com/yourusername/instagram-photo-downloader.git
cd instagram-photo-downloader
```2. Install the required library:
```bash
pip install instaloader
```## Usage
Run the script and provide the Instagram username when prompted:
```bash
python main.py
```You will be asked to enter the Instagram username. The script will download all photos from the profile and save them in a ZIP file named after the username.
## Example
```bash
$ python main.py
Enter the Instagram username: exampleusername
Downloading photos from Instagram profile: exampleusername
All photos downloaded and saved to exampleusername.zip
```## Note
- Ensure you have the necessary permissions to download photos from the Instagram profile you specify.
- This script does not support downloading photos from private profiles.