1.0.2 • Published 7 months ago

czu-lib v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

czu-lib

A JavaScript library for logging in and fetching schedules from Czech University of Life Sciences Prague's university information system (ČZU UIS).

Installation

npm i czu-lib

Usage

const czu = require("czu-lib");

(async () => {
  const cookies = await czu.login("xname001", "p455w0rd");

  const schedule = await czu.fetchSchedule(
    cookies,
    "1.1.2024",
    "30.12.2024",
    "en" /*Language optional (default Czech)*/
  );

  console.log(schedule);
})();

Goals

  • provide quick way to get login session
  • make life easier by alowing you to get your schedule in JSON
  • easy and simple to understand
1.0.2

7 months ago

1.0.1

8 months ago

1.0.0

8 months ago