Module error #61
-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hello @hartard and welcome to programming/data science!
Out-of-the-box, I'm not sure if there is a specific user you're looking to analyze but if all you want to do is analyze some Instagram data for learning purposes, I've included a dataset and full analysis tutorial in the repo's tutorial/examples section that might be of some use to you! |
Beta Was this translation helpful? Give feedback.
Hello @hartard and welcome to programming/data science!
dynamic_profile
is a module that only appears in some of the examples (i.e. here) and is not an official module that can be imported from the library. The reason it's there is to show how dynamic content can be acquired by extendinginstascrape
with a tool such as selenium. Check out the docs to see what tools are officially supported!Out-of-the-box,
instascrape
does not render any JavaScript and only scrapes data served back by Instagram in the form of static HTML content. You're certainly not alone in wanting to scrape dynamic content as I've had quite a few people asking for a step-by-step tutorial on writing a dynamic content sc…