You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Gabriel Augendre e0371e3a20 Update 'README.md' 1 year ago
.gitignore Ignore all ide files 7 years ago
LICENSE Update 'LICENSE' 1 year ago
Procfile Initial code 7 years ago
README.md Update 'README.md' 1 year ago
app.py Allow multiple VTIMEZONE 7 years ago
requirements.txt Bump flask from 0.11.1 to 1.0 4 years ago
runtime.txt Update runtime.txt 5 years ago

README.md

Cal Proxy

Simple Flask app to proxy my school's calendar in order to filter courses I'm not following this year.

Usage

The app is configurable with environment variable and url parameters.

Environment variable URL parameter Type Meaning
BASE_URL None String Original calendar url
COURSES excluded_courses Comma separated values, without space The courses to exclude from the original calendar. Example : NRP,MGL,TIP
TYPES excluded_types Comma separated values, without space The course types to exclude from the original calendar. Example : Cours,TD
YEAR year String The year to fetch. Example : 4
GROUP group String The group to fetch. Example : 1
ALLOWED_YEARS None String Used to validate year specified in URL params. Example : 3,4,5
ALLOWED_GROUPS None String Used to validate group specified in URL params. Example : 1,2,3,4

Example

Default

After deploying the app and setting the environment variables you want, you can either call the root :

http://calendar.example.com/

You'll get the default calendar according to your environment.

URL params

You can also call the url with params :

http://calendar.example.com/?year=3&group=2&excluded_types=Cours&excluded_courses=PIT,SIS

The url params will override the defaults from your environment and you'll get the calendar for the 3rd year, 2nd group excluding all lectures and all PIT and SIS courses.

Reuse

If you do reuse my work, please consider linking back to this repository 🙂