Skip to content

google_tasks

google_tasks

Google Tasks connector — tasks due today, overdue, and recently completed.

Uses OAuth2 tokens via the shared Google OAuth helper module.

Classes

GoogleTasksConnector

GoogleTasksConnector(*, credentials_path: str = '')

Bases: BaseConnector

Sync tasks from Google Tasks.

Source code in src/openjarvis/connectors/google_tasks.py
def __init__(self, *, credentials_path: str = "") -> None:
    self._credentials_path = Path(
        resolve_google_credentials(credentials_path or _DEFAULT_CREDENTIALS_PATH)
    )
    self._status = SyncStatus()

Functions