Packages shared between several Data related systems in Haypp Group
Project description
sbcommons
A comprehensive Python library providing shared utilities and clients for AWS services, CRM integrations (Klaviyo, Symplify), messaging platforms (Slack, Microsoft Teams), and data processing operations used across Haypp Group's data systems.
Features
- AWS Integration: Clients for S3, Redshift, Lambda, DMS, SNS, and Secrets Manager
- CRM Clients:
- Klaviyo API v3 client with comprehensive campaign, event, and customer management
- Symplify integration for customer relationship management
- ADP client for survey data
- Messaging: Slack and Microsoft Teams webhook utilities with modern Adaptive Cards support
- Logging: Enhanced logging with Lambda-compatible logger and rotating file handlers
- Data Utilities: Extract and parse utilities for common data transformation tasks
Installation
Install from PyPI:
pip install sbcommons
Requirements
- Python 3.9, 3.10, 3.11, or 3.12
- boto3 >= 1.24.35
- requests >= 2.28.1
- Other dependencies listed in
requirements.txt
Usage
AWS Services
from sbcommons.aws.s3 import S3Client
from sbcommons.aws.redshift import RedshiftClient
from sbcommons.aws.secrets import get_secret
# S3 operations
s3_client = S3Client()
s3_client.upload_file('local.txt', 'bucket', 'key.txt')
# Redshift queries
redshift = RedshiftClient(host='your-host', database='db')
results = redshift.execute_query('SELECT * FROM table')
# Secrets Manager
secret = get_secret('my-secret-name')
CRM Integration
from sbcommons.crm.klaviyo.client import KlaviyoClient
# Klaviyo operations
klaviyo = KlaviyoClient(api_key='your-key')
campaigns = klaviyo.get_email_campaigns()
events = klaviyo.get_events(metric_id='metric123')
Messaging
from sbcommons.teams.teams import post_to_teams
from sbcommons.slack.slack import SlackMessenger
# Microsoft Teams (Adaptive Cards)
post_to_teams('https://webhook-url', 'Message title', 'Message body')
# Slack
slack = SlackMessenger('https://slack-webhook-url')
slack.post_message('Hello from sbcommons!')
Development
Setup Development Environment
Clone the repository and create a virtual environment:
git clone https://github.com/Snusbolaget/sbcommons.git
cd sbcommons
pip install -r requirements.txt
Running Tests
# Run tests with pytest
pytest tests/ -v --cov=sbcommons --cov-report=term
Tests are automatically run via GitHub Actions on push and pull requests for Python 3.9, 3.10, and 3.11.
Building and Publishing
Local Development Builds
For local testing, you can build the package:
# Install build tools
pip install build twine
# Build distributions
python -m build
# Validate the build
twine check dist/*
# Clean build artifacts when done
rm -rf dist/ build/ *.egg-info
Testing on TestPyPI (Optional)
Before releasing to production, you can test the package on TestPyPI:
# Build and upload to TestPyPI
python -m build
twine upload --repository testpypi dist/*
# Test installation from TestPyPI
pip install --index-url https://test.pypi.org/simple/ sbcommons
Note: TestPyPI uploads are for manual testing only and should not be part of the automated workflow.
Publishing to PyPI (Production)
Publishing is fully automated via GitHub Actions. When your PR is merged to main, the release workflow automatically:
- Builds the package distributions
- Publishes to PyPI using the
PYPI_API_TOKENsecret
To release a new version:
- Update the version in
setup.py - Document changes in
CHANGELOG.md - Create a PR to
main - Once merged, the package is automatically published to PyPI
Manual publishing is not recommended to ensure consistency and prevent version conflicts. All releases should go through the PR review process.
Project Structure
sbcommons/
├── adp/ # ADP client integration
├── aws/ # AWS service clients (S3, Redshift, Lambda, etc.)
├── crm/ # CRM integrations (Klaviyo, Symplify)
├── extract_utils/ # Data extraction utilities
├── logging/ # Enhanced logging utilities
├── messaging/ # Webhook utilities
├── parse_utils/ # Configuration and text parsing
├── slack/ # Slack messaging client
└── teams/ # Microsoft Teams messaging (Adaptive Cards)
CI/CD
The project uses GitHub Actions for continuous integration and deployment:
- CI Workflow (
.github/workflows/ci.yml): Runs tests on Python 3.9-3.11 for all pull requests and pushes to main - Release Workflow (
.github/workflows/release.yml): Automatically publishes to PyPI when changes are pushed to main branch
Contributing
- Create a feature branch from
main - Make your changes and add tests
- Update the CHANGELOG.md with your changes
- Update the version in
setup.py - Submit a pull request
The CI workflow will verify that:
- Tests pass on all supported Python versions
- If
sbcommons/code is modified, both CHANGELOG.md and setup.py versions are updated
Changelog
See CHANGELOG.md for detailed version history.
Maintained by Haypp Group Data Team | data@hayppgroup.com
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 sbcommons-1.2.4.tar.gz.
File metadata
- Download URL: sbcommons-1.2.4.tar.gz
- Upload date:
- Size: 45.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e1b26e2208b2bc90368586094d0d2d85c48b5d1c5ef86d34600fdf36347ea4e
|
|
| MD5 |
dc8df3a89c666376f094e52db994a6f2
|
|
| BLAKE2b-256 |
50e247e038188841046d9b8ca019d368db2615ef10fb6f854e5d26ee13155081
|
File details
Details for the file sbcommons-1.2.4-py3-none-any.whl.
File metadata
- Download URL: sbcommons-1.2.4-py3-none-any.whl
- Upload date:
- Size: 53.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cde52719d64895f8c3255a78a5b7c83272391b74da112814bf27c5f50dd19837
|
|
| MD5 |
f3e3d8faee5f75204c0ebaf65da2b330
|
|
| BLAKE2b-256 |
38b475ac61d2ac6ec67ebf9e79bb2348befb27935cd6b39ef254998e4118f03f
|