BeETL is a Python package for extracting data from one datasource, transforming it and loading it into another datasource.
Project description
BeETL: Extensible Python/Polars-based ETL Framework
After building our 16th integration between the same two systems with another manual template, we decided to build BeETL. BeETL is currently limited to one datasource per source and destination per sync, but this will be expanded in the future. One configuration can contain multiple syncs.
Note: Even though some of the configuration below is in YAML format, you can also use JSON or a python dictionary.
TOC
- Minimal example
- Installation
- Getting Started
- Development Environment
- Documentation
- Change Notes
- Source Code
Minimal example
# Syncing users from one table to another in the same database
from src.beetl.beetl import Beetl, BeetlConfig
config = BeetlConfig({
"version": "V1"
"sources": [
{
"name": "Sqlserver",
"type": "Sqlserver",
"connection": {
"settings": {
"connection_string": "Server=myServerAddress;Database=myDataBase;User Id=myUsername;Password=myPassword;"
}
}
},
"sync": [
{
"name": "Sync between two tables in a sql server",
"source": "Sqlserver",
"sourceConfig": {
"query": "SELECT id, name, email FROM users"
}
"destination": "SqlServer",
"destinationConfig": {
"table": "users",
"unique_columns": ["id"]
}
"comparisonColumns": [
{
"name": "id",
"type": "Int32",
"unique": True
},
{
"name": "name",
"type": "Utf8"
},
{
"name": "email",
"type": "Utf8"
}
]
}
]
})
Beetl(config).sync()
Installation
From PyPi
#/bin/bash
python -m pip install beetl
# If you need to use xsl transformations
python -m pip install beetl[xsl]
From Source
#/bin/bash
# Clone and enter the repository
git clone https://github.com/Hoglandets-IT/beetl.git
cd ./beetl
# Install the build tools
python -m pip install build
# Build beetl
python -m build
# Install beetl from locally built package
python -m pip install ./dist/*.tar.gz
Getting Started
All the latest information about how to use beetl is located at the official docs.
Development Environment
The easiest way to get started is to use the included devcontainer.
Requirements
- Docker
- Visual Studio Code
Steps
- Clone the repository.
- Open the repository in Visual Studio Code.
- Install the recommended extensions.
- Using the command palette (
ctrl+shift+p) search forreopen in containerand run it.- The devcontainer will now be provisioned in your local docker instance and vscode will automatically connect to it.
- You can now use the included launch profiles to either open the docs or run the tests file.
- You can also use the built-in test explorer to run the available test.
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 beetl-1.4.0.tar.gz.
File metadata
- Download URL: beetl-1.4.0.tar.gz
- Upload date:
- Size: 56.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c19f3b0d037b95ef89942fe402c91c9a27fec9b2ce921959ec4622a837695c42
|
|
| MD5 |
d68ca0d236d6e846471950679b534ed8
|
|
| BLAKE2b-256 |
f540e44758d49eb1c39fdb79a15c235e8b2950b4f9945dff38f0a2aaa62564c2
|
File details
Details for the file beetl-1.4.0-py3-none-any.whl.
File metadata
- Download URL: beetl-1.4.0-py3-none-any.whl
- Upload date:
- Size: 86.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2319bea90777270edc5559964fe5d153c6b93caa0f21232bb6ce08a51e4e6e3a
|
|
| MD5 |
b3ef954f321255e0bb10e7e46e00cad1
|
|
| BLAKE2b-256 |
eb073593c82cbfdb1f593687bbd984dfb2c13e1ef1fc12b73ea4734c99264b5e
|