我正在學習pyqt,用於解析網頁。如何使用pyqt評估javascript
現在我想用PyQt的評估JavaScript函數就像這個回答做到: spidermonkey evaluate js function which in remote js file
import urllib2
import spidermonkey
js = spidermonkey.Runtime()
js_ctx = js.new_context()
script = urllib2.urlopen('http://etherhack.co.uk/hashing/whirlpool/js/whirlpool.js').read()
js_ctx.eval_script(script)
js_ctx.eval_script('var s = "abc"')
js_ctx.eval_script('print(HexWhirlpool(s))')
我想知道如何使用PyQt的SpiderMonkey的,而不是來達到同樣的效果。
請更具體地說明你準備實現的是什麼,如果可能的話,在你的文章中添加一些示例代碼 – 2013-05-13 10:23:52
感謝你的建議 – Grep 2013-05-13 12:14:23