Package to create JRAGBEER Common Functions
Project description
jragbeer_common
Overview
A Python utility library containing common functions and tools used across various projects. This library provides reusable components for:
- Data processing and engineering
- Azure blob storage operations
- Dask distributed computing
- Ubuntu system operations
Features
-
Data Engineering Utilities
- DataFrame manipulation and cleaning
- SQL database operations
- Email notifications
- Date/time processing
- Logging configuration
-
Azure Integration
- Blob storage upload/download
- Parquet file handling
- Container management
- Batch operations
-
Dask Distributed Computing
- Cluster deployment and management
- Worker allocation
- Task scheduling
- Remote execution
-
Ubuntu System Operations
- Remote command execution
- Process management
- System monitoring
- File operations
Installation
- Install
uv(recommended):
pip install uv
- Create and activate a virtual environment:
uv venv
source .venv/bin/activate # Linux/Mac
# or
.venv\Scripts\activate # Windows
- Install the package:
uv pip install jragbeer-common
Development Setup
- Clone the repository:
git clone https://github.com/jragbeer/jragbeer_common.git
cd jragbeer_common
- Create a virtual environment and install dependencies:
uv venv
source .venv/bin/activate
uv pip install -r requirements.txt
- Install development dependencies:
uv pip install -e ".[dev]"
- Install pre-commit hooks:
pre-commit install
Usage
from jragbeer_common import (
jragbeer_common_data_eng,
jragbeer_common_azure,
jragbeer_common_dask,
jragbeer_common_ubuntu
)
# Data Engineering
jragbeer_common_data_eng.parse_date_features(df)
# Azure Operations
jragbeer_common_azure.adls_upload_file("path/to/file", "blob_name")
# Dask Operations
jragbeer_common_dask.deploy_dask_home_setup()
# Ubuntu Operations
jragbeer_common_ubuntu.execute_cmd_ubuntu_sudo("command")
Environment Variables
The following environment variables are required:
# Azure Storage
adls_connection_string="your_connection_string"
adls_container_name="your_container"
# Database
local_db_username="username"
local_db_password="password"
local_db_address="address"
local_db_port="port"
# Cluster Configuration
cluster_server_1_address="address"
cluster_server_1_username="username"
cluster_server_1_password="password"
Building and Distribution
- Build the package:
uv build
- Install locally for testing:
uv pip install dist/jragbeer_common-0.2.0-py3-none-any.whl
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Run tests and linting:
uv sync --extra dev
pre-commit run --all-files
uv run pytest
CI runs the same full suite on each push and pull request (see
.github/workflows/test.yml), including tests
marked integration (Docker Postgres, etc.). You need a working Docker daemon
for a green run locally and in GitHub Actions (the runner provides Docker).
Markers (unit, integration, contract) still classify tests in
pyproject.toml; nothing is excluded by default.
Integration tests (Docker Postgres)
Database tests that open PostgreSQL live in
test/db/test_jragbeer_common_db.py and are
marked @pytest.mark.integration. They use the session-scoped container from
test/fixtures/postgresql.py plus the docker
Python client and psycopg2-binary. They run as part of the default
uv run pytest (and in CI).
Optional environment variables (defaults in parentheses):
TEST_POSTGRESQL_PORT— host port mapped to the container (54329)TEST_POSTGRESQL_USER,TEST_POSTGRESQL_PASSWORD,TEST_POSTGRESQL_DATABASE— bootstrap credentials (devuser/devpassword/postgres)TEST_POSTGRESQL_VERSION— image tag afterpostgres:(17.4)
Readiness is checked with TCP connections via psycopg2 from the host (same as SQLAlchemy), not docker exec psql, so you do not need the docker CLI or host postgresql-client for the wait loop.
Future work: tests that hit real services should live under the appropriate
test/<subpackage>/ package, be marked @pytest.mark.integration, and
document required environment variables in the test module docstring.
License
Copyright 2026 Julien Ragbeer
Licensed under the Apache License, Version 2.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jragbeer_common-0.2.64.tar.gz.
File metadata
- Download URL: jragbeer_common-0.2.64.tar.gz
- Upload date:
- Size: 40.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c1195cee543946b42db56471a01e013d4489df91c210fe5a22eeb3081bcb411
|
|
| MD5 |
bc8ad512c9bc7704a7a2c90d9bcd67bd
|
|
| BLAKE2b-256 |
369b1b6dbd7b78dcbdac1c915cff398ee4458c00daba99c35f1478f34ba3fb1a
|
File details
Details for the file jragbeer_common-0.2.64-py3-none-any.whl.
File metadata
- Download URL: jragbeer_common-0.2.64-py3-none-any.whl
- Upload date:
- Size: 40.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d16c5b8ffac0a00d3db581349446558cc1cd2772e5a455a8b19675b26b96c033
|
|
| MD5 |
679ceca1f1a6cd484e4db5500fa0d45d
|
|
| BLAKE2b-256 |
9cbab1cf071925d45d9c01e63181a29a2e7d6531027164fe2a442811907a5489
|