Collection of nodes for use in workflows.
Project description
workflow-nodes
workflow-nodes is a collection of nodes written in Python 3, which are
usable inside a workflow. Each node is an executable command line tool
providing the --xmlhelp
interface, which can be used to obtain a machine
readable representation of any command line tool and its parameters (see also
xmlhelpy).
There are nodes for many different tasks, for example to generate pdf reports, for working with Microsoft Excel files, to convert data from and to different formats, for printing debug output, to execute scripts or other executable programs, for plotting data, and for visualizing data from a Kadi4Mat repository.
Installation
The library can be installed using pip3
(or pip
, if there is no dedicated
version of pip
for Python 3 installed), which generally comes bundled with
Python installations. Python version >= 3.6 is required.
pip3 install workflow-nodes
When installing the library from source for development instead, it is
recommended to install the library in editable mode, which simply creates a
link to the sources so all changes are reflected in the installed package
immediately. The command will also install some additional development
dependencies as defined in setup.py
.
pip3 install -e .[dev]
Running the installations inside a virtual environment is recommended, see Virtualenv for more information.
After installing, make sure the workflow-nodes
command is runnable from
anywhere. Depending on the type of installation and if a virtual environment is
used or not, the PATH
system variable may need to be adapted accordingly to
include the path the executable resides in. For example, the following command
can be used on Linux, assuming the executable resides in ~/.local/bin
:
export PATH=${HOME}/.local/bin:${PATH}
This line can also be added to .bashrc
so it will be executed each time a new
terminal is opened:
echo 'export PATH=${HOME}/.local/bin:${PATH}' >> ${HOME}/.bashrc
Autocomplete is available for fish, zsh, bash and PowerShell and can be activated via:
workflow-nodes config activate-autocompletion
Usage
All commands concerning different resources are available as various subcommands. For more information or to get a list of subcommands, the following commands can be used:
workflow-nodes --help
workflow-nodes --commands
Each subcommand has an individual help option, and the main command as well as
the command groups additionally allow to request a list of all available
subcommands using the --commands
option.
To use nodes with the local workflow editor, they have to be added to the file
$HOME/.kadistudio/tools.txt
. Afterwards you can insert them using the "Add
Tool" context menu option in the editor.
To register all available nodes from this repository at once, use the following command:
workflow-nodes --commands >> `$HOME/.kadistudio/tools.txt`
Contributing
- First, create a fork of this project and clone it. The main repository can be
added as an additional remote to the cloned project, often called
upstream
. Also checkout thedevelopment
branch, which is currently used as the main development branch. - Install the project in development mode according to the instructions above
and setup the pre-commit hooks by running
pre-commit install
. - Create a Python file for the node in the desired package, e.g. in
workflow_nodes/report/
and implement the functionality of the tool. You can use other existing tools as a reference. Afterwards, add the implemented function to a fitting subcommand group, e.g. toworkflow_nodes/report/main.py
. - If there are any new dependencies, add them to
setup.py
with appropriate version ranges, if necessary. - Add an entry about any new functionality to
HISTORY.md
. You may also add yourself as a contributor toAUTHORS.md
. - Before creating a merge request on the main repository, make sure the GitLab CI runs through successfully in your fork.
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 Distributions
Built Distribution
File details
Details for the file workflow_nodes-0.10.1-py3-none-any.whl
.
File metadata
- Download URL: workflow_nodes-0.10.1-py3-none-any.whl
- Upload date:
- Size: 93.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9cb234241bdd65ed4dae2fa71ffc4d610b6b5afb505428fc3583271ebca6177a |
|
MD5 | 285e2511672339df13e08ee6572398e8 |
|
BLAKE2b-256 | 50ebf8e5bceeabd843284804451b8a945c1277e582108dd6f4876122d67e6dcc |