Node.js 火车票查询 SDK
项目地址:node-chepiao-sdk 取名chepiao-sdk是因为使用的是che100 的API。
个人通过邮箱申请的key有效期为1周,现在写好了两个接口:
- 根据车次获取列车时刻
- 根据日期、起始站点获取余票信息
以下是项目的README:
Install
npm install chepiao-sdk --save
Usage
-
Register and get your
userid
andseckey
: chepiao100.com -
Initialize the SDK
var Chepiao = require('chepiao-sdk'); var chepiao = new Chepiao({ userid: 'your userid', seckey: 'your secret key' });
-
Use the API
chepiao.schedule('g1', function (res) { // do stuff with the response });
然后我用这个SDK做了一个简单的通过命令行查询列车时刻的工具(不过由于不好在命令行里处理表格,所以现在有点乱乱的感觉):https://github.com/SFantasy/node-train
可以通过npm install cntrain -g
来安装,以下是该工具的截图:
最后,欢迎各位大大吐槽。喜欢的同学欢迎 star && fork!