Git Product home page Git Product logo

pyscrape's Introduction

Scrape and Parse Text From Websites

Collecting data from websites using an automated process is known as web scraping. Some websites explicity forbid users from scraping their data with automated tools.

This is happening for two possible reasons:

  • The site has to protect its data, Google maps will not allow you to request too many results too quickly
  • Making many repeated requests to a website's server may use up bandwidth, slowing down the website and potentially overloading the server.

You need to be familiar with the basics of HTML

Scrape specific information from webpage

We can scrape specific information from the webpage using text parsing. For instance, if we wanted to get the title of the webpage, we could use the string find() method to seatch through the text of the HTML for the title tags and parse out the actual title.

Errors

  • If you call urlopen() without internet connection you get this error
$ URLError: <urlopen error [Errno 11001] getaddrinfo failed>
  • If you provide an invalid web address that can't be found
$ HTTPError: HTTP Error 404: Not Found

The previous scripts will work on a very simple website, but won't work on a complicated or far less predictable website.

For example, try to run the previous scripts by changing the address

my_address = "https://realpython.com/practice/poseidon.html"

Because the tag is <title > and not <title> our find() method returned -1 (because the exact string <title> wasn't found anywhere)

Scrape specific table from webpage

Scraping HTML tables can be difficult for various reasons:

  • The table HTML element is composite. It typically has several inner elements used to describe table structure. As a simple example:
<table>
  <tr>
    <th>Name</th>
    <th>Age</th>
  </tr>
  <tr>
    <td>Alice</td>
    <td>24</td>
  </tr>
  <tr>
    <td>Bob</td>
    <td>26</td>
  </tr>
</table>

The table tag has three child levels:

  1. <tr> (table rows) elements. Each table has a series of row elements.
  2. <th> (table headers) or <td> (table data) elements. Each row in turn has a series of <th> and <tr> elements.
  3. The actual table data (Alice, 24, Bob, 26). This is the actual table data that you want to 'scrape', or transform into a Python list.
  • Table headers are optional. For example, this is also a valid HTML table:
<table>
  <tr>
    <td>Alice</td>
    <td>24</td>
  </tr>
  <tr>
    <td>Bob</td>
    <td>26</td>
  </tr>
</table>
  • Each table row can have a different number <td> elements. Here is another valid table:
<table>
  <tr>
    <th>Name</th>
    <th>Age</th>
  </tr>
  <tr>
    <td>Alice</td>
    <td>24</td>
    <td>$15.60</td>
  </tr>
  <tr>
    <td>Bob</td>
    <td>26</td>
  </tr>
</table>
  • There is nothing in the HTML standard that helps you determine a table data point type, or to enforce that a column in a table has consistent data:
<table>
  <tr>
    <td>24</td>
    <td>Alice</td>
  </tr>
  <tr>
    <td>Bob</td>
    <td>26</td>
  </tr>
</table>
  • Web browser will forgivingly display HTML tables that are not properly formed:
<table>
  <tr>
    <td>24
    <td>Alice</td>
  <tr>
    <td>Bob</td>
    <td>26
  </tr>
</table>
  • The table HTML element is (ab)used for purposes other than representing tabular data, like web page layout:
<table style="width:100%;">
  <tr>
    <td colspan="2">
      Alice
    </td>
  </tr>
  <tr style="height:170px;">
    <td style="width:20%;">
      24
    </td>
    <td style="width:80%;">
      Bob
    </td>
  </tr>
  <tr>
    <td colspan="2">
      26
    </td>
  </tr>
</table>

This is only a portion of the problems you will encounter when trying to pase HTML tables. Here is one really messed up table (and it gets worse):

<table border='1'>
  <tr>
    <th><a href='#'>Name</a></th>
    <th><h3><b>Age</b></h3>
  <tr>
    <td><p><small>Alice</small></p></td>
    <td><ul><li>24</li><li>$15.60</li></ul></td>
  </tr>
  <tr>
    <td><pre><i><q>26</q></i></pre></td>
    <td>Bob
  </tr>
</table>

That said, people can (and do) succesfully scrape data from HTML tables. You have two options when creating a script that parses HTML tables: you either need to know in advance the table structure, or you need to take into account the most common possible edge cases of table structure.

As with any other web scraping script the steps to write a script that scrapes a HTML table are:

  • Get the raw source of the HTML page that contains your table. You can use two Python libraries for this purpose: urllib and requests. You can use either to get a blob of unstructured text from a HTML page, including meta data, tags and JavaScript functions.
from urllib.request import urlopen
my_address = "https://realpython.com/practice/aphrodite.html"
html_page = urlopen(my_address)
html_text = html_page.read().decode('utf-8')

or

import requests
url = 'https://pypi.python.org/pypi'
request = requests.get(url)
source = request.text
  • Convert the page source into something you can traverse and extract the data you need. The most commonly used Python libraries are BeautifulSoup and lxml.
soup = BeautifulSoup(source, 'html.parser')
  • Access the table and extract its data. In BeautifulSoup you do this using its find_all() method.
...
tables = soup.find_all('table')
table = tables[0]
...
for row in table.find_all('tr'):
    cells = row.find_all('td')
...
  • Print the data or convert it to a relevant Python data structure.

Here is a small example that uses requests and beautifulSoup to get the list of recently updated Python packages from the PyPI front page:

Scrape multiple tags from webpage

We can scrape multiple tags from a web page using bs4 --- Joe help again plz!!!

Narrow down tag searches

We can use a tag's html attributes or css classes to narrow down our searches. This saves us from sifting through multiple matches manually by making much more specific searches.

bs4.find_all can take tags and attributes to match elements with specific tags.

This matches only red headers:

soup.find_all('h1', color='red'
--- or ---
soup.find_all('h1', {'color': 'red'})

bs4 can also take only attribute arguments to make matches regardless of tag.

This matches all red text on a page, regardless if it is a header or paragraph:

soup.find_all(color='red')
--- or ---
soup.find_all(attrs={'color':'red'})

As you can see, we can supply attributes to find_all either as a dictionary or keyword arguments. If supplying a class as a keyword argument it must have a trailing underscore:

soup.find_all(class_='p-class')
--- or ---
soup.find_all(attrs={'class': 'p-class'}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.