Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/erikboesen/yalecourses
A Python wrapper for the Yale Courses API.
https://github.com/erikboesen/yalecourses
Last synced: about 1 month ago
JSON representation
A Python wrapper for the Yale Courses API.
- Host: GitHub
- URL: https://github.com/erikboesen/yalecourses
- Owner: ErikBoesen
- License: gpl-3.0
- Created: 2019-06-22T00:08:53.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-11-09T18:58:46.000Z (almost 2 years ago)
- Last Synced: 2024-09-16T00:52:54.285Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# yalecourses [![PyPI version](https://badge.fury.io/py/yalecourses.svg)](https://badge.fury.io/py/yalecourses)
> Python library for interfacing with the Yale Courses API.
[API documentation](https://developers.yale.edu/courses)
## Setup
First, install the module:```sh
pip3 install yalecourses
```Then, to use these functions, you must import the module:
```py
import yalecourses
```Before using the library, you must instantiate its class, for example:
```py
courses = yalecourses.YaleCourses('your API key here')
```You can obtain your API key as described [here](https://developers.yale.edu/how-info/how-do-i-get-access-apis).
## Retrieval Functions
- TODOSee `example.py` for several usage examples.
## Author
[Erik Boesen](https://github.com/ErikBoesen)## License
[GPL](LICENSE)