Metadata-Version: 2.4
Name: fluidgrids
Version: 0.1.0
Summary: Python SDK for the FluidGrids Workflow Engine
Home-page: https://fluidgrids.ai/
Author: Vignesh T.V
Author-email: vignesh@algoshred.com
Project-URL: Bug Tracker, https://github.com/algoshred/fluidgrids/issues
Project-URL: Documentation, https://docs.fluidgrids.ai/sdk
Project-URL: Source Code, https://github.com/algoshred/fluidgrids
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.25.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: python-dateutil>=2.8.2
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# FluidGrids SDK

A Python SDK for interacting with the FluidGrids Workflow Engine, by Algoshred Technologies Private Limited.

## Installation

```bash
pip install fluidgrids
```

## Quick Start

```python
from fluidgrids import FluidGridsClient

# Initialize client with your API credentials
client = FluidGridsClient(
    base_url="https://api.fluidgrids.com",
    api_key="your_api_key"
)

# List all workflows
workflows = client.workflows.list()

# Get a specific workflow
workflow = client.workflows.get("workflow-key", "latest")

# Trigger a workflow run
run = client.runs.trigger(
    workflow_key="workflow-key",
    version="latest",
    context={"input_data": "value"}
)

# Check the status of a run
run_status = client.runs.get(run.run_id)
```

## Features

- **Authentication** - Multiple authentication methods (API key, username/password, token)
- **Workflow Management** - Create, update, delete, and manage workflows
- **Run Execution** - Trigger, monitor, and control workflow executions
- **Configuration** - Access and update workflow engine configuration
- **Credentials** - Manage credentials for workflows

## Documentation

For detailed documentation, visit [the FluidGrids SDK documentation](https://docs.fluidgrids.ai/sdk).

## Requirements

- Python 3.8 or higher
- `requests`
- `pydantic`
- `python-dateutil`

## License

MIT

## About

FluidGrids is a workflow engine product by [Algoshred Technologies Private Limited](https://fluidgrids.ai/). The engine allows you to create, manage, and run workflows with ease. 
