项目地址:
https://github.com/SFantasy/node-chepiao-sdk取名chepiao-sdk是因为使用的是che100网站的API。
个人通过邮箱申请的key有效期为1周,现在写好了两个接口:
根据车次获取列车时刻
根据日期、起始站点获取余票信息
以下是项目的README:
Install
npm install chepiao-sdk --save
Usage
Register and get your userid and seckey:
chepiao100.comInitialize 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 来安装
通过 cntrain -n g1 这样的命令就能在命令行中查看指定列车的时刻表。
最后,欢迎各位大大吐槽。喜欢的同学欢迎 star && fork!