Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.11 KB

README.md

File metadata and controls

34 lines (26 loc) · 1.11 KB

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