uspace-api-wrapper
v1.0.3
Published
Simple API Wrapper for the University of Vienna
Downloads
5
Readme
Introduction
An API wrapper designed to make interacting with University of Vienna's platform u:space easier.
Installation
To use this package, simply run:
$ npm i uspace-api-wrapper
Usage
Currently you can only login and retrieve your courses. More features are coming soon!
Make sure not to expose your username/password when using this API!
import UspaceClient from "uspace-api-wrapper"
const uspaceClient = new UspaceClient();
await uspaceClient.login("myUsername", "myPassword");
const myCourses = await uspaceClient.getCourses(2024, false);
console.log(myCourses);