I'm trying to extract, with python, some javascript variables from an HTML site:
<script>
var nData = new Array();
var Data = "5b7b......";
nData = CallInit(Data);
...
...
</script>
I can see the content of "nData" in firebug (DOM Panel) without problem:
[Object { height="532", width="1280", url="https://example.org...8EDA4F3F5F395B9&key=lh1", more...}, Object { height="266", width="640", url="https://example.org...8EDA4F3F5F395B9&key=lh1", more...}]
The content of nData is an URL. How can i parse/extract the content of nData to python? It's possible?
Thanks