Skip to content

Instantly share code, notes, and snippets.

@rfdiazpr
rfdiazpr / README.md
Created December 29, 2018 14:24
A bookmarklet for Todoist to add a website to your read later project.

One-click "read later" bookmarklet for Todoist

Installation

  • Copy/paste todoist-read-later-one-click.js content in a bookmark.
  • Specify your token (Settings > Todoist Settings > Account > Go to the bottom of the page)
  • Specify your project_id (no project_id means Inbox, if not, go to Task actions > Email tasks to this project, read the url of the popup https://:browser.todoist.com/Emails/view?project_id=:id, take the id there)
  • Profit!

Usage

import graphviz as gv
g1 = gv.Graph(format='svg')
g1.node('A')
g1.node('B')
g1.edge('A', 'B')
print(g1.source)