CAPE Python Utilities

CI/CD PyPI Latest Release

This repository contains a collection of utility functions useful for developing on and interacting with the CAPE infrastructure. It basically provides an abstraction layer over the core concepts such as ETL (extract, transform, load) jobs and analysis pipelines that allow interacting with these types of structures without worrying about the implementation details of each.

Installation

pip install capepy

Development

Install dependencies with

poetry install

We have Poetry set up to install into a virtual environment within the repository as .venv. You can either use the Poetry shell feature or activate this environment directly.

# Activate the Poetry shell
poetry shell
# Activate the virtual environment directly
source .venv/bin/activate