Metadata-Version: 2.4
Name: gumloop
Version: 0.1.0
Summary: Python client for the Gumloop API
Project-URL: Homepage, https://github.com/gumloop/gumloop-py
Project-URL: Bug Tracker, https://github.com/gumloop/gumloop-py/issues
Author-email: Rahul Behal <rahul@gumloop.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Requires-Dist: requests>=2.25.0
Description-Content-Type: text/markdown

# Gumloop Python Client

A Python client for the Gumloop API that makes it easy to run and monitor Gumloop flows.

## Installation

```bash
pip install gumloop
```

## Usage

```python
from gumloop import GumloopClient

# Initialize the client
client = GumloopClient(
    api_key="your_api_key",
    user_id="your_user_id"
)

# Run a flow and wait for outputs
output = client.run_flow(
    flow_id="your_flow_id",
    inputs={
        "recipient": "example@email.com",
        "subject": "Hello",
        "body": "World"
    }
)

print(output)
```
