No project description provided
Project description
ZnFlow
The ZnFlow package provides a basic structure for building computational graphs based on functions or classes. It is designed as a lightweight abstraction layer to
- learn graph computing.
- build your own packages on top of it.
Installation
pip install znflow
Usage
Connecting Functions
With ZnFlow you can connect functions to each other by using the @nodify decorator. Inside the znflow.DiGraph the decorator will return a FunctionFuture object that can be used to connect the function to other nodes. The FunctionFuture object will also be used to retrieve the result of the function.
Outside the znflow.DiGraph the function behaves as a normal function.
import znflow
@znflow.nodify
def compute_mean(x, y):
return (x + y) / 2
print(compute_mean(2, 8))
# >>> 5
with znflow.DiGraph() as graph:
mean = compute_mean(2, 8)
graph.run()
print(mean.result)
# >>> 5
with znflow.DiGraph() as graph:
n1 = compute_mean(2, 8)
n2 = compute_mean(13, 7)
n3 = compute_mean(n1, n2)
graph.run()
print(n3.result)
# >>> 7.5
Connecting Classes
It is also possible to connect classes.
They can be connected either directly or via class attributes.
This is possible by returning znflow.Connections inside the znflow.DiGraph context manager.
Outside the znflow.DiGraph the class behaves as a normal class.
In the following example we use a dataclass, but it works with all Python classes that inherit from znflow.Node.
import znflow
import dataclasses
@znflow.nodify
def compute_mean(x, y):
return (x + y) / 2
@dataclasses.dataclass
class ComputeMean(znflow.Node):
x: float
y: float
results: float = None
def run(self):
self.results = (self.x + self.y) / 2
with znflow.DiGraph() as graph:
n1 = ComputeMean(2, 8)
n2 = compute_mean(13, 7)
# connecting classes and functions to a Node
n3 = ComputeMean(n1.results, n2)
graph.run()
print(n3.results)
# >>> 7.5
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file znflow-0.1.0.tar.gz.
File metadata
- Download URL: znflow-0.1.0.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.10.8 Linux/5.15.0-58-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59d04d38bd7759ebb4c748678906d326a447320f362cbd31aa590e51bc0cba99
|
|
| MD5 |
7eaebe482bad1142cb36393dd9ee5508
|
|
| BLAKE2b-256 |
ebdbd909c01a47090e80e2c36a31afb0c2bbe070c053c52aeb24c7f5c97e5cba
|
File details
Details for the file znflow-0.1.0-py3-none-any.whl.
File metadata
- Download URL: znflow-0.1.0-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.10.8 Linux/5.15.0-58-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
926fde33129f848de2992bd8369f046ec5d40b58dd282390c6cedf196f0b3f5a
|
|
| MD5 |
f0994a1d3eaaaf7586f0a92d144f89ac
|
|
| BLAKE2b-256 |
635be8763b6bcbaa2a6a879eb3e60985653685dfe8b2c03f0dbe8579a2530b68
|