1.0.2 • Published 3 years ago

ecoledirecte-api-enhanced v1.0.2

Weekly downloads
3
License
ISC
Repository
github
Last release
3 years ago

Ecoledirecte API

:warning: EARLY WIP

Unofficial API Client for EcoleDirecte

Currently supports fetching Homeworks

Installation:

npm install ecoledirecte-api

Example:

EcoleDirecte = require('ecoledirecte-api');
ED = new EcoleDirecte("USERNAME", "PASSWORD");
options = {
    "format": "raw" // raw, simplified, plaintext. default: plaintext
}
ED.getHomeworks("2020-06-12", options) //only the first argument (date) is required
    .then(hw => console.log(hw));