Skip to content

benthecoder/Todoist-CanvasAPI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Todoist-CanvasAPI

Using Python API wrapper for Canvas made by @ufcopen and Todoist Python API to transfer all Canvas Assignments to Todoist.

Todo

  • Integrate to Todoist
  • Clean up Code
  • Experiment more with todoist API

Tokens

  1. Get your todoist token here
  2. Find your canvas token at settings and click new access token
  3. Create .env file
  4. Add your canvas and todoist tokens without "" like below
CANVAS_TOKEN = 
TODOIST_TOKEN = 

Installation Guide

Guide to using pyenv for this project

  1. git clone https://github.com/benthecoder/Todoist-CanvasAPI.git
  2. cd Todoist-CanvasAPI
  3. pyenv virtualenv 3.8.0 env_name
  4. pyenv local env_name
  5. pip3 install -r requirements.txt

Using pyenv automatically sets your venv versions within a project directory. More on using pyenv here

References