Scraping Numbers from HTML using BeautifulSoup In this assignment you will write a Python program similar to http://www.py4e.com/code3/urllink2.py. 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.html (Sum=2553)
Actual data: http://py4e-data.dr-chuck.net/comments_689313.html (Sum ends with 25)
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:
<tr><td>Modu</td><td><span class=”comments”>90</span></td></tr>
<tr><td>Kenzie</td><td><span class=”comments”>88</span></td></tr>
<tr><td>Hubert</td><td><span class=”comments”>87</span></td></tr>You are to find all the <span> tags in the file and pull out the numbers from the tag and sum the numbers.
Look at the sample code 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.attrsYou 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 the assignment.
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 below:
Sum: (ends with 25)
Python code:
Approximate price: $22
We value our customers and so we ensure that what we do is 100% original..
With us you are guaranteed of quality work done by our qualified experts.Your information and everything that you do with us is kept completely confidential.You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.The Product ordered is guaranteed to be original. Orders are checked by the most advanced anti-plagiarism software in the market to assure that the Product is 100% original. The Company has a zero tolerance policy for plagiarism.The Free Revision policy is a courtesy service that the Company provides to help ensure Customer’s total satisfaction with the completed Order. To receive free revision the Company requires that the Customer provide the request within fourteen (14) days from the first completion date and within a period of thirty (30) days for dissertations.The Company is committed to protect the privacy of the Customer and it will never resell or share any of Customer’s personal information, including credit card data, with any third party. All the online transactions are processed through the secure and reliable online payment systems.By placing an order with us, you agree to the service we provide. We will endear to do all that it takes to deliver a comprehensive paper as per your requirements. We also count on your cooperation to ensure that we deliver on this mandate.
Scraping Numbers from HTML using BeautifulSoup In this assignment you will write a Python program
Never use plagiarized sources. Get Your Original Essay on
Scraping Numbers from HTML using BeautifulSoup In this assignment you will write a Python program
Hire Professionals Just from $11/Page