Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Scraping Numbers from HTML using BeautifulSoup. Find a Python program similar to http://www.py4e.com/code3/urllink2.pyLinks to an external site.. The program will use urllib to read the

Scraping Numbers from HTML using BeautifulSoup. Find a Python program similar to http://www.py4e.com/code3/urllink2.pyLinks to an external site.. The program will use urllib to read the HTML from the data files below, and parse the data, extracting numbers and compute the sum of the numbers in the file.

We provide two files for this assignment. One is a sample file where we give you the sum for your testing and the other is the actual data you need to process for the assignment.

Sample data: http://py4e-data.dr-chuck.net/comments_42.htmlLinks to an external site. (Sum=2553)
Actual data: http://py4e-data.dr-chuck.net/comments_1158965.htmlLinks to an external site. (Sum ends with 54)
You do not need to save these files to your folder since your program will read the data directly from the URL. Note: Each student will have a distinct data url for the assignment - so only use your own data url for analysis.

 

Data Format

The file is a table of names and comment counts. You can ignore most of the data in the file except for lines like the following:

Modu90
Kenzie88
Hubert87

You are to find all the tags in the file and pull out the numbers from the tag and sum the numbers.

Look at the sample codeLinks to an external site. provided. It shows how to find all of a certain kind of tag, loop through the tags and extract the various aspects of the tags.

...
# Retrieve all of the anchor tags
tags = soup('a')
for tag in tags:
   # Look at the parts of a tag
   print 'TAG:',tag
   print 'URL:',tag.get('href', None)
   print 'Contents:',tag.contents[0]
   print 'Attrs:',tag.attrs

You need to adjust this code to look for span tags and pull out the text content of the span tag, convert them to integers and add them up to complete.

 

Sample Execution

 

$ python3 solution.py
Enter - http://py4e-data.dr-chuck.net/comments_42.html
Count 50
Sum 2...

 

Turning in the Assignment

Enter the sum from the actual data and your Python code:
Sum: (ends with 54)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Principles Of Information Security

Authors: Michael E. Whitman, Herbert J. Mattord

7th Edition

035750643X, 978-0357506431

More Books

Students also viewed these Programming questions