Metadata-Version: 2.1
Name: airflow-provider-graphgrid
Version: 2.0.2
Summary: GraphGrid Provider Package
Home-page: https://docs.graphgrid.com/2.0/#/
Author: graphgrid
Author-email: 
License: Apache License 2.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: !=3.9.*, >=3.6
Description-Content-Type: text/markdown

The airflow-provider-graphgrid package includes Operators and functionality
in order to better streamline Airflow workflows within GraphGrid CDP.

Airflow DAGs can leverage the `GraphGridDockerOperator` and `GraphGridMount`
via

```python
from graphgrid_provider.operators.graphgrid_docker import \
    GraphGridDockerOperator, GraphGridMount
```

and use them as if they were a normal `DockerOperator`

```python
t_0 = GraphGridDockerOperator(task_id='task_0',
                              dag=dag,
                              mounts=[GraphGridMount(target="/some_path",
                                                     source="/some_other_path",
                                                     type="bind")],
                              image="some-image",
                              auto_remove=True,
                              )
```
