From deafc497e656f143bd2e66478dff15816bbcb827 Mon Sep 17 00:00:00 2001 From: Carsten Schabacker Date: Tue, 6 Feb 2024 18:09:07 +0100 Subject: [PATCH] Comment out lots of code in main still not finished --- main.py | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/main.py b/main.py index 651ae5e..1386665 100644 --- a/main.py +++ b/main.py @@ -31,17 +31,17 @@ if __name__ == "__main__": # 1. you need to login to get a session and a list of accounts auth = ACAuthenticator() session = auth.login(username, password) - # pprint(session) + pprint(session) user = session['user'] # use first account account = auth.find_account(account_name) # 2. you need to get a token for this account - token = ACTokenAuthenticator(account, user).issue_token_intent() - pprint(token) + # token = ACTokenAuthenticator(account, user).issue_token_intent() + # pprint(token) # 3. now you can query the API - ac = ACClient(account, token) + # ac = ACClient(account, token) # get a list of all projects # res = ac.get_projects() @@ -49,20 +49,20 @@ if __name__ == "__main__": # get task with sub tasks # https://app.activecollab.com/416910/projects/310/tasks/6274 - project_id = 310 - task_id = 6281 - task_res = ac.get_project_task(project_id, task_id) - pprint(task_res.json()) - task = task_res.json() + # project_id = 310 + # task_id = 6281 + # task_res = ac.get_project_task(project_id, task_id) + # pprint(task_res.json()) + # task = task_res.json() # res = ac.unassign_all_sub_task(task) # create a new subtask for the task without assignment - subtask = { - "task_id": task_id, - "project_id": project_id, - "assignee_id": "", - "body": "test qqq" - } + # subtask = { + # "task_id": task_id, + # "project_id": project_id, + # "assignee_id": "", + # "body": "test qqq" + # } # res = ac.create_subtask(subtask) # pprint(res.json())