Metadata-Version: 2.4
Name: pipen-dry
Version: 1.1.2
Summary: Dry runner for pipen pipelines
Author-email: pwwang <pwwang@pwwang.com>
License-Expression: MIT
Requires-Python: <4,>=3.9
Requires-Dist: pipen>=1.1
Provides-Extra: examples
Requires-Dist: google-cloud-storage>=3; extra == 'examples'
Requires-Dist: python-dotenv>=1; extra == 'examples'
Description-Content-Type: text/markdown

# pipen-dry

Dry runner for [pipen][1]

It is useful to quickly check if there are misconfigurations for your pipeline without actually running it.

## Install

```shell
pip install -U pipen-dry
```

## Usage

- Use it for process

    ```python
    class P1(Proc):
        scheduler = "dry"
    ```

- Use it for pipeline

    ```python
    Pipen(scheduler="dry", ...)
    ```

[1]: https://github.com/pwwang/pipen
