{"library":"loman","title":"Loman","description":"Loman tracks the state of computations and the dependencies between them, enabling full and partial recalculations. It provides a directed acyclic graph (DAG) of computations with caching, error handling, and serialization support. Current version is 0.6.0, released in April 2026. Release cadence is approximately monthly.","language":"python","status":"active","last_verified":"Mon Apr 27","install":{"commands":["pip install loman"],"cli":null},"imports":["from loman import Computation","from loman import ComputationNode"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from loman import Computation\n\n# Create a computation graph\ncomp = Computation()\n\n# Define nodes (computations)\n@comp.node('a')\ndef compute_a():\n    return 1\n\n@comp.node('b', depends_on=['a'])\ndef compute_b(a):\n    return a + 2\n\n# Run the computation\ncomp.compute_all()\nprint(comp.get_value('b'))  # Output: 3","lang":"python","description":"Define a simple computation graph with two nodes and run it.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}