Tools and Utilities that can be used to access McGill University's Minerva service
Project description
Minervaclient
The Minerva Client
minervac
is a CLI client for Minerva's course registration facilities. The program can be run either without a Minerva login to:
- search for course information,
Or with a Minerva login to:
-
display your current course schedule, final exam schedule, or transcript, and register for courses by CRN or course code.
-
Course schedules can be formatted with custom reports, conflicts are detected, and HTML timetables, as well as importable calendar files, can be produced.
Previously registered courses are recorded and minervac
will only attempt registration for the remaining courses on each run.
The program is implemented in Python and currently is very hacky. Pull requests welcome. If you have ideas for features or have found a bug, please open an issue.
See also
- A departmental or faculty advisor. Link valid as of 6th June, 2018
- [Last Known Update April 11th, 2018] When choosing courses, you may find the
McGill Enhanced
Chrome extension useful: https://tinyurl.com/McGillEnhancedFeatures - [Deprecated/Offline] If you don't need to make changes to your registration, look into
Minervabot
instead. Its source code could be insightful: https://github.com/zafarali/minerva-bot - [It's a bit old] The website Simplify McGill is great as an informational resource if you're a first year, good not only for course registration, but also for surviving at McGill in general
- [Be careful] If you haven't already found it there's also a subreddit for McGill if you have any genearl questions.
Changelog
Unreleased
Features to be added in the future include:
- (Library) Documentation to make this a proper API for more reusability and other spin-off projects like a full website, maybe Android/iOS apps.
- (CLI) An interactive shell feature, so that commands can be run one after the other without repeated Minerva logons.
- (CLI) Temporary remembering of Minerva credentials to prevent the need for repeated logons for every command call.
Patch 1.1.0 - June 22, 2018
New Feature:
- Updated the installation methods, now any form of installation has the same functionality
- Implement an on-screen login when running features that require Minerva login
Version 1.0.0 - June 20, 2018
New Features:
- Converted original project by nicholaspaun into an installable pip package that will be added to the PyPi system for easier installation
- Added support for automatically installing the dependencies for this project such as
requests
,beautifulsoup4
, andurllib5
- Added an explicit feature,
minervac search
in the command line app, for querying Minerva for course information on CRNs, instructors, times, dates, waitlists, and general availability - the only command that works now is
minervac
which should replace the previous iteration'smnvc
andminervaclient
- Updated the installation methods, but the majority of features only work if installing via build from source. See note
Version 0.0.0 - September 1, 2017 (nicholaspaun)
Notes:
-
- You can now view your final exam schedule (
minervac sched -E
)
- You can now view your final exam schedule (
-
- You can now query your transcript (
minervac transcript
)
- You can now query your transcript (
-
- A visual timetable feature has been implemented. (-V).
- Calendar export is now available (vCalendar format only). (-C)
-
- The command-line interface won't be modified anymore, only extended. Configuration format is still in flux.
- Displaying course schedule information with custom reports.
Goals
The goals of this project are to create a simple and high-quality interface for the most-used features of Minerva. The user interface will be designed in accordance with UNIX priciples, thus, minervac
will be easily programmable. Additionally, minervac
will clearly explain how it is connecting to Minerva and provide a starting point for other projects that attempt to use the Minerva "API". This project is free and open-source. Forks and projects that use this should try to be open-source as well.
Installation: Build from Source for Python 2.7
- Download the source code.
minervac
uses therequests
,beautifulsoup4
, andhtml5lib
modules for Python.- A good way to install them is probably with
pip
:sudo pip install requests beautifulsoup4 html5lib
- A good way to install them is probably with
- Edit
config.py
to setup various settings - Run
python setup.py install
orsudo python setup.py install
- You may now run
minervac -h
for help information. This just works for Unix/Linux but it's iffy for Windows. You might need some bash command prompt for it to work on Windows ex. Git Bash, Cygwin
Install via pip
- Run
pip install minervaclient
orsudo pip install minervaclient
- Use
minervac -h
to get help information.
NOTE: At the time of this writing, all features of the application should work, now that login occurs everytime the application is run
Usage
It's way simpler than actually using Minerva!
NOTE: Any minervaclient
or mnvc
command should be replaced with minervac
in this new version!
-
Course Information Search:
minervac search
- To retrieve the information from all the sections of a course:
minervac search -t 201809 COMP-202 MATH-133
(Fall 2018) - To retrieve the information from just one section:
minervac search -t 201901 POLI-200-002
(Winter 2019) - To retrieve just availability from classes:
minervac search -A -t 201805 CCOM-206 FRSL-100-001 MATH-133-018
(Summer 2018) - To retrieve just Lectures:
minervac search -L -t 201809 COMP-202
- To retrieve just Tutorials:
minervac search -T -t 201809 COMP-202
- NOTE: Minerva Credentials are not required for this feature and therefore is the most secure in the sense you don't expose your passwords to any hackers or children that find their way onto your computer...
- ALSO NOTE: Waitlist/Availability information can get kinda weird so if it says 0/0 it's probably completely full but check Minerva for these weird things.
- To retrieve the information from all the sections of a course:
-
Registration:
minervac reg
- To register for a set of courses:
minervac reg -t FALL2016 COMP-251-001 MATH-240-001
- To register by CRN (faster):
minervac reg -t 2016-FALL 814 30302 30
- To save previously-registered courses and only register for what remains:
minervac reg -j compstuff -t 2016-FALL COMP-273-002 COMP-396-001
- NOTE: An option to search without logging in is provided. However, only waitlist information can be determined in this way, and its quality may be poor.
- To register for a set of courses:
-
Scheduling:
minervac sched
- To display your schedule:
minervac sched -t WINTER2017
- To display more details (
-l
), or less (-s
):minervac sched -lt SUMMER-2017
orminervac sched -st 2016WINTER-SUP
- To use a custom report (edit
config.py
):minervac sched -t WINTER2017 -r magicreport
- To export your timetable to a HTML file:
minervac sched -t 2016SUMMER -V > ~/summer-schedule.html
- Edit
config.py
to change the way courses are formatted andsched_timetable.css
to adjust the styling. - Hint: Click on a building name to get directions. Hover over courses to see an explanation of the color code.
- Edit
- To export your course schedule to an iCalendar file:
minervac sched -Ct 2017-WINTER > mcgill-winter-2017.ics
- You can also export your final exam schedule, like this:
minervac sched -ECt FALL2016 > mcgill-fall-2016-finals.ics
. - The resulting file can be imported into your favorite calendar application (Google Calendar, and the Mac OS X Calendar work.)
- This format may also be called ICS or vCalendar.
- You can also export your final exam schedule, like this:
- To display your final exam schedule:
minervac sched -t FALL2016 -E
- To display your schedule:
-
Transcripts:
minervac transcript
- To display your transcript:
minervac transcript
- The term argument is optional, and more than one term can be specified:
minervac transcript -t FALL2016,2017-SUMMER
- Reports (
-r
) and the long (-l
) and short (-s
) shortcuts can be used. (See Scheduling above.) - To display only your program information (
-S
) and GPA (-C
):minervac transcript -SC
- To display some miscellaneous transcript information as well (
-P
):minervac transcript -P
- To display your transcript:
-
For a full description of available options:
minervac -h
-
A few useful extra scripts are included in the
extras/
folder:- Note: These tools are more experimental than
minervac
itself and might not work so well. grablrs.py
: Downloads LRS lecture recordings.transcript-monitor.sh
: Allows you to monitor your unofficial transcript for new grades.
- Note: These tools are more experimental than
Scheduling registration
- Put it in your
crontab
. This way, theminervac
will automatically be run at the time interval you choose, and you will receive an email indicating the status of your course registration job.- If you don't have
cron
, you may need to write a long-running loop or use your OS' job scheduling facility. Oh, and by the way, your OS sucks.
- If you don't have
- An example crontab line:
00 * * * * minervac -dj compstuff -t 2016FALL 814 20620 33
. - Some ideas:
- Set the
MAILTO
option to your email address, or pipe the output tomail
. - You can receive this information as a SMS text message. Look up the email-to-SMS gateway for your cellular carrier. For example,
MAILTO=2505551234@msg.telus.com
- Set the
Further development
- Displaying degree evaluation reports.
- Won't implement: While it would be trivial to support dropping courses, I am worried that this may mess up people's schedules as Minerva does not perform truly atomic transactions. Furthermore, it may mess up my own schedule and so I don't want to test it. If you're braver than I am, please send me a pull request.
- Support output formatters and more control over what this program prints.
- Allow querying for courses from the CLI, and use a SQL database to allow for fancy queries.
- Integrate my course selection satisfiability solver to recommend what you can register for.
WARNING
-
You are solely responsible for deciding if
minervac
is compliant with McGill's policies, and if you want to assume this risk.- Start reading here: McGill Policy on the Responsible Use of IT Resources, but there are most definitely more policies that may be applicable to this program and its use.
-
minervac
might mess up your course schedule in a very bad sort of way. -
The final exam data might be unpleasantly wrong, as it is generated from a
messed uppretty high-quality PDF. Progress at McGill! -
minervac
might suddenly stop working if Minerva is changed. -
Minerva is a horrible, horrible system and trying to extend this program may lead to a horrible headache.
-
This program was badly written, in a rush, and might have some serious design flaws.
-
May give CS hipsters a headache.
Applicability outside McGill
Minerva is a Banner installation (Release 8.7, to be precise), so you may be able to adapt the program to work for your university or college. Try to edit minerva_common.py
with the correct URL to your student information system. A quick way to check if you've got Banner is to Google for "bwckgens" and your institution's name.
Screenshots
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file minervaclient-1.1.0.tar.gz
.
File metadata
- Download URL: minervaclient-1.1.0.tar.gz
- Upload date:
- Size: 31.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39ee8368df4536b25f3986aed4cfe43a34668cb50f1969d36c2244a2156767f3 |
|
MD5 | 08874e2c3f93d34782e96f80f7d926d3 |
|
BLAKE2b-256 | 281579520465bbeca138fae1ec05a3ca532ac04eb232df35a45c8578542c6cdd |
File details
Details for the file minervaclient-1.1.0-py2-none-any.whl
.
File metadata
- Download URL: minervaclient-1.1.0-py2-none-any.whl
- Upload date:
- Size: 39.8 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f4223b2e537e687556a9fc1d531b2d70db85c93855e61d8109d11b40577afe4 |
|
MD5 | 36df97ceca5e2b3dfaf38e3d0582eab3 |
|
BLAKE2b-256 | b9fbabf11ef50934fc128bcf18bd368c0411ef5ca923f24c1dc17115d8de69d8 |