Metadata-Version: 2.1
Name: pyprexor
Version: 1.1.0
Summary: 
Home-page: https://github.com/NickSebClark/pyprexor
Author: _MircoWave_
Author-email: clarknick1990@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Project-URL: Repository, https://github.com/NickSebClark/pyprexor
Description-Content-Type: text/markdown

# pyprexor

The **py**thon **pr**ocess **ex**ecut**or**.

![Tests](https://github.com/NickSebClark/pyprexor/actions/workflows/tests.yml/badge.svg?branch=main&event=push)
![Coverage](https://codecov.io/github/NickSebClark/pyprexor/coverage.svg?branch=main)
[![PyPI Latest](https://badgen.net/pypi/v/pyprexor)](https://pypi.org/project/pyprexor/)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

### What Does Pyprexor Do?

Pyprexor helps create traceability between your process inputs and process outputs.

Parameter sets are stored in a datastore and pyprexor seamlessly passes the required parameters to your annotated processes (a.k.a python functions).

Process outputs are added to the datastore complete with execution metadata and traceability back to your parameter set.
 
See [example.py](/example_app/example.py) for basic usage. 

## Installation

Pyprexor can be installed from PyPI using pip (`$ pip install pyprexor`) or your favourite package manager; we like poetry! (`$ poetry add pyprexor`)

### Running From Source

Dependencies are managed with [poetry](https://python-poetry.org/).

```cmd
pip install poetry
poetry install
```

## Contribution Guide

The project is linted with [ruff](https://github.com/astral-sh/ruff), styled with [black](https://github.com/psf/black) and type checked with [mypy](https://github.com/python/mypy).

## Datastores

Pyprexor ships with an *InMemoryDatastore*. This allows parameter sets to be loaded into memory on initialisation. Process data is added to a list in memory and can be read out on command. See the [example.py](/example_app/example.py) for usage.

### MongoDB

A basic wrapper around the MongoDB API is provided in [pyprexor_datastore.mongo](pyrprexor_datastore/mongo.py). It requires that pymongo is installed separately (i.e. ```pip install mongo```). If running the package from source, you an use :

```
poetry install --with mongo
```

