-
node-python-bridge:Node.js 到 Python 的桥接下载
资源介绍
蟒桥
最健壮和简单的 Python 桥。 以及下面其他 Python 桥的,支持 Windows。
应用程序接口
npm install python-bridge
'use strict' ;
let assert = require ( 'assert' ) ;
let pythonBridge = require ( 'python-bridge' ) ;
let python = pythonBridge ( ) ;
python . ex `import math` ;
python `math.sqrt(9)` . then ( x => assert . equal ( x , 3 ) ) ;
let list = [ 3 , 4 , 2 , 1 ] ;
python `sorted( ${ list } )` . then ( x => assert . deepEq