API Documentation#
DaggerML - A Python library for building and managing directed acyclic graphs.
This library provides tools for creating, manipulating, and executing DAGs with strong typing support and a context-manager based interface.
- class daggerml.Dag(dml, token, dump=None, message_handler=None)[source]#
Bases:
object
Representation of a DaggerML DAG.
- Parameters:
dml (Dml) – DaggerML instance
token (str) – DAG token
dump (str, optional) – Serialized DAG data
message_handler (callable, optional) – Function to handle messages
-
dump:
str
|None
= None#
- load(dag_name, *, name=None, doc=None)[source]#
Load a DAG by name.
- Parameters:
dag_name (str) – Name of the DAG to load
name (str, optional) – Name for the node
doc (str, optional) – Documentation
- Returns:
Node representing the loaded DAG
- Return type:
-
message_handler:
Optional
[Callable
] = None#
- put(value, *, name=None, doc=None)[source]#
Add a value to the DAG.
- Parameters:
value (Union[Scalar, Collection]) – Value to add
name (str, optional) – Name for the node
doc (str, optional) – Documentation
- Returns:
Node representing the value
- Return type:
-
token:
str
#
- class daggerml.Dml(*, data=None, message_handler=None, **kwargs)[source]#
Bases:
object
Main DaggerML interface for creating and managing DAGs.
- Parameters:
data (Any, optional) – Initial data for the DML instance
message_handler (callable, optional) – Function to handle messages
**kwargs (dict) – Additional configuration options
Examples
>>> from daggerml import Dml >>> with Dml() as dml: ... with dml.new("d0", "message") as dag: ... pass
- exception daggerml.Error(message, context=<factory>, code=None)[source]#
Bases:
Exception
Custom error type for DaggerML.
- Parameters:
message (Union[str, Exception]) – Error message or exception
context (dict, optional) – Additional error context
code (str, optional) – Error code
- Return type:
None
-
code:
str
|None
= None#
-
context:
dict
#
-
message:
str
|Exception
#
- class daggerml.Node(dag, ref)[source]#
Bases:
object
Representation of a node in a DaggerML DAG.
- keys(*, name=None, doc=None)[source]#
Get the keys of a dictionary node.
- Parameters:
name (str, optional) – Name for the result node
doc (str, optional) – Documentation
- Returns:
Node containing the dictionary keys
- Return type:
- len(*, name=None, doc=None)[source]#
Get the length of a collection node.
- Parameters:
name (str, optional) – Name for the result node
doc (str, optional) – Documentation
- Returns:
Node containing the length
- Return type:
- class daggerml.Ref(to)[source]#
Bases:
object
Reference to a DaggerML node.
- Parameters:
to (str) – Reference identifier
-
to:
str
#
- class daggerml.Resource(uri, data=None, adapter=None)[source]#
Bases:
object
Representation of an external resource.
- Parameters:
uri (str) – Resource URI
data (str, optional) – Associated data
adapter (str, optional) – Resource adapter name
-
adapter:
str
|None
#
-
data:
str
|None
#
-
uri:
str
#