Git Product home page Git Product logo

skola24js's Introduction

Skola24JS

This package can help you get your schedule from skola24 in a json format.

Usage:

const skola24 = require('skola24js');

skola24.setDomain('xxx.skola24.se'); // The skola24 subdomain that your school uses.
skola24.setSchool(''); // The name of your school.
skola24.setTarget(''); // You can use either a name of a class or a swedish personnummer YYYYMMDDXXXX.
skola24.setDay(5); // The day of the week 1 for monday 5 for friday.
skola24.setWeek(38); // The week of the year.
skola24.setYear(2022); // The year.
skola24.getSchedule().then((jsonData) => {  // The function getSchedule() is asynchronous an therefore need to be used with .then to extract the data.
    console.log(jsonData);
});

// Or

skola24.setDomain('xxx.skola24.se').setSchool('').setTarget('').setDay(5).setWeek(38).setYear(2022).getSchedule().then((jsonData) => {
    console.log(jsonData);
});

skola24js's People

Contributors

krgaming2005 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.