1 / 3

A Tutorial From Semalt: Web Scraping In Python

Semalt, semalt SEO, Semalt SEO Tips, Semalt Agency, Semalt SEO Agency, Semalt SEO services, web design, web development, site promotion, analytics, SMM, Digital marketing

sp79
Download Presentation

A Tutorial From Semalt: Web Scraping In Python

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 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

  2. 23.05.2018 Stage 1: download and save html pages Stage 2: parse html in a format suitable for further analysis (csv, json, pandas dataframe etc.) Instruments There are a lot of python-libraries for sending http-requests. The most famous and very handy one is Requests. It is also necessary to choose a library for html parsing. BeatifulSoup, lxml These are the two most popular libraries for parsing html and choosing one of them is just a personal preference. Moreover, these libraries are closely connected to each other: BeautifulSoup started to use lxml as an internal parser for acceleration, and in lxml, a soupparser module was added. To compare the approaches, I will parse the data with BeautifulSoup and using XPath selectors in the module lxml.html. Downloading Data Let's start downloading data. First of all, let's just try to get the page by url and save it to a local ?le. We open the resulting ?le and see that it's not that simple: the site considered us robot and won't show the data. Let's Find Out How The Site Works The browser has no problem in getting information from the site. Let's see how exactly it sends the request. To do this we use the "Network" panel in the "Developer Tools" in the browser (I use Firebug for this), usually, the request we need is the longest one. As we can see, the browser also sends to headers UserAgent, cookie and another number of parameters. First, we'll just try to send correct UserAgent to a header. This time we are successful, and now we are given the necessary data. It's worth noting that sometimes the site also checks the validity of cookie, in which case sessions in Requests library will help. Download All Rates Now we are able to save one page with rates. But usually the user has a lot of rates, and it's necessary to iterate through all pages. The page number that interests us is easy to transfer directly to the url. https://rankexperience.com/articles/article2219.html 2/3

  3. 23.05.2018 Collecting Data From Html Now let's get directly to collecting the data from html. The easiest way to understand how the html page is structured is by using the "Inspect element" function in the browser. In this case, everything is quite simple: the entire table with rates is in the tag. Select this node: from bs4 import BeautifulSoup from lxml import html # Beautiful Soup soup = BeautifulSoup(text) ?lm_list = soup.?nd('div', ('class': 'pro?leFilmsList')) # lxml tree = html.fromstring(text) ?lm_list_lxml = tree.xpath('//div[@class = ''pro?leFilmList'']')[0] Let's learn how to pull out Russian title of the movie and a link to the movie's page (also how to get the text and the value of the attribute). If you need to extract title in English just change "nameRus" to "nameEng". Results We learned how to parse websites, got acquainted with libraries Requests, BeautifulSoup, and lxml, as well as received data suitable for further analysis of already seen movies on KinoPoisk. https://rankexperience.com/articles/article2219.html 3/3

More Related