Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
3k views

I've worked up a Python script using Instaloader (4.14) to pull images and descriptions off a feed of mine, which I then string parse and do stuff with. It's working perfectly when run on my laptop (...
jasonbstanding's user avatar
0 votes
1 answer
844 views

example, this is a post id : https://www.instagram.com/p/C8_ohdOR/ I want the image src. first I used selenium for to login and then crawl the image src. so by this I am getting the src. But is there ...
Ananya Ray's user avatar
0 votes
1 answer
996 views

I am trying to use instaloader python module to fetch data from any Instagram profile by username, but I encounter a 400 Bad Request - "fail" status, message "feedback_required" ...
omar abd el fattah's user avatar
3 votes
2 answers
3k views

I am trying to download the audio in the following format https://www.instagram.com/reels/audio/1997779980583970/. Below code is returning "Fetching metadata failed". I am able to download ...
JTX's user avatar
  • 411
0 votes
1 answer
540 views

Is it possible to only download the caption (the description) of a post, given the post short code, using python 3.12 and the latest version of the instaloader library? I am insterested in using ...
Michael Kariv's user avatar
1 vote
1 answer
912 views

Instaloader newest version 4.12.1 on Python 3.11.5 stopped downloading at the 12th post without raising any exception even though the user has 48 downloadable posts. L = instaloader.Instaloader( ...
Long Nguyen's user avatar
1 vote
1 answer
2k views

I have been trying to download a instagram reel using instaloader, but it downloads the reel without audio every time. How can i download the unmuted reel or is it even possible. I found this question ...
Om Kakkad's user avatar
2 votes
0 answers
876 views

How do I download a reel from Instagram with sound using a library called Instaloader in Python? import instaloader L = instaloader.Instaloader() post = instaloader.Post.from_shortcode(L.context, &...
Vijay Chauhan's user avatar
0 votes
0 answers
428 views

I want to download only comments to all posts. How can i do this? Now I'm downloading json files, images for posts and descriptions. but I probably only need json files to extract comments from there.
Tertiadecima's user avatar
3 votes
1 answer
1k views

I am constantly getting an error where when I try to scrape posts from a specific hashtag using instaloader, I am getting the error: JSON Query to explore/tags/hashtag/: 404 Not Found Here is my ...
OkPanda's user avatar
  • 33
0 votes
1 answer
950 views

I am currently using instaloader for scraping followers on Instagram, but it seems that I am not getting the full list of followers as expected. I want to scrape all the followers of a particular ...
Yuvraj Agawani's user avatar
0 votes
1 answer
715 views

I am trying to do scraping with the instaloader library in python in a firebase cloud function, but I have a strange behavior. When I run my code in the local firebase emulator it works perfect and I ...
pipeswk's user avatar
0 votes
0 answers
284 views

I need a way to not be see as a boot by instagram in order to avoid the 401 error by the intagram server this code is a leed generator that looks for posts with a certain hashtag and collects the user,...
joao paulo 's user avatar
0 votes
0 answers
225 views

I tried everyway including instaloader etc. But everytime I got a problem. How can I extract an user's general information? I tried to use instagram API but API only works on consumer accounts. I ...
freeengineer's user avatar
0 votes
1 answer
243 views

I want to print the amount of followers the target user has using instaloader. def FollowerCount(): return(profile.get_followers()) print(FollowerCount()) but I get this <instaloader....
JoubasaurusREX's user avatar
1 vote
0 answers
797 views

Library Link: https://github.com/instaloader/instaloader import instaloader ACCOUNT_USERNAME="" ACCOUNT_PASSWORD="" # Creating an instance of the Instaloader class bot = ...
Yash Chauhan's user avatar
1 vote
0 answers
2k views

'instaloader' is not recognized as an internal or external command, operable program or batch file. pip install instaloader instaloader --help error: 'instaloader' is not recognized as an internal or ...
user9260781's user avatar
1 vote
1 answer
473 views

Here is my code: import instaloader def download_instagram_post(post_url): # Create an instance of Instaloader loader = instaloader.Instaloader() # Download the post try: ...
AnotherRandomUser's user avatar
0 votes
1 answer
2k views

I'm just trying to login using the docs: import instaloader import pandas as pd # Creating an instance of the Instaloader class bot = instaloader.Instaloader() bot.login(user="USERNAME", ...
Setare Kalantari's user avatar
3 votes
2 answers
6k views

I am trying to download photos with a list of short codes from Instagram by using Instaloader module in Python. After several successful downloading, I received the following error: ...
complog's user avatar
  • 97
-1 votes
1 answer
854 views

I'm doing a project where I use the instaloader API for python and I want to download images from the feed and stories of a profile, but I want the loop code to only download the images if they are ...
Komand's user avatar
  • 1
-1 votes
1 answer
4k views

I have a problem with python library instaloader, this one is really cool but I can`t find a method to download a post by url or post id. Everything I have found is terminal command in official ...
Ян Макотин's user avatar
0 votes
1 answer
2k views

I'm trying to use instaloader to download instagram videos (reels) via "shortcode" of those videos (essentially the link to the video) this is my current approach: import instaloader L = ...
ypendi's user avatar
  • 1
1 vote
0 answers
2k views

I've downloaded instaloader, and i'm trying to download a private profile and use the --login command to make a session file. However each time i put it in and enter the password it gives C:\Users\...
tmax go's user avatar
  • 11
0 votes
1 answer
616 views

I'm trying to install instaloader and running into problems. IU've downloaded the github file, extracted it, installed python and pip, i think. Now while runninng pip3 install instaloader in the ...
tmax go's user avatar
  • 11
-1 votes
1 answer
198 views

I am using instaloader to scrape instagram posts as part of a study project. To avoid getting shut down by instagram, I use sleep function to sleep between 1-20 sec between each round. This works well....
Emma Nitz's user avatar
0 votes
1 answer
2k views

The title sounds a bit confusing but I am trying to get the follower count of all of the followers of an instagram page. So an example output would be John 17 followers adam 120 followers will ...
mcccc's user avatar
  • 13
0 votes
1 answer
1k views

Im trying to get the list of the followers in my instagram account. I see that the program succeeds to log in because every time I run it I receive an email from instagram about a new access to my ...
Alessandro Michelotti's user avatar
0 votes
1 answer
2k views

I'm doing an Instagram scraper (specifically I'm extracting the data of the following accounts from a primary account) and the program sends me an exception error: The program only scrapes 200 ...
Santiago Betancourt's user avatar
0 votes
1 answer
367 views

I'm not sure the root of this problem - ultimately, I'm trying to retrieve the followers of an Instagram account ("strengthinsheets") and their number of followers. There are no issues with ...
Anthony Madle's user avatar
0 votes
0 answers
383 views

Where do I look for this problem? from instaloader import Instaloader, Profile import instaloader L = instaloader.Instaloader() L.load_session_from_file("wetbanana420") L....
Vibe Improvement's user avatar
1 vote
0 answers
814 views

This code is working for downloading Instagram videos from instaloader import Instaloader, Profile L = Instaloader() L.login("username","Pass") PROFILE = "instagram" ...
Rasedul Islam's user avatar
1 vote
1 answer
3k views

Using Python and the Instaloader package I am able to to download A profile Picture via this code import instaloader dp = instaloader.Instaloader() dp.download_profile(profile_name, ...
69JonDoe69's user avatar
0 votes
0 answers
225 views

I want to download followers of an instagram account using instaloader ,but the profile i want to scrape contains almost 800 followers and instaloader allows me to scrape 200 followers for single code ...
zohaib hassan's user avatar
0 votes
1 answer
94 views

I've used Instaloader to collect profile data and push to a Google Sheet. In terminal, the output is correct. When the info loads into the spreadsheet - the numbers are inaccurate. I've tried ...
Anthony Madle's user avatar
1 vote
1 answer
58 views

I am trying to understand a Python package called Instaloader and how many requests are actually being made to the Instagram server. With Instaloader, one can create a Profile instance from a given ...
root_seeker's user avatar
3 votes
3 answers
7k views

I am trying to scrape data from Instagram using the 'instaloader' python modules. When using this code: import instaloader L = instaloader.Instaloader() L.login(USERNAME, PASSWORD) The code throws ...
shahzaib.hayan's user avatar
1 vote
1 answer
315 views

I just made a simple project with Tkinter GUI, but when I launch it and enter username, its window stops responding 'til the requests and instaloader processes are done, then it will be ok. Can I make ...
sina janiloran's user avatar
2 votes
1 answer
2k views

Can it be done like this: If load_session_from_file fails, for example because the password has changed, is there any way to catch the error and for example authorize via username and password? Like ...
nnekkitt's user avatar
0 votes
1 answer
689 views

I'm looking to simply input a series of hashtags and be outputted with those hashtags and their associated post count. I believe I can use the mediacount property: "The count of all media ...
Kal-Toh's user avatar
  • 87
1 vote
1 answer
2k views

I'm trying to download all stories of what my profile follows using "Instaloader" in a Python module. The default naming pattern uses "{date_utc}_UTC". I want to name all stories ...
SG pro's user avatar
  • 11
0 votes
1 answer
1k views

I going to Python from C# for a few days and don't know how to get callback functions in Python? Please advise how I can find out if the login was successful and otherwise give me a chance to retry ...
KiynL's user avatar
  • 4,266
1 vote
0 answers
610 views

I am using the Instaloader Python API for a project. Every time I successfully log-in I get a notification on my Instagram app that someone tried to connect to my account. Everything is ok, I can ...
Gianluca Bianco's user avatar
1 vote
0 answers
477 views

Which code i can add to this code to get information about data to each saved post using instalouder? Please help! import instaloader def save_insta_collection(): username = 'cursach2022' loader = ...
Маша Терновская's user avatar
0 votes
0 answers
233 views

I got an error saying AttributeError: 'LockedStream' object has no attribute 'encoding' when im trying to import Instaloader. Anyone seems to know why? Here's the screenshot of the error Been ...
Jacque Yan's user avatar
2 votes
3 answers
2k views

Currently, the below code returns all the posts from the profile: profilename = 'oneplus' loader = instaloader.Instaloader() profile = Profile.from_username(loader.context,profilename) posts = ...
Badri Narayanan S's user avatar
0 votes
0 answers
196 views

I wrote an app that uses Instaloader and kivy and added all the requirments to the buildozer.spec file buildozer.spec requirements: requirements = python3,kivy,kivymd,pillow,requests,urllib3,certifi,...
ItsMoi's user avatar
  • 21
4 votes
2 answers
12k views

This code is working for downloading all photos and videos from instaloader import Instaloader, Profile L = Instaloader() PROFILE = "username" profile = Profile.from_username(L.context, ...
Rasedul Islam's user avatar
0 votes
1 answer
6k views

I use the below script all the time and it works great for the follower and followee lists. How can I also scrape the full name of the user if it is provided? I'm aware of '''property full_name''' but ...
Phelan's user avatar
  • 1
0 votes
1 answer
209 views

>>> import instaloader >>> >>> insta=instaloader.Instaloader() >>> >>> insta.login('myusername', 'mypassword') >>> >&...
Phelan's user avatar
  • 1