instascrape icon indicating copy to clipboard operation
instascrape copied to clipboard

Powerful and flexible Instagram scraping library for Python, providing easy-to-use and expressive tools for accessing data programmatically

Results 55 instascrape issues
Sort by recently updated
recently updated
newest added

Is it possible to get post information, from a public page such as this: https://www.instagram.com/p/CT-cnxGhvvO/ without login?

To find out if an Instagram profile is private, I send a simple query. However, I am facing a problem like this. Even non-private accounts return as Private. ``` from...

**Describe the bug** calling get_recent_comments from a scraped post results in keyerror: 'entry_data' headers = {"user-agent": "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Mobile Safari/537.36...

Hi! I'm currently trying to scrape the bio of the page I'm redirecting but instead is bringing my own profile bio: google = Profile('https://www.instagram.com/fiat_planes/') google.scrape(headers=headers) page_data = [] page_data.append(google.biography) page_data.append(google.followers)...

**Describe the bug** The get_recent_posts() method raises MissingCookieWarning, but we can't pass a valid cookie header to avoid that **To Reproduce** ```python from instascrape import * instagram_sessionid = "xxx" headers...

I am trying InstaScrape but I need to set a proxy (otherwise I have an error). How do I have to proceed?

enhancement

## Description Commits fb0c968 and b51f725: Adds a `download_carousel` method for `Post`s which allows you to download all media on carousel posts, i.e. posts with multiple images/videos, as raised in...

Hello - is there a way to scrape all photos when a single post contains multiple photos/videos? As you know, users can upload a collage of photos in a single...

## Description Really just a small thing: change the usage from lxml to html.parser in Profile, as you said you would do in #43 Fixes #43 #117 (issue) ## Checklist...