2025-03-25 21:48:41 +01:00

729 B

Virtueller Stundenplan

This project is a unofficial NodeJS library for the Virtueller Stundenplan.

Installation

You can install this library from npm.

npm install virtueller-stundenplan

Note

This project in very early developement, expect things to break and change.

Usage

This is a example on how to use the package:

const { VirtuellerStundenplan } = require("virtueller-stundenplan");

const vs = new VirtuellerStundenplan({
    username: "user@example.com",
    password: "Password"
});

(async() => {
    const timetable = await vs.getMyTimetable();

    console.log(timetable);
})()