This repository has been archived by the owner on Apr 20, 2023. It is now read-only.
v1.5.0
New feature
Introduced the Reel
scraper for scraping Instagram reels. Reel
is a subclass of Post
so pretty much everything you expect from Post
is available in Reel
as well.
Sample usage:
from instascrape import Reel
sample_reel = Reel("https://www.instagram.com/reel/CIrJSrFFHM_/")
sample_reel.scrape()
Bug fixes
json_from_url
Added optional/default request headers argument to instascrape.scrapers.json_from_url
unit tests
Fixed some of the broken unit tests. The library was fine but some of the tests were a little outdated and needed what appears to be required browser headers now to run properly.