17 May, 2021, at 09:56 PM WIB (0 comments)
Instaloader is a python tool to download from an instagram profile. The plus point of this tool compared to instalooter is that it can download instagram stories, highlights, IGTV, and tagged posts, instead of just posts of the target profile. Following through its documentations, I wrote three scripts:
#!/bin/bash
instaloader --dirname-pattern={profile} --filename-pattern=Stories/{date_utc:m-H-S} $1 --stories --no-profile-pic --no-posts --no-video-thumbnails -F --login=<myprofile>
igs.sh
, and <target>
is the username we want to download, then we would do:
$./igs.sh <target>
--dirname-pattern={profile}
would create a folder with the target's username as its folder name.
--filename-pattern=Stories/{date_utc:m-H-S}
argument, it would create a folder called "Stories" inside that target username.
#!/bin/bash
instaloader --dirname-pattern={profile} --filename-pattern=Highlights/{date_utc:m-H-S} $1 --highlights --no-profile-pic --no-posts --no-video-thumbnails -F --login=<myprofile>
igh.sh
, and <target>
is the username we want to download, then we would do:
$./igh.sh <target>
--dirname-pattern={profile}
would create a folder with the target's username as its folder name.
--filename-pattern=Highlights/{date_utc:m-H-S}
argument, it would create a folder called "Highlights" inside that target username.
#!/bin/bash
instaloader --dirname-pattern={profile} --filename-pattern=IGTV/{date_utc:m-H-S} $1 --igtv --no-profile-pic --no-posts --no-video-thumbnails -F --login=<myprofile>
igtv.sh
, and <target>
is the username we want to download, then we would do:
$./igtv.sh <target>
--dirname-pattern={profile}
would create a folder with the target's username as its folder name.
--filename-pattern=IGTV/{date_utc:m-H-S}
argument, it would create a folder called "IGTV" inside that target username.