Using Python API wrapper for Canvas made by @ufcopen and Todoist Python API to transfer all Canvas Assignments to Todoist.
- Integrate to Todoist
- Clean up Code
- Experiment more with todoist API
- Get your todoist token here
- Find your canvas token at settings and click new access token
- Create .env file
- Add your canvas and todoist tokens without "" like below
CANVAS_TOKEN =
TODOIST_TOKEN =
Guide to using pyenv for this project
git clone https://github.com/benthecoder/Todoist-CanvasAPI.git
cd Todoist-CanvasAPI
pyenv virtualenv 3.8.0 env_name
pyenv local env_name
pip3 install -r requirements.txt
Using pyenv automatically sets your venv versions within a project directory. More on using pyenv here