todoist_interface/todoist_interface/todoist.py

37 lines
1021 B
Python

import requests
import json
import uuid
class TodoistAPI:
url = "https://api.todoist.com/rest/v2/"
def __init__(self, token: str):
self.token = token
def get_get_tasks_by_filter(self, todoist_filter: str):
"""
Returns all tasks from todoist
"""
response = requests.get(
self.url + "tasks",
headers={"Authorization": "Bearer " + self.token},
params={"filter": todoist_filter},
)
return response.json()
def create_tasks(self, tasks: list, labels: list):
"""
Adds tasks to todoist
"""
for task in tasks:
requests.post(
self.url + "tasks",
headers={
"Content-Type": "application/json",
"X-Request-Id": str(uuid.uuid4()),
"Authorization": "Bearer " + self.token,
},
data=json.dumps({"content": task["content"], "labels": labels}),
)