Node.js 与 Python 混合编程

2018-09-05  本文已影响0人  RoyLin1996

有一个需求是做一个基于 Node.js 的程序化股票交易功能。
既然 Python 已经有现成的 easytrader、easyquotation ,那就不要再去重复造轮子。

image.png
main.py

import sys, json, easyquotation

for line in sys.stdin:    
    quotation = easyquotation.use('sina')
    stockList = quotation.stocks(json.loads(line), prefix=True)

    print(json.dumps(stockList))
index.js

const { PythonShell } = require('python-shell');

let options = {
    mode: 'json',
    pythonPath: '/usr/local/bin/python3',
};

const shell = new PythonShell('main.py', options);

shell.send(['600000', '300001']);

shell.on('message', function (message) {
    console.log(message);
});

shell.end(() => {
    console.log('执行完毕');
});

主要使用 python-shell 这个库

$ sudo node index.js

{ sh600000: 
   { name: '"浦发银行',
     open: 10.31,
     close: 10.37,
     now: 10.22,
     high: 10.37,
     low: 10.21,
     buy: 10.22,
     sell: 10.23,
     turnover: 8683386,
     volume: 89312973,
     bid1_volume: 76499,
     bid1: 10.22,
     bid2_volume: 577300,
     bid2: 10.21,
     bid3_volume: 537400,
     bid3: 10.2,
     bid4_volume: 117600,
     bid4: 10.19,
     bid5_volume: 99400,
     bid5: 10.18,
     ask1_volume: 1300,
     ask1: 10.23,
     ask2_volume: 61400,
     ask2: 10.24,
     ask3_volume: 101500,
     ask3: 10.25,
     ask4_volume: 4600,
     ask4: 10.26,
     ask5_volume: 10000,
     ask5: 10.27,
     date: '2018-09-05',
     time: '13:02:03' },
  sz300001: 
   { name: '"特锐德',
     open: 12.45,
     close: 12.46,
     now: 12.25,
     high: 12.59,
     low: 12.25,
     buy: 12.25,
     sell: 12.28,
     turnover: 808133,
     volume: 9987551.22,
     bid1_volume: 6100,
     bid1: 12.25,
     bid2_volume: 1400,
     bid2: 12.24,
     bid3_volume: 2300,
     bid3: 12.23,
     bid4_volume: 8400,
     bid4: 12.22,
     bid5_volume: 33200,
     bid5: 12.21,
     ask1_volume: 1500,
     ask1: 12.28,
     ask2_volume: 40100,
     ask2: 12.3,
     ask3_volume: 3600,
     ask3: 12.31,
     ask4_volume: 1000,
     ask4: 12.32,
     ask5_volume: 2000,
     ask5: 12.33,
     date: '2018-09-05',
     time: '13:02:00' } }
执行完毕

上一篇 下一篇

猜你喜欢

热点阅读