A python wrapper over the powerschool api.
client = pywerschool.Client(base_url)
student = client.getStudent(username, password, toDict=True)
print("Current GPA:{}".format(student["student"]["currentGPA"]))
- create a client to powerschool
- return a student given a username and password.
- toDict returns a dictionary instead of a native Zeep object
- zeep (
python3 -m pip install zeep
)