Metadata-Version: 2.1
Name: dagster-meltano
Version: 0.0.2
Summary: A Dagster plugin that allows you to run Meltano in Dagster
Home-page: https://github.com/quantile-development/dagster-meltano
Author: Jules Huisman
Author-email: jules.huisman@quantile.nl
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/quantile-development/dagster-meltano/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Dagster-meltano (Under development)
A dagster plugin that allows you to run Meltano pipelines using Dagster.

[![Open in Visual Studio Code](https://open.vscode.dev/badges/open-in-vscode.svg)](https://open.vscode.dev/quantile-development/dagster-meltano)

## Installation
1. Install using pip `pip install dagster-meltano`.
2. Make sure you have an installed Meltano project.
3. Point the plugin to the root of the Meltano project by defining `MELTANO_PROJECT_ROOT`.

## Example
An example of a Dagster pipeline that runs a Meltano elt process.
```python
from dagster import pipeline
from dagster_meltano.solids import meltano_elt_solid

@pipeline
def meltano_pipeline():
    meltano_elt_solid(
        tap='tap-csv',
        target='target-jsonl',
        job_id='csv-to-jsonl' #Optional
    )
```

## Development
1. Open this repository in Visual Studio Code.
2. Install the [Remote - Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) plugin for Visual Studio Code.
3. Wait for the container setup, it should automatically install all Meltano plugins and start Dagit. 
4. Visit `localhost:3000` to access Dagit.

