infinite-campus

3.1.2ย โ€ขย Publicย โ€ขย Published

Infinite Campus API

npm version

install with npm i infinite-campus

(full docs here)

Super easy to use!

const InfiniteCampus = require('infinite-campus')
// log in                          District Name    State  Username  Password
const user = new InfiniteCampus('New York District', 'NY', 'JDoe12', 'XXXXXX')

// wait until we are done logging in
user.on('ready', () => {
  // now that we are logged in...
  
  // get grades from all courses, returns an array of terms containing class information (see docs)
  user.getCourses().then((terms) => {
    console.log(terms)
    // [{name:"Q1", courses: [{name: "1 English", grades:{}, ...}, ...]}, ... ]
  })
  
  // get the last 20 notifications
  user.getNotifications(20).then((notifications) => {
    console.log(notifications)
    // [{id: "1111", test: "BOB recieved a new grade of A", timestamp: 1234, read: false, ... }, ...]
    
	// then mark all notifications as read
	user.markAllNotificationsRead().then(() => {
	    console.log('notifications marked as read...')
    })

  })

	
})

READ THE FULL DOCUMENTATION HERE

Package Sidebar

Install

npm i infinite-campus

Weekly Downloads

2

Version

3.1.2

License

GPL-3.0

Unpacked Size

61.8 kB

Total Files

5

Last publish

Collaborators

  • qwazwsx