Skip to content

Instantly share code, notes, and snippets.

@MichelleDalalJian
Last active January 9, 2025 13:42
Show Gist options
  • Save MichelleDalalJian/2c9aaadbda21290e1ccfc87a9ab1f937 to your computer and use it in GitHub Desktop.
Save MichelleDalalJian/2c9aaadbda21290e1ccfc87a9ab1f937 to your computer and use it in GitHub Desktop.
Scraping Numbers from HTML using BeautifulSoup. 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.
#Actual data: http://py4e-data.dr-chuck.net/comments_24964.html (Sum ends with 73)
from urllib import request
from bs4 import BeautifulSoup
html=request.urlopen('http://python-data.dr-chuck.net/comments_24964.html').read()
soup = BeautifulSoup(html)
tags=soup('span')
sum=0
for tag in tags:
sum=sum+int(tag.contents[0])
print(sum)
@SANJAY1-dev
Copy link

1000225654
Please help me in this assignment πŸ™

Sum:
Python Code:

Please πŸ™ πŸ™

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment