CLI tool for dbt users adopting analytics engineering best practices.
Project description
dbt-coves
What is dbt-coves?
dbt-coves is a complimentary CLI tool for dbt that allows users to quickly apply Analytics Engineering best practices.
⚠️ dbt-coves is in alpha version. Don’t use on your prod models unless you have tested it before.
Here’s the tool in action
Supported dbt versions
Version |
Status |
---|---|
0.17.0 |
❌ Not supported |
0.18.2 |
✅ Tested |
0.19.1 |
✅ Tested |
0.20.0 |
🕥 In progress |
Supported adapters
Feature |
Snowflake |
Redshift |
BigQuery |
Postgres |
---|---|---|---|---|
profile.yml generation |
✅ Tested |
🕥 In progress |
❌ Not tested |
❌ Not tested |
sources generation |
✅ Tested |
🕥 In progress |
❌ Not tested |
❌ Not tested |
Installation
pip install dbt-coves
We recommend using python virtualenvs and create one separate environment per project.
⚠️ if you have dbt < 0.18.0 installed, dbt-coves will automatically upgrade dbt to the latest version
Main Features
Project initialization
dbt-coves init
Initializes a new ready-to-use dbt project that includes recommended integrations such as sqlfluff, pre-commit, dbt packages, among others.
Uses a cookiecutter template to make it easier to maintain.
Models generation
dbt-coves generate <resource>
Where <resource> could be sources.
Code generation tool to easily generate models and model properties based on configuration and existing data.
Supports Jinja templates to adjust how the resources are generated.
Quality Assurance
dbt-coves check
Runs a set of checks in your local environment to ensure high code quality.
Checks can be extended by implementing pre-commit hooks.
Settings
Dbt-coves could optionally read settings from .dbt_coves.yml. A standard settings files could looke like this:
generate:
sources:
schemas:
- RAW
destination: "models/sources/{{ schema }}/{{ relation }}.sql"
model_props_strategy: one_file_per_model
templates_folder: "templates"
In this example options for the generate command are provided:
schemas: List of schema names where to look for source tables
destination: Path to generated model, where schema represents the lowercased schema and relation the lowercased table name.
model_props_strategy: Defines how dbt-coves generates model properties files, currently just one_file_per_model is available, creates one yaml file per model.
templates_folder: Folder where source generation jinja templates are located.
Override source generation templates
Customizing generated models and model properties requires placing specific files under the templates_folder folder like these:
source_model.sql
with raw_source as (
select * from {% raw %}{{{% endraw %} source('{{ relation.schema.lower() }}', '{{ relation.name.lower() }}') {% raw %}}}{% endraw %}
),
final as (
select
{%- for col in columns %}
{{ col.name.lower() }}{% if not loop.last or nested %},{% endif %}
{%- endfor %}
{%- if adapter_name == 'SnowflakeAdapter' %}
{%- for key, cols in nested.items() %}
{%- for col in cols %}
{{ key }}:{{ col.lower() }}::varchar as {{ col.lower() }}{% if not loop.last %},{% endif %}
{%- endfor %}
{%- endfor %}
{%- elif adapter_name == 'BigQueryAdapter' %}
{%- for key, cols in nested.items() %}
{%- for col in cols %}
cast({{ key }}.{{ col.lower() }} as string) as {{ col.lower() }}{% if not loop.last %},{% endif %}
{%- endfor %}
{%- endfor %}
{%- elif adapter_name == 'RedshiftAdapter' %}
{%- for key, cols in nested.items() %}
{%- for col in cols %}
{{ key }}.{{ col.lower() }}::varchar as {{ col.lower() }}{% if not loop.last %},{% endif %}
{%- endfor %}
{%- endfor %}
{%- endif %}
from raw_source
)
select * from final
source_model_props.yml
version: 2
sources:
- name: {{ relation.schema.lower() }}
schema: {{ relation.schema.lower() }}
tables:
- name: {{ relation.name.lower() }}
identifier: {{ relation.name }}
models:
- name: {{ model.lower() }}
columns:
{%- for col in columns %}
- name: {{ col.name.lower() }}
{%- endfor %}
{%- for cols in nested.values() %}
{%- for col in cols %}
- name: {{ col }}
{%- endfor %}
{%- endfor %}
CLI Detailed Reference
CLI tool for dbt users applying analytics engineering best practices.
usage: dbt_coves [-h] [-v] {init,generate,check,fix} ...
Named Arguments
-v, –version
show program’s version number and exit
dbt-coves commands
task
Possible choices: init, generate, check, fix
Sub-commands:
init
Initializes a new dbt project using predefined conventions.
dbt_coves init [-h] [--log-level LOG_LEVEL] [-vv] [--config-path CONFIG_PATH] [--project-dir PROJECT_DIR] [--profiles-dir PROFILES_DIR] [--profile PROFILE] [-t TARGET] [--vars VARS] [--template TEMPLATE]
Named Arguments
–log-level
overrides default log level
Default: “”
-vv, –verbose
When provided the length of the tracebacks will not be truncated.
Default: False
–config-path
Full path to .dbt_coves.yml file if not using default. Default is current working directory.
–project-dir
Which directory to look in for the dbt_project.yml file. Default is the current working directory and its parents.
–profiles-dir
Which directory to look in for the profiles.yml file.
Default: “~/.dbt”
–profile
Which profile to load. Overrides setting in dbt_project.yml.
-t, –target
Which target to load for the given profile
–vars
Supply variables to your dbt_project.yml file. This argument should be a YAML string, eg. ‘{my_variable: my_value}’
Default: “{}”
–template
Cookiecutter template github url, i.e. ‘https://github.com/datacoves/cookiecutter-dbt-coves.git’
generate
Generates sources and models with defaults.
dbt_coves generate [-h] [--log-level LOG_LEVEL] [-vv] [--config-path CONFIG_PATH] [--project-dir PROJECT_DIR] [--profiles-dir PROFILES_DIR] [--profile PROFILE] [-t TARGET] [--vars VARS] {sources} ...
Named Arguments
–log-level
overrides default log level
Default: “”
-vv, –verbose
When provided the length of the tracebacks will not be truncated.
Default: False
–config-path
Full path to .dbt_coves.yml file if not using default. Default is current working directory.
–project-dir
Which directory to look in for the dbt_project.yml file. Default is the current working directory and its parents.
–profiles-dir
Which directory to look in for the profiles.yml file.
Default: “~/.dbt”
–profile
Which profile to load. Overrides setting in dbt_project.yml.
-t, –target
Which target to load for the given profile
–vars
Supply variables to your dbt_project.yml file. This argument should be a YAML string, eg. ‘{my_variable: my_value}’
Default: “{}”
dbt-coves generate commands
task
Possible choices: sources
Sub-commands:
sources
Generate source dbt models by inspecting the database schemas and relations.
dbt_coves generate sources [-h] [--log-level LOG_LEVEL] [-vv] [--config-path CONFIG_PATH] [--project-dir PROJECT_DIR] [--profiles-dir PROFILES_DIR] [--profile PROFILE] [-t TARGET] [--vars VARS] [--schemas SCHEMAS] [--destination DESTINATION] [--model_props_strategy MODEL_PROPS_STRATEGY] [--templates_folder TEMPLATES_FOLDER]
Named Arguments
–log-level
overrides default log level
Default: “”
-vv, –verbose
When provided the length of the tracebacks will not be truncated.
Default: False
–config-path
Full path to .dbt_coves.yml file if not using default. Default is current working directory.
–project-dir
Which directory to look in for the dbt_project.yml file. Default is the current working directory and its parents.
–profiles-dir
Which directory to look in for the profiles.yml file.
Default: “~/.dbt”
–profile
Which profile to load. Overrides setting in dbt_project.yml.
-t, –target
Which target to load for the given profile
–vars
Supply variables to your dbt_project.yml file. This argument should be a YAML string, eg. ‘{my_variable: my_value}’
Default: “{}”
–schemas
Comma separated list of schemas where raw data resides, i.e. ‘RAW_SALESFORCE,RAW_HUBSPOT’
–destination
Where models sql files will be generated, i.e. ‘models/{schema_name}/{relation_name}.sql’
–model_props_strategy
Strategy for model properties files generation, i.e. ‘one_file_per_model’
–templates_folder
Folder with jinja templates that override default sources generation templates, i.e. ‘templates’
check
Runs pre-commit hooks and linters.
dbt_coves check [-h] [--log-level LOG_LEVEL] [-vv] [--config-path CONFIG_PATH] [--project-dir PROJECT_DIR] [--profiles-dir PROFILES_DIR] [--profile PROFILE] [-t TARGET] [--vars VARS] [--no-fix]
Named Arguments
–log-level
overrides default log level
Default: “”
-vv, –verbose
When provided the length of the tracebacks will not be truncated.
Default: False
–config-path
Full path to .dbt_coves.yml file if not using default. Default is current working directory.
–project-dir
Which directory to look in for the dbt_project.yml file. Default is the current working directory and its parents.
–profiles-dir
Which directory to look in for the profiles.yml file.
Default: “~/.dbt”
–profile
Which profile to load. Overrides setting in dbt_project.yml.
-t, –target
Which target to load for the given profile
–vars
Supply variables to your dbt_project.yml file. This argument should be a YAML string, eg. ‘{my_variable: my_value}’
Default: “{}”
–no-fix
Do not suggest auto-fixing linting errors. Useful when running this command on CI jobs.
Default: False
fix
Runs linter fixes.
dbt_coves fix [-h] [--log-level LOG_LEVEL] [-vv] [--config-path CONFIG_PATH] [--project-dir PROJECT_DIR] [--profiles-dir PROFILES_DIR] [--profile PROFILE] [-t TARGET] [--vars VARS]
Named Arguments
–log-level
overrides default log level
Default: “”
-vv, –verbose
When provided the length of the tracebacks will not be truncated.
Default: False
–config-path
Full path to .dbt_coves.yml file if not using default. Default is current working directory.
–project-dir
Which directory to look in for the dbt_project.yml file. Default is the current working directory and its parents.
–profiles-dir
Which directory to look in for the profiles.yml file.
Default: “~/.dbt”
–profile
Which profile to load. Overrides setting in dbt_project.yml.
-t, –target
Which target to load for the given profile
–vars
Supply variables to your dbt_project.yml file. This argument should be a YAML string, eg. ‘{my_variable: my_value}’
Default: “{}”
Select one of the available sub-commands with –help to find out more about them.
Thanks
The project main structure was inspired by dbt-sugar. Special thanks to Bastien Boutonnet for the great work done.
About
Learn more about Datacoves.
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
File details
Details for the file dbt_coves-0.19.2a10.tar.gz
.
File metadata
- Download URL: dbt_coves-0.19.2a10.tar.gz
- Upload date:
- Size: 24.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.6 CPython/3.8.9 Darwin/20.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8d6ba3439a021fe8275bfef186dd87c3f6f0d7f5c2657647d2b5455e7023f096 |
|
MD5 | beb96598df99d246ec9401bc9d948bb6 |
|
BLAKE2b-256 | b3312c1d60c7271c6b476de261b021c6248a6c3763d5398833ad2128a58ef148 |
File details
Details for the file dbt_coves-0.19.2a10-py3-none-any.whl
.
File metadata
- Download URL: dbt_coves-0.19.2a10-py3-none-any.whl
- Upload date:
- Size: 26.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.6 CPython/3.8.9 Darwin/20.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5f25466292a5567ef0497d7d19ed9d23896408acbe9b29095784be0bdeb79858 |
|
MD5 | aad63acf8d228d48e69d79f4af408df8 |
|
BLAKE2b-256 | 006df80c1b67476e81c5f039dafee00c3e6a50e69b766c8885e5a2a73b8ab942 |