- 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 toTask actions
>Email tasks to this project
, read the url of the popuphttps://:browser.todoist.com/Emails/view?project_id=:id
, take the id there) - Profit!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import graphviz as gv | |
g1 = gv.Graph(format='svg') | |
g1.node('A') | |
g1.node('B') | |
g1.edge('A', 'B') | |
print(g1.source) |