https://github.com/tulibraries/tulflow
TU Libraries Python Library for functions used in indexing ETL, particularly for Airflow
https://github.com/tulibraries/tulflow
airflow-dags dataops
Last synced: 28 days ago
JSON representation
TU Libraries Python Library for functions used in indexing ETL, particularly for Airflow
- Host: GitHub
- URL: https://github.com/tulibraries/tulflow
- Owner: tulibraries
- Created: 2019-08-14T18:22:34.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2025-10-30T22:04:29.000Z (4 months ago)
- Last Synced: 2025-10-31T00:08:43.846Z (4 months ago)
- Topics: airflow-dags, dataops
- Language: Python
- Size: 2.62 MB
- Stars: 3
- Watchers: 5
- Forks: 1
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TULFLOW
[](https://github.com/tulibraries/tulflow/actions/workflows/lint-test.yml)
Small Python package / library for common ETL-adjacent functions, primarily used in the TU Libraries Airflow tasks.
## Updating/Adding Package
If you make any updates or additions to this repository, a release will need to be created in order for the related Airflow DAGS to pick it up.
Releases are currently managed by PyPi and this project can be found [here](https://pypi.org/project/tulflow/). In order for releases to be pushed to PyPi, you will need to update ```VERSION``` with the new version number.
Within your DAG project, you will need to update the Pipfile to use the latest version of Tulflow.
* Update release version in Pipfile
* run ```pipenv shell```
* run ```pipenv install tulflow```
* Commit your changes in each repository
Right now we are using Tulflow in 2 different DAG repositories, so you should update the release in each one in order to ensure that the most recent version is actually the one being used.
* [cob_datapipeline](https://github.com/tulibraries/cob_datapipeline)
* [funcake_dags](https://github.com/tulibraries/funcake_dags)
## How to Use
If you would like to use one of these common functions in an Airflow DAG, you will need to include it as one of the import statements at the top of the file.
Example: ```from tulflow import process```