Metadata-Version: 2.1
Name: insta-scraper
Version: 1.1.1
Summary: A python tool to download instagram users media.
Home-page: UNKNOWN
Author: Naveen Tummidi
Author-email: naveentummidi0807@gmail.com
License: MIT
Project-URL: Funding, https://donate.pypi.org
Keywords: instagram instagram-scraper
Platform: UNKNOWN
Classifier: Topic :: Software Development :: Libraries
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: bs4
Requires-Dist: wget
Requires-Dist: argparse

# Instagram Photos/Videos/Stories downloader

> A python tool to download instagram users media including their photos, videos and statuses/highlights. Requires Python2.7

**Features**

- Downloading of multiple users media is supported.
- Doesn't use Instagram API.
- Runs on Windows and Linux.

## Installation

This tool can be installed via `pip`

```bash
$ pip install insta-scraper
```

## Usage

To download a single user media

```bash
$ insta-scraper -u YOUR_INSTAGRAM_USERNAME -t TARGET_USERNAME
```


To download multiple users media

```bash
$ insta-scraper -u YOUR_INSTAGRAM_USERNAME -t TARGET_USERNAME TARGET_USERNAME1
```


Or you can even specify a file that contains target usernames seperated by newline.

```bash
$ insta-scraper -u YOUR_INSTAGRAM_USERNAME -f target_users.txt
```


You can execute below command to download all your instagram friends media once.

```bash
$ insta-scraper -u YOUR_INSTAGRAM_USERNAME
```


Here are the helpful arguments.

```

-u/--user		Instagram username which will be used for login

-t/--target-users	To specify one or more users followed by a space

-f/--filename		Filename containing instagram usernames followed by newline

-o/--output-dir		Output directory to store user's media.

```


