Skip to content

List of schools in Malaysia within districts in states

Notifications You must be signed in to change notification settings

syukriyansyah-ipb/myschoollist-1

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MySchoolList

Inspired by Node MySchoolList

Library for fetching list of schools in Malaysia based on States & District.

Data taken from Ministry of Education Malaysia (Date release: January 2018)

Using this package

Install this package using

go get github.com/svicknesh/myschoollist

Import it into your appliation

import "github.com/svicknesh/myschoollist"

There are no additional dependencies used by this package aside from what is available in Go standard.

The list_test.go file contains examples of using this package.

The information about the states, districts and schools are in the json folder which pulls the information from Node MySchoolList before cleaning it up a little. To rebuild the information, perform the following

cd json
go run import.go

Instantiate new instance of the list

list, err := myschoollist.New()
if nil != err {
    log.Panic(err)
}

NOTE: Try not to instantiate too many instances of this list, instead instantiate it once and pass it to other modules or functions as parameters. Every instantiation loads the JSON information and creates mapping between them for quick lookup, which in turn uses memory. Having multiple instances MAY impact memory usage in long running applications for each instantiation.

State information

Get state information by ID

stateID := 7
state, found := list.StateGetByID(stateID)
if !found {
    log.Printf("State ID %d not found", stateID)
}

Get state information by short name

stateShortname := "pen" // case insensitive
state, found := list.StateGetByShortname(stateShortname)
if !found {
    log.Printf("State ID %d not found", stateID)
}

Get all the states information in Malaysia

states := list.StatesGetAll()

District information

Get district information by ID

districtID := 73
district, found := list.DistrictGetByID(districtID)
if !found {
    log.Printf("District ID %d not found", districtID)
}

Get list of schools information in a given district ID

schools := list.DistrictGetSchools(districtID)

Get state information for a given district ID

districtID := 73
state, found = list.DistrictGetState(districtID)
if !found {
    log.Printf("District ID %d not found", districtID)
}

School information

Get school information by ID

schoolID := 9429
school, found := list.SchoolGetByID(schoolID)
if !found {
    log.Printf("School ID %d not found", schoolID)
}

Get school information by code

schoolCode := "peb1094"
school, found = list.SchoolGetByCode(schoolCode)
if !found {
    log.Printf("School code %q not found", schoolCode)
}

About

List of schools in Malaysia within districts in states

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 100.0%