Skip to content

An unofficial Python library for interacting with the US Department of Education's College Scorecard API.

License

Notifications You must be signed in to change notification settings

Nile-Dixon/PyScorecard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyScorecard

PyScorecard is an unofficial Python library for interacting with the US Department of Education's College Scorecard API.

Installation

Use the package manager pip to install PyScorecard.

pip install PyScorecard

Usage

from PyScorecard import PyScorecard

scorecard = PyScorecard()
scorecard.set_api_key("YOUR_API_KEY_HERE")
scorecard.set_year("2015")

scorecard.add_filter("school.degrees_awarded.predominant","=",["2","3"])

scorecard.add_field("school.name")
scorecard.add_field("ope6_id")
scorecard.add_fields(["cost.tuition.in_state","cost.tuition.out_of_state"])

data = scorecard.fetch_all()

License

GNU GPL-V2

About

An unofficial Python library for interacting with the US Department of Education's College Scorecard API.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages