czu-api
v1.0.2-2
Published
Essential api package for Czech University of Life Sciences Prague.
Downloads
4
Readme
czu-api
Essential api package for Czech University of Life Sciences Prague.
Installation
yarn add czu-api
Usage
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);
})()
Upcoming features
- uep support
- searching for empty classroom
- monitoring of timetable changes
Goals
- 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
Contributing
- 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