Name | node-graph JSON |
Version |
0.2.20
JSON |
| download |
home_page | None |
Summary | Create node-based workflow |
upload_time | 2025-07-30 06:54:17 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | None |
keywords |
graph
workflows
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# NodeGraph
[](https://badge.fury.io/py/node-graph)
[](https://github.com/scinode/node-graph/actions/workflows/ci.yaml)
[](https://codecov.io/gh/scinode/node-graph)
[](http://node-graph.readthedocs.io/)
A platform for designing node-based workflows.
```console
pip install --upgrade --user node_graph
```
## Documentation
Check the [docs](https://node-graph.readthedocs.io/en/latest/) and learn about the features.
## Examples
**A simple math calculation**
```python
from node_graph import NodeGraph, node
@node()
def add(x, y):
return x + y
ng = NodeGraph(name="example")
add1 = ng.add_node(add, x=1, y=2)
add2 = ng.add_node(add, x=3)
ng.add_link(add1.outputs.result, add2.inputs.y)
ntdata = ng.to_dict()
```
## License
[MIT](http://opensource.org/licenses/MIT)
Raw data
{
"_id": null,
"home_page": null,
"name": "node-graph",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "graph, workflows",
"author": null,
"author_email": "Xing Wang <xingwang1991@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/34/7b/bd3ba9360284473fd13eb9fedfdcc812067e2871fa57c8fbca226c2a7f4b/node_graph-0.2.20.tar.gz",
"platform": null,
"description": "# NodeGraph\n[](https://badge.fury.io/py/node-graph)\n[](https://github.com/scinode/node-graph/actions/workflows/ci.yaml)\n[](https://codecov.io/gh/scinode/node-graph)\n[](http://node-graph.readthedocs.io/)\n\n\n\nA platform for designing node-based workflows.\n\n\n```console\n pip install --upgrade --user node_graph\n```\n\n\n## Documentation\nCheck the [docs](https://node-graph.readthedocs.io/en/latest/) and learn about the features.\n\n## Examples\n**A simple math calculation**\n\n```python\nfrom node_graph import NodeGraph, node\n\n@node()\ndef add(x, y):\n return x + y\n\nng = NodeGraph(name=\"example\")\nadd1 = ng.add_node(add, x=1, y=2)\nadd2 = ng.add_node(add, x=3)\nng.add_link(add1.outputs.result, add2.inputs.y)\nntdata = ng.to_dict()\n```\n\n## License\n[MIT](http://opensource.org/licenses/MIT)\n\n",
"bugtrack_url": null,
"license": null,
"summary": "Create node-based workflow",
"version": "0.2.20",
"project_urls": {
"Documentation": "https://node-graph.readthedocs.io",
"Source": "https://github.com/scinode/node-graph"
},
"split_keywords": [
"graph",
" workflows"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "9297b0c6728088df7146b958c313650950a32fffc5a6fbb646198281e3ae6eba",
"md5": "22c7ddc8a398d291a0b6a2465ef4502c",
"sha256": "bf7b7bf810cfcf1d635e80f837985e919590a58e8ddf4d83fce017dfc016e6d9"
},
"downloads": -1,
"filename": "node_graph-0.2.20-py3-none-any.whl",
"has_sig": false,
"md5_digest": "22c7ddc8a398d291a0b6a2465ef4502c",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 50702,
"upload_time": "2025-07-30T06:54:16",
"upload_time_iso_8601": "2025-07-30T06:54:16.200618Z",
"url": "https://files.pythonhosted.org/packages/92/97/b0c6728088df7146b958c313650950a32fffc5a6fbb646198281e3ae6eba/node_graph-0.2.20-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "347bbd3ba9360284473fd13eb9fedfdcc812067e2871fa57c8fbca226c2a7f4b",
"md5": "695c60310a48c6155ba711257e96c50c",
"sha256": "4502d7b97836d1a34b11dc4c77c1a2647950b415906650b5671cda73d0eca13e"
},
"downloads": -1,
"filename": "node_graph-0.2.20.tar.gz",
"has_sig": false,
"md5_digest": "695c60310a48c6155ba711257e96c50c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 40793,
"upload_time": "2025-07-30T06:54:17",
"upload_time_iso_8601": "2025-07-30T06:54:17.611826Z",
"url": "https://files.pythonhosted.org/packages/34/7b/bd3ba9360284473fd13eb9fedfdcc812067e2871fa57c8fbca226c2a7f4b/node_graph-0.2.20.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-30 06:54:17",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "scinode",
"github_project": "node-graph",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "node-graph"
}