23.05.2018
A Tutorial From Semalt: Web Scraping In Python
I have visited KinoPoisk (Russian version of IMDB) recently and found out that over the years I managed to rate over 1000 movies. I thought that it would be interesting to research these data more detailed: have my movie tastes changed over time? During which seasons of the year do I watch more movies? But before we analyze and build beautiful graphics, we need to get the data. Unfortunately, many services don't have public API, so you have to roll up your sleeves and parse the html pages. This article is intended for those who always wanted to learn how to use Web Scrapping but didn't get their hands on it or didn't know where to start.
Task Our task is to extract the data about already seen movies: the movie's title, the date and time of watching, the user's rating. In fact, our work is going to be done in 2 stages: https://rankexperience.com/articles/article2219.html
1/3