Name | node-graph JSON |
Version |
0.1.10
JSON |
| download |
home_page | None |
Summary | Create node-based workflow |
upload_time | 2024-12-12 12:34:59 |
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
[![PyPI version](https://badge.fury.io/py/node-graph.svg)](https://badge.fury.io/py/node-graph)
[![CI](https://github.com/scinode/node-graph/actions/workflows/ci.yaml/badge.svg)](https://github.com/scinode/node-graph/actions/workflows/ci.yaml)
[![codecov](https://codecov.io/gh/scinode/node-graph/branch/main/graph/badge.svg)](https://codecov.io/gh/scinode/node-graph)
[![Docs status](https://readthedocs.org/projects/node-graph/badge)](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
ng = NodeGraph(name="example")
add1 = ng.add_node("node_graph.test_add", x=1, y=2)
add2 = ng.add_node("node_graph.test_add", x=3)
ng.add_link(add1.outputs[0], 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/92/ee/3388677cdc35d72f7364fc8ad8dfd5768b9243992cb2624d565ae1649296/node_graph-0.1.10.tar.gz",
"platform": null,
"description": "# NodeGraph\n[![PyPI version](https://badge.fury.io/py/node-graph.svg)](https://badge.fury.io/py/node-graph)\n[![CI](https://github.com/scinode/node-graph/actions/workflows/ci.yaml/badge.svg)](https://github.com/scinode/node-graph/actions/workflows/ci.yaml)\n[![codecov](https://codecov.io/gh/scinode/node-graph/branch/main/graph/badge.svg)](https://codecov.io/gh/scinode/node-graph)\n[![Docs status](https://readthedocs.org/projects/node-graph/badge)](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\nng = NodeGraph(name=\"example\")\nadd1 = ng.add_node(\"node_graph.test_add\", x=1, y=2)\nadd2 = ng.add_node(\"node_graph.test_add\", x=3)\nng.add_link(add1.outputs[0], 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.1.10",
"project_urls": {
"Documentation": "https://node-graph.readthedocs.io",
"Source": "https://github.com/scinode/node-graph"
},
"split_keywords": [
"graph",
" workflows"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "473380ed4d7089e089062005dc85b9a7d52435aea08cffdb77e6097981da0a24",
"md5": "b387282346f0218dc9dc978fc7a9ba78",
"sha256": "c60f860d1c5f3cf264f1e4b1b53c1f8dc297771e820d99df602d5ea28e36e1a9"
},
"downloads": -1,
"filename": "node_graph-0.1.10-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b387282346f0218dc9dc978fc7a9ba78",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 36184,
"upload_time": "2024-12-12T12:34:57",
"upload_time_iso_8601": "2024-12-12T12:34:57.305364Z",
"url": "https://files.pythonhosted.org/packages/47/33/80ed4d7089e089062005dc85b9a7d52435aea08cffdb77e6097981da0a24/node_graph-0.1.10-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "92ee3388677cdc35d72f7364fc8ad8dfd5768b9243992cb2624d565ae1649296",
"md5": "620a1bafde4259144a53cf32a7e71c75",
"sha256": "afb3c39cbae564bb653c8f1d6dc79d3fdb869becafc156276f6b65407b170f32"
},
"downloads": -1,
"filename": "node_graph-0.1.10.tar.gz",
"has_sig": false,
"md5_digest": "620a1bafde4259144a53cf32a7e71c75",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 28737,
"upload_time": "2024-12-12T12:34:59",
"upload_time_iso_8601": "2024-12-12T12:34:59.565577Z",
"url": "https://files.pythonhosted.org/packages/92/ee/3388677cdc35d72f7364fc8ad8dfd5768b9243992cb2624d565ae1649296/node_graph-0.1.10.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-12 12:34:59",
"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"
}