I've been attempting to pull some data from a website that appears to have multiple levels of html. It occurred to me from all the examples I've seen that BeautifulSoup is a great product if you're trying to locate data that isn't so nested far down the tree.
For my little project, I'm trying to have BeautifulSoup pull data from the following location.
Any help would be greatly appreciated.
<html lang=“en”>
<body>
<div id=“wrapper”>
<div id=“app_timeline”>
<div id=“timeline-summary”
<div id=“timeline-summary-sticky”>
<div class=“summary-list”>
<div>
<div class=“summary-type”>
<div class=“details”>
<div class=“value”>
<div>
<span class=“number”>100</span>
The number 100 changes daily so I'd like to write something that could pull this data when I run some python code.
TIA