1.0.4 • Published 3 years ago

ecoledirecte-api v1.0.4

Weekly downloads
10
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("EDELEVE", "0");
options = {
	    "format": "raw" // raw, simplified, plaintext. default: plaintext
}

ED.getHomeworks("2020-11-16", options) //only the first argument (date) is required
    .then(hw => console.log(hw))
    .catch(e => console.error); 

ED.getGrades()
    .then(grades => {console.log(grades)})
    .catch(e => console.log);
1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

4 years ago

1.0.0

4 years ago