skip to Main Content

How do I parse site html with "span"?

I'am new in web-parsing and I ran into a problem. I wanna extract number of watching from the site: enter image description here I wrote this code for that purpose: url = 'https://www.kommersant.ru/doc/4638344' request = requests.get(url) req = request.text soup=BeautifulSoup(req,…

VIEW QUESTION
Back To Top
Search