Metadata-Version: 2.1
Name: planetterp
Version: 1.0.0
Summary: PlanetTerp API Python wrapper
Home-page: https://github.com/planetterp/PlanetTerp-API-Python-Wrapper
Author: PlanetTerp
Author-email: admin@planetterp.com
License: UNKNOWN
Description: # PlanetTerp API Python Wrapper
        
        This is a Python wrapper around the [PlanetTerp API](http://api.planetterp.com).
        
        To install, either use [the code on GitHub](https://github.com/planetterp/PlanetTerp-API-Python-Wrapper), or install with `pip install planetterp` (you might need to run `pip3 install planetterp`).
        
        ### Example usage
        
        ```python
        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)
        ```
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
