From 5610a8d9c40e01bb4b7e023ef2487369ae0a4849 Mon Sep 17 00:00:00 2001 From: 4G3NT <76431337+4G3NT@users.noreply.github.com> Date: Wed, 21 Jun 2023 05:45:00 -0700 Subject: [PATCH] instaloader: add page (#10393) * instaloader: add page * instaloader: apply suggestions --------- Co-authored-by: K.B.Dharun Krishna Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --- pages/linux/instaloader.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 pages/linux/instaloader.md diff --git a/pages/linux/instaloader.md b/pages/linux/instaloader.md new file mode 100644 index 000000000..59434c37c --- /dev/null +++ b/pages/linux/instaloader.md @@ -0,0 +1,37 @@ +# instaloader + +> Download pictures, videos, captions, and other metadata from Instagram. +> Note: You will need to provide Instagram login information if you want high-quality media downloads. +> More information: . + +- Download a profile: + +`instaloader {{profile_name}}` + +- Download highlights: + +`instaloader --highlights {{profile_name}}` + +- Download posts with geotags (if available), suppressing any user interaction: + +`instaloader --quiet --geotags {{profile_name}}` + +- Specify a user agent for HTTP requests: + +`instaloader --user-agent {{user_agent}} {{profile_name}}` + +- Specify login info and download posts (useful for private profiles): + +`instaloader --login {{username}} --password {{password}} {{profile_name}}` + +- Skip a target if the first downloaded file has been found (useful for updating Instagram archives): + +`instaloader --fast-update {{profile_name}}` + +- Download stories and IGTV videos (login required): + +`instaloader --login {{username}} --password {{password}} --stories --igtv {{profile_name}}` + +- Download all types of posts (login required): + +`instaloader --login {{username}} --password {{password}} --stories --igtv --highlights {{profile_name}}`