Chauss-LLC / task_tree_local

App for managing your tasks in tree-like representation.
3 stars 2 forks source link

Core module base implementation. (task-reaction system) #16

Closed Prikalel closed 2 years ago

Prikalel commented 2 years ago

Ask your questions.

Currently now the script

from tasktree.core import *

t = Task("Yes, new task")
t.add_child("Lifeline plans")
new_t = Task("Make big things", parent=t)
new_t.change_parent(t.children[0].id) 

works just perfect. Of cource, I need to make code a little bit cleaner, but that is the base implementation.

Prikalel commented 2 years ago

I closed the request, because it solves other problem on the other abstraction level then the project required. Core module base implementation will be in another pull request and it will be a little bit easyier then this implementation.