This script will get you started with interfacing with the Canvas API using Python.
These instructions will get you a copy of the script up and running on your local machine for use with Canvas and your own API tokens. This script makes a request to the Canvas API that displays basic information about your user profile.
- Install Python 3.7 or greater.
- Install Git.
Not sure how to clone a repo? Check out this helpful guide first!
- Open command prompt on Mac or command line on Windows.
- Clone this repo.
git clone https://github.com/ubccapico/getting-started-with-the-canvas-api-with-python.git
- Then cd into the repo.
cd getting-started-with-the-canvas-api-with-python
- Run the installation script.
pip install -r requirements.txt
(If you seebash: pip: command not found
, try usingpip3 install -r requirements.txt
) - Generate Canvas API token and copy it to clipboard.
- Rename the
sample.env
file to.env
, and add your API token toCANVAS_API_TOKEN={ADD TOKEN HERE}
. - Run the script.
python main.py
(If you seebash: python: command not found
, try usingpython3 main.py
). This should log your Canvas info.
Try running some other scripts from Capico.
You can also write your own code and run it! Be mindful that the API is running on the production Canvas instance - if you want to run against the Beta or Test instance, change the URL in main.py
to https://ubc.test.instructure.com
or http://ubc.beta.instructure.com
and regenerate your token(s) from the Beta/Test site. Students do not have access to Beta or Test, sorry!
- Justin Lee https://github.com/justin0022 | [email protected]
- Andrew Gardener https://github.com/andrew-gardener | [email protected]
This project is licensed under the GPL 3 License.