Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chrischrislolo/ucourse
Unofficial University of Alberta web app made with Django that is both a course database as well a rating platform for said courses.
https://github.com/chrischrislolo/ucourse
ualberta university university-of-alberta uofa webapp
Last synced: 30 days ago
JSON representation
Unofficial University of Alberta web app made with Django that is both a course database as well a rating platform for said courses.
- Host: GitHub
- URL: https://github.com/chrischrislolo/ucourse
- Owner: ChrisChrisLoLo
- License: gpl-3.0
- Created: 2018-07-26T06:50:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T02:54:53.000Z (about 2 years ago)
- Last Synced: 2024-05-02T11:22:20.131Z (8 months ago)
- Topics: ualberta, university, university-of-alberta, uofa, webapp
- Language: JavaScript
- Homepage:
- Size: 1.8 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# UCourse
An unofficial University of Alberta web app that both contains course listings offered by the UofA, and also allows users to rate courses based on a set of criteria.
~~http://www.picopigeon.com~~Note: This site is now no longer being hosted. A new, React based application can be found at https://ucourseplus.com/.
# Features
Search - Search for any classes offered by the UofA based on a set of criteria. Filter courses based on your preferences or directly search for a course.Rate - Rate a course based on a set of criteria, and leave the course a comment for other user's to view.
Easy Login - Not willing to make an account to post a review? That's okay! Google+ sign in is supported, allowing for a quick and secure method of logging in.
Mobile Friendly - Whether at home or on to go, UCourse is mobile friendly, and easily accesible from all devices.
# Technical Aspects
This application uses Django, Bootstrap, as well as SQLite for its tech stack. Course information was retrieved from a csv, which was scraped from the university course directory, and put into a relational database. Techniques such as pagination was used to display the courses nicely in the search view. The Rating form has integrated cross-site forgery attack prevention.# Current Limitations
This web application is mostly limited by the resources it has to work with. While a UofA API exists (UODA), which offers a plethora of information, including academic programs, course units, as well as terms the course is offered, access to this API was denied, as it's intended for commercial use. This limits the scope of what information can be used, and hence what the app can do. A possible (yet messy) workaround with this might be to build a scraper for beartracks itself. The two biggest issues is that 1.The information scraped must be manually updated and 2.The scraper will need to be sufficienty complex, since beartracks requires a sign in and is a bit "unconventional" in comparison to other web sites.