You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* docs: update docs and README
* feat: allow method chaining, add .add/.extend method to DAGNode
* test: add more test for coverage
* test: add more test for coverage
* docs: update README
* docs: update README and docs
| Get node information |`dag.describe(exclude_prefix="_")`|[('name', 'd')]|
135
-
| Find path(s) from one node to another |`node_a.go_to(dag)`|[[DAGNode(a, ), DAGNode(c, ), DAGNode(d, description=dag-tag)], [DAGNode(a, ), DAGNode(d, description=dag-tag)]]|
136
-
| Set attribute(s) |`dag.set_attrs({"description": "dag-tag"})`| None |
137
-
| Get attribute |`dag.get_attr("description")`| 'dag-tag' |
| Get node information |`dag.describe(exclude_prefix="_")`|[('name', 'd')]|
136
+
| Find path(s) from one node to another |`node_a.go_to(dag)`|[[DAGNode(a, ), DAGNode(c, ), DAGNode(d, description=dag-tag)], [DAGNode(a, ), DAGNode(d, description=dag-tag)]]|
137
+
| Add child to node |`node_a.append(DAGNode("j"))`| DAGNode(a, ) |
138
+
| Add multiple children to node |`node_a.extend([DAGNode("k"), DAGNode("l")])`| DAGNode(a, ) |
139
+
| Set attribute(s) |`dag.set_attrs({"description": "dag-tag"})`| None |
140
+
| Get attribute |`dag.get_attr("description")`| 'dag-tag' |
0 commit comments