Metadata-Version: 2.4
Name: knime-nodepit-batch
Version: 0.1.3
Summary: Run KNIME workflows via NodePit batch executor
Author-email: Bob Peers <bob.peers@nn07.com>
License-Expression: GPL-3.0-or-later
Project-URL: Homepage, https://nn07.com
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# Summary

Run KNIME workflows via NodePit batch executor (https://nodepit.com/product/batch)

## Install

pip install knime-nodepit-batch

## Usage

- Import the package
- Create a workflow, optionally passing the path to your KNIME preferences file
- Execute

```python
from knime_nodepit_batch import Workflow

wf = Workflow(r"C:\path\to\workflow", preferences_path=r"C:\path\to\knime_preferences.epf")
wf.execute()
```

The KNIME executable path defaults to `C:\Program Files\KNIME\knime.exe` on
Windows, `/Applications/KNIME.app/Contents/MacOS/knime` on macOS, and
`/opt/knime` on Linux. Override it by setting the
`KNIME_EXEC` environment variable.

## Notes
By default this runs KNIME with the following options
- -nosplash
- --reset
- --no-save
- --launcher.suppressErrors

