I have noticed if I request a url using
urllib.request.urlopen([my_url]).read()
I get something like this:
<html>
<head>
</head>
<body>
<span>...</span>
<body>
<script>
</script>
</html>
All the info I want for beautifulsoup is in that <span>...</span>
section. If I use a webdriver, then that section is included. But a webdriver seems to take longer, and causes my code to be a bit more messy. Is there way to retrieve the entirety of the HTML doc without using a webdriver?