Essential api package for Czech University of Life Sciences Prague.
yarn add czu-api
import UisApi from 'czu-api';
(async () => {
const uis = new UisApi({username: 'xname015', password: 'hunter2'});
await uis.login();
const timetableJSON = await uis.getTimetable();
console.log(timetableJSON);
})()
- uep support
- searching for empty classroom
- monitoring of timetable changes
- provide quick and secure access to your UIS
- fix errors caused by incorrectly exported iCalendar by UIS
- cover all desired features by request of other students
- Create a Github account
- Fork this repo
- Download your forked version to your computer
- Change/Add the stuff you want
- Push/Sync your changes back to your repository
- Submit a pull-request back into this repo