I'm a beginner to web scraping. I'm attempting to scrape from this website. Except when I attempt to get some information in the following td element there is a text field missing, but this is there on the website when I look at its source.
Below is the code returned from the beautiful soup parser. On the webpage however there is a string put on right after the tag closes. I would like to be able to scrape this string, how would I do that
<td style="text-align:left; font-weight:bold;"><script type="text/javascript">document.write(Base64.decode(str_rot13("ZGL3Ywx5YwR1YwR2AN==")))</script></td>
Here is what is on the webpage
<td style="text-align:left; font-weight:bold;"><script type="text/javascript">document.write(Base64.decode(str_rot13("ZGDjYwVjAF4lZwVhZj==")))</script>140.205.222.3</td>
My question is why does this appear in the webpage source but not in the beautiful soup text & how would I go about obtaining this information?