Metadata-Version: 2.4
Name: servcetl
Version: 0.1.3
Summary: ETL Typings for serv-c
Author-email: Yusuf Ali <ali@yusuf.email>
Project-URL: Homepage, https://github.com/serv-c/servc-etl-python
Project-URL: Bug Tracker, https://github.com/serv-c/servc-etl-python/issues
Project-URL: Repository, https://github.com/serv-c/servc-etl-python.git
Project-URL: Documentation, https://docs.servc.io/
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# servc-etl-python

Typings for ETL using Serv-C.

[![PyPI version](https://badge.fury.io/py/servcetl.svg)](https://pypi.org/project/servcetl/)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/servcetl)](https://pypi.org/project/servcetl/)

## Publishing a Dag

To publish a dag, simply use the github action as part of your pipeline:

```yaml
- name: Publish Dag
  uses: serv-c/servc-etl-python
  if: github.ref_name == 'main'
  with:
    api_token: ${{ secrets.API_TOKEN }}

    # OPTIONAL:
    # dag_json: dag.json                # location of the dag to publish
    # api_url: https://api.servc.io     # the api endpoint to push to
    # python_version: 3.13              # the python version to use for publishing
```
