So I'm making this scraper program but I would need to catch information that doesn't show up in the source code.
Here is what it looks like in the source :
<td><script> <type="text/javascript">SCRIPT("SUPERLONGVARIABLE")</script></td>
And I'd like to be able to catch the result (which is just a short string of about 5 - 20 letters).
Any idea how I could do that? Not sure if the requests module can help me on this one.
Thanks in advance guys! :)