https://github.com/zaddok/sisapi
https://github.com/zaddok/sisapi
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zaddok/sisapi
- Owner: zaddok
- Created: 2019-02-19T12:46:22.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-20T05:29:04.000Z (over 7 years ago)
- Last Synced: 2024-06-20T17:00:04.417Z (about 2 years ago)
- Language: Go
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Golang API for SIS
This is a simple library that wraps the SIS Json Web Service API.
It is part of a project that is currently in use in a live production environment, and
is under active development.
No warranty is given or implied. Use at your own risk.
## Example usage
// Setup
api := sis.NewSisApi("https://site.example.com/", "Fi04DbaAa9f5b45cdd2f01d5f1", l)
// Search students
students, _ := api.SearchStudents("John Smith")
for _, i := range students {
fmt.Printf("%s\n", i.StudentNumber)
}