tfk-schools-info
v2.2.1
Published
Get information regarding our schools
Downloads
29
Readme
tfk-schools-info
Information regarding our schools
Installation
$ npm i tfk-schools-info
Usage
Call the module with no options to list all schools.
Use an options object to specify your search.
Possible keys:
- organizationNumber
- name
- fullName
- shortName
- officialName
- accessGroup
- phoneNumber
const getSchools = require('tfk-schools-info')
const options = {
shortName: 'skivs'
}
console.log(getSchools()) //=> All schools
console.log(getSchools(options)) //=> Schools with shortName SKIVS
Basic groups
To list all basic groups from a school
const { getGroups } = require('tfk-schools-info')
console.log(getGroups('SKIVS'))
To list all groups for all schools
const { getGroups } = require('tfk-schools-info')
console.log(getGroups())