Skip to content

Commit

Permalink
Preparations for pre-release 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
meshushkevich committed Oct 16, 2024
1 parent 4b05cfe commit ca39736
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
23 changes: 22 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,23 @@
# Nodeflow
This is a package that helps you combine python scrips using a node system
----------
Nodeflow if a framework to make pipelines from nodes. You can implement any logic you want by using Variable,
Function and Adapter nodes. Nodeflow support implicit converter for Variables with priority on non-lossy adapters
converting pipeline

Installing
----------
Install NodeFlow from PyPI via ``pip install nodeflow``

Usage
----------
To write your own things just implement all required methods in corresponding abstract classes.
Example for Variable:
```python
from nodeflow.node.abstract import Variable


class Bool(Variable):
def __init__(self, value: bool):
assert isinstance(value, bool)
super().__init__(value)
```
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nodeflow"
version = "0.0.1"
version = "0.0.2"
description = ""
authors = ["Maksim Shushkevich <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit ca39736

Please sign in to comment.