Metadata-Version: 2.4
Name: n8n-workflow-cli
Version: 0.1.0
Summary: Zero-dependency CLI for the n8n REST API. Create, manage, and run workflows from the command line.
Project-URL: Homepage, https://github.com/arnoldadlv/n8n-cli
Project-URL: Issues, https://github.com/arnoldadlv/n8n-cli/issues
Author: Arnold D
License-Expression: MIT
License-File: LICENSE
Keywords: api,automation,cli,n8n,workflow
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# n8n CLI

Zero-dependency CLI for the n8n REST API. Create, manage, and run workflows from the command line.

## Install

```bash
pip install n8n-workflow-cli
```

## Setup

```bash
export N8N_HOST=http://localhost:5678
export N8N_API_KEY=your-api-key
```

## Usage

```bash
n8n list-workflows
n8n get-workflow <id>
n8n create-from-template webhook --name "My Webhook"
n8n run <id> --data '{"key": "value"}'
n8n export <id> --file backup.json
```

Run `n8n` with no arguments to see all commands.
