@wulkanowy/timetable-parser
TypeScript icon, indicating that this package has built-in type declarations

1.6.0 • Public • Published

license stars npm

VULCAN Optivum Timetable parser for JS

Based on wulkanowy/timetable-parser-php (not 1:1 copy)

Installation

Via NPM

$ npm install @wulkanowy/timetable-parser

Usage

Parsing Timetable Index Page

import { Timetable } from '@wulkanowy/timetable-parser';

const timetable = new Timetable(/*Content of index.html file*/);

// Returns: String containing title of the timetable
const title = timetable.getTitle()

// Returns: String containing path to lista.html file
const list = timetable.getListPath()

Parsing Timetable List

import { TimetableList } from '@wulkanowy/timetable-parser';

const timetableList = new TimetableList(/*Content of lista.html file*/);

// Returns: Object of 3 lists
const list = timetableList.getList();

// Returns: String containing path to school logo
const logo = timetableList.getLogoSrc()

Parsing Table

import { Table } from '@wulkanowy/timetable-parser';

const table = new Table(/*Content of plany/XYY.html file*/);

// Returns: String containing title of the timetable
const title = table.getTitle();

// Returns: Array of days from timetable headers
const dayNames = table.getDayNames()

// Returns: Object of hours
const hours = table.getHours()

// Returns: Array of lessons sorted by lesson number
const rawDays = table.getRawDays()

// Returns: Array of lessons sorted by days
const days = table.getDays()

// Returns: String containing timetable generation date
const generated = title.getGeneratedDate()

// Returns: String containing timetable effective date
const generated = title.getVersionInfo()

Readme

Keywords

none

Package Sidebar

Install

npm i @wulkanowy/timetable-parser

Weekly Downloads

2

Version

1.6.0

License

MIT

Unpacked Size

17.4 kB

Total Files

13

Last publish

Collaborators

  • mklkj
  • dominik.korsa