A CLI to reformat and review Canvas grades
Project description
canvascli
canvascli
downloads grades from Canvas
and converts them into the format required
for final submission to the FSC at UBC.
Installation
canvascli
requires a recent version of Python and its package manager pip
.
After installing those (e.g. via miniconda),
you can run this command from your terminal.
pip install canvascli
Usage
All canvascli
functionality requires that you have created an Canvas API access
token,
so do that first if you don't have one already.
Typing canvascli
at the command prompt will show the general help message
including the available sub-commands.
The most common use case is probably to prepare final grades for FSC submission, which you can do like so:
canvascli prepare-fsc-grades --course-id 53665
This will save a CSV file in the current directory
which can be uploaded to the FSC.
The file should automatically be correctly formatted,
but it is a good idea to double check
in case there are unexpected changes
to how UBC inputs course info on Canvas.
canvascli
drops students without a grade by default,
and creates a simple visualization of the grade distribution.
Run canvascli prepare-fsc-grades --help
to view all available options.
If you don't know the Canvas id of your course,
canvascli
can check for you:
canvascli show-courses
This will output a table with all the courses
your API token has access to.
Run canvascli show-courses --help
to view all available options.
If you don't want to be prompted for your Canvas API token each time, you can save it to an environmental variable named CANVAS_PAT (if you are using GitBash's default terminal on Windows, you will not be able to paste into the
canvascli
prompt and defining the environmental variable is required).
Shell completion
If you want subcommands and options to complete when you press TAB you can download the corresponding completion file from the GitHub repository and source it in your terminal's configuration file. If you don't want to do this manually, you can run one of the following commands (don't forget to restart your shell afterwards).
Zsh
First make sure that your zsh general shell completion enabled by adding
autoload -Uz compinit && compinit
to your.zshrc
; it is important that this line is added before running the command below.
curl -Ss https://raw.githubusercontent.com/joelostblom/canvascli/main/canvascli-complete.zsh > ~/.canvascli-complete.zsh && echo ". ~/.canvascli-complete.zsh" >> ~/.zshrc
Bash
Bash shell completion requires bash >= 4.0 (notably macOS ships with 3.x so use zsh instead). If you are using GitBash for Windows, change
.bashrc
to.bash_profile
in the command below, and note that you will only get shell completion after typingcavascli
, notcanvascli.exe
.
curl -Ss https://raw.githubusercontent.com/joelostblom/canvascli/main/canvascli-complete.bash > ~/.canvascli-complete.bash && echo ". ~/.canvascli-complete.bash" >> ~/.bashrc
Questions and contributing
Questions and contributions are welcome! The best way to get in touch is to open a new issue or discussion. Remember to follow the Code of Conduct when you participate in this project.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file canvascli-0.3.2.tar.gz
.
File metadata
- Download URL: canvascli-0.3.2.tar.gz
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a5bff4d9103d4d94692bea68ff4391089fa3551a6e6b1888538ecbc38497058d |
|
MD5 | 32bf2e93869f4024e3702600fd914f54 |
|
BLAKE2b-256 | 6284a991565175c2e5e8ad7e73521459480244371690f2f103ef4d8bc469eadb |