1.0.1 • Published 10 years ago
grsu-shedule-parser v1.0.1
grsu-shedule-parser
Super simple to use
This module is designed to parse the GRSU schedules page. data - is a html page with the schedule, parsedata - ready weekly schedule.
var SheduleParse = require('grsu-shedule-parser');
SheduleParse(data, function(err, parsedata) {
if(err){
throw new Exception(err);
}
else
console.log(parsedata);
});