planetterp 1.0.0

Creator: railscoder56

Last updated:

Add to Cart

Description:

planetterp 1.0.0

PlanetTerp API Python Wrapper
This is a Python wrapper around the PlanetTerp API.
To install, either use the code on GitHub, or install with pip install planetterp (you might need to run pip3 install planetterp).
Example usage
import planetterp

course = planetterp.course(name="MATH140", reviews=True)
courses = planetterp.courses(department="MATH", limit=2)
prof = planetterp.professor(name="Jon Snow", reviews="true")
profs = planetterp.professors(type_="ta", limit=2)
grades = planetterp.grades(course="MATH140", professor="Jon Snow")

print(course)
print(courses)
print(prof)
print(profs)
print(grades)

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.