Metadata-Version: 2.4
Name: procyl
Version: 0.1.0
Summary: Lightweight Python execution layer for managing isolated workers as named tasks
Author: yolezz
License: MIT
Project-URL: Homepage, https://github.com/yo-le-zz/Procyl
Project-URL: Source, https://github.com/yo-le-zz/Procyl
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Dynamic: license-file

# Procyl

Procyl is a lightweight Python execution layer for managing isolated workers as named tasks. It allows defining and running Python code snippets as independent units using a simple API, with output captured through subprocess execution.

## Example

```python
import procyl

procyl.create("hello", """
print("Hello World")
""")

print(procyl.run("hello"))
