python3调用js的库之execjs

阅读更多
执行JS的类库:execjs,PyV8,selenium,node

这里主要讲一下execjs,一个比较好用且容易上手的类库(支持py2,与py3),支持 JS runtime。

[url]https://pypi.org/project/PyExecJS/[/url] [url]https://www.cloudlakenet.com[/url]

(一)安装:
pip install PyExecJS
1
or

easy_install PyExecJS
1
(二)运行时环境
execjs会自动使用当前电脑上的运行时环境(建议用nodejs,与Phantomjs)

>>> execjs.get().name # this value is depends on your environment.
>>> os.environ["EXECJS_RUNTIME"] = "Node"
>>> execjs.get().name
'Node.js (V8)' 

通过运行时环境运行js

>>> default = execjs.get() # the automatically picked runtime
>>> default.eval("1 + 2")
3
>>> import execjs.runtime_names
>>> jscript = execjs.get(execjs.runtime_names.JScript)
>>> jscript.eval("1 + 2")
3
>>> import execjs.runtime_names
>>> node = execjs.get(execjs.runtime_names.Node)
>>> node.eval("1 + 2") 
就好比是这样子的 


(3)简单案例
>>> import execjs
>>> execjs.eval("'red yellow blue'.split(' ')")
['red', 'yellow', 'blue']
>>> ctx = execjs.compile("""
...     function add(x, y) {
...         return x + y;
...     }
... """)
>>> ctx.call("add", 1, 2) 

你可能感兴趣的:(python3调用js的库之execjs)