Skip to content

Instantly share code, notes, and snippets.

@hengstchon
Created June 7, 2019 19:57
Show Gist options
  • Save hengstchon/c5a362222bb4c3f43cfb1466cc423334 to your computer and use it in GitHub Desktop.
Save hengstchon/c5a362222bb4c3f43cfb1466cc423334 to your computer and use it in GitHub Desktop.
import requests
from bs4 import BeautifulSoup
with open("bank.html") as source:
soup = BeautifulSoup(source, "lxml")
sum = 0
for item in soup.div(class_="offscreen"):
try:
item = item.text.split(" ")[0]
integer, fraction = item.split(",")
num = float(integer + "." + fraction)
if num < 0:
sum += num
except Exception as e:
item = None
print(sum)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment