ipyspaghetti
ipyspaghetti copied to clipboard
* I first tried the command `pip install . -v` but it got stuck. (What does the "-v" stand for?) The command `pip install -e .` worked. * I had...
Explore possibilities to run the DAG with Dask instead of the simplistic single-core implementation. See https://docs.dask.org/en/latest/graphs.html.
It would be useful to implement pulling or pushing options for sockets. This would allow nodes to request their requirements to update (data flowing to the "left" of the graph)...
Right now, the following function ```python @register_node def create_tuple() -> Tuple[int, str]: return (1, "foo") ``` allows to create nodes with no inputs and *one* output with type `Tuple[int, str]`....
There should be an easy way to create a new node.This can be achieved - using either a "new function" command which would create a new function with a default...
Currently viewing the graph requires a running kernel + the evaluation of the globals and the function definitions. However, it should be possible to store the function schemas on file...
Related to #9. Currently, each new graph asks for a brand-new kernel. It would be great to store the information about the kernel in the file, so that opening a...
The project should clearly fix a file format and document it.
The current demo (in `example/demo.ipyg`) is nice but relies on installing yt, which is a huge dependency that is not really required for the sake of a simple demo. The...