I am trying to extract the number of "confirmados" cases of COVID-19 from this page https://coronavirus.gob.mx/datos/
This is my line of code table_div = soup.find('div', {"id": "gsPosDIV"})
but is not working, I am really neophyte with web scraping.
Which is the correct form to extract this data?
This is the html
<div id="gsPosDIV" class="h5 mb-0 font-weight-bold text-gray-800">47,144</div
html
code? – 0m3r