Metadata-Version: 2.4
Name: pylib-taskqueue
Version: 0.1.0
Summary: In-memory async queue with retry & backoff. Task processing for AI agents. Perfect for AI agents and LLM applications.
Author: pylib-taskqueue
License: MIT
Project-URL: Homepage, https://github.com/upendra-manike/PyLib
Project-URL: Repository, https://github.com/upendra-manike/PyLib
Project-URL: Documentation, https://github.com/upendra-manike/PyLib
Project-URL: Issues, https://github.com/upendra-manike/PyLib/issues
Keywords: ai,async,data-processing,data-science,machine-learning,ml,nlp,queue,task-processing,utilities
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# pytaskqueue

In-memory async queue

## Installation

```bash
pip install pytaskqueue
```

## 💡 Usage Examples

### Basic Operations

```python
from pylib_taskqueue import TaskQueue

# Create task queue
queue = TaskQueue()
queue.enqueue(task_function, args=[1, 2, 3])
queue.process()
```

### AI/ML Use Cases

```python
from pylib_taskqueue import TaskQueue

# Queue ML prediction tasks
queue.enqueue(predict_task, data=data_point)
queue.enqueue(train_task, data=training_batch)
```

## 📚 API Reference

See package documentation for complete API reference.


## 🤖 AI Agent Friendly

This package is optimized for AI agents and code generation tools:
- **Clear function names** and signatures
- **Comprehensive docstrings** with examples
- **Type hints** for better IDE support
- **Common use cases** documented
- **Zero dependencies** for reliability

## License

MIT
