Skip to content

terryso/ins-grabber

Repository files navigation

Instagram Media Grabber

A CLI tool for downloading media from Instagram accounts.

Installation

npm install -g ins-grabber

Usage

Command Line

ins-grab download -c config.json

Download from single account

ins-grab download -u username

Download with specific media types

ins-grab download -u username -t image,video

Download with config file

ins-grab download -c ./config.json

Show help

ins-grab download --help

Configuration File

{
  "accounts": [
    {
      "username": "example_account",
      "lastFetch": null,
      "maxItems": 100,
      "mediaTypes": ["image", "video"]
    }
  ],
  "fetchInterval": "1d"
}

Options

  • -c, --config: Path to config file
  • -u, --username: Single account username
  • -t, --types: Media types to download (image,video)
  • -m, --max-items: Maximum items to download
  • -p, --proxy: Proxy URL (optional)
  • --timeout: Request timeout in milliseconds

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published