1.5.0 • Published 4 months ago

vulcan-scraper v1.5.0

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

vulcan-scraper

npm npm

Small library to scrape Vulcan e-register

Documentation/Usage

Basic documentation is available in this repo's wiki.

Example

import { VulcanHandler } from "vulcan-scraper";

const vulcanHandler = new VulcanHandler("student@school.com", "P@ssw0rd", "city");

await vulcanHandler.login();

console.log(await vulcanHandler.getStudentGrades());

await vulcanHandler.logout();

Output:

{
  'Język polski': { average: 2, grades: [ [Object] ] },
  'Język angielski': { average: 0, grades: [] },
  'Tworzenie stron i aplikacji internetowych': { average: 5.5, grades: [ [Object] ] },
  'Systemy baz danych': { average: 0, grades: [] },
  'Projektowanie baz danych': { average: 4.5, grades: [ [Object], [Object] ] }
}

Limitations

  • Currently this library only supports standard login type
1.5.0

4 months ago

1.4.0

4 months ago

1.2.0

6 months ago

1.3.0

6 months ago

1.1.0

7 months ago

1.0.0

7 months ago