Skip to content

Instantly share code, notes, and snippets.

@ronsims2
Last active March 13, 2017 02:29
Show Gist options
  • Save ronsims2/4c9560d15932ee634671cb02e44efa0e to your computer and use it in GitHub Desktop.
Save ronsims2/4c9560d15932ee634671cb02e44efa0e to your computer and use it in GitHub Desktop.
A helper program for using the College Scorecard API https://collegescorecard.ed.gov/data/documentation/
import $ from 'jquery';
class fiore {
constructor(apkiKey, url) {
this.apiKey = apiKey;
this.url = url;
this.schoolName = '';
this.school = null;
}
setSchool(school) {
this.school = school;
}
fecthSchoolByName() {
return $.ajax({
url: this.url,
method: 'GET',
dataType: 'json'
});
}
}
export {fiore};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment