Metadata-Version: 2.4
Name: taskchain-kanishka
Version: 0.1.0
Summary: Simple task pipeline library in Python
Author: Kanishka Shrivastava
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

# TaskChain  

A simple Python library to create and execute task pipelines using chaining.

## Features

- Chain tasks using `>>`
- Retry failed tasks
- Track task status
- Show execution summary

## Usage

```python
from taskchain import Task, Executor

def download():
    print("Downloading...")

def process():
    print("Processing...")

t1 = Task("Download", download)
t2 = Task("Process", process)

t1 >> t2

pipeline = Executor(t1)
pipeline.run()

Author

Kanishka Shrivastava

