1
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
todoist-github/todoist_github/clients.py

8 lines
175 B
Python
Raw Permalink Normal View History

2020-01-08 21:05:58 +00:00
import os
from github import Github
from todoist import TodoistAPI
2020-01-11 13:23:17 +00:00
todoist = TodoistAPI(os.environ["TODOIST_TOKEN"], cache=None)
github = Github(os.environ["GITHUB_TOKEN"])