Metadata-Version: 2.1
Name: resumex
Version: 0.0.2
Summary: 
Author: Yikai Lai
Author-email: laiyk5@163.com
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: graphviz (>=0.20.3,<0.21.0)
Requires-Dist: jsonlines (>=4.0.0,<5.0.0)
Requires-Dist: pydantic (>=2.8.2,<3.0.0)
Description-Content-Type: text/markdown

# ResumeX

A python package tha handle common issues in data processing.

## Links

- [github](https://github.com/laiyk5/resumex)
- [doc](https://laiyk5.github.io/resumex)

## Usage

1. Organize you tasks into a job, which is represented by `JobGraph`
2. Define your task as a function, which has input as a mapping from source-task-name to input data, and output as a dict from dest-task-name to output data.
3. Run the function with several inputs asynchronously with `MPExecutor`

