Run python scripts from any dbt project. This project is based on the project https://github.com/fal-ai/fal initially authored by FAL.AI.
Project description
Welcome to dbt-postgres-python 👋 do more with dbt
dbt-postgres-python adapter is the ✨easiest✨ way to run your dbt Python models.
Starting with dbt v1.3, you can now build your dbt models in Python. This leads to some cool use cases that was once difficult to build with SQL alone. Some examples are:
- Using Python stats libraries to calculate stats
- Building forecasts
- Building other predictive models such as classification and clustering
This is fantastic! BUT, there is still one issue though! There is no Python support for Postgres. dbt-postgres-python provides the best environment to run your Python models that works with Postgres!
Project background
This project is based off the dbt-fal project. Thank you FAL-AI for starting that project. Priorities change and FAL-AI in April, 2024 chose to archive that project and focus their efforts elsewhere.
My team at work used dbt-fal, so that we could run python code on postgres. As dbt-fal was not being kept up-to-date with DBT, I chose to pick up that project and bring it up-to-date. As a result, this project will only support Postgres going forward. Support for the FAL CLI has also been dropped.
Getting Started
1. Install dbt-postgres-python
pip install dbt-postgres-python
2. Update your profiles.yml
and add the fal adapter
jaffle_shop:
target: dev_with_fal
outputs:
dev_with_fal:
type: fal # "fal" type is kept for backwards compatibility
db_profile: dev_postgres # This points to your main adapter
dev_postgres:
type: postgres
...
Don't forget to point to your main adapter with the db_profile
attribute. This is how the fal adapter knows how to connect to your data warehouse.
3. Add your python models
Add in your python models to your project just as you would your SQL models. Follow DBT's instructions on how to do so.
# a_python_model.py
import ...
def model(dbt, session):
my_sql_model_df = dbt.ref("my_sql_model")
final_df = ... # stuff you can't write in SQL!
return final_df
4. dbt run
!
That is it! It is really that simple 😊
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
Hashes for dbt_postgres_python-1.6.16.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 62227267d5b17a5c44d1d98a36e78b7c1e709b2b8a148fc8326c9b607d5f7175 |
|
MD5 | daf64f9d562c61ea27828ce7d7353e2d |
|
BLAKE2b-256 | 623d6fe7fd4816c98a1ff804504b92fe892979f7d6984d65227dc62914e66e0c |
Hashes for dbt_postgres_python-1.6.16-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c219f0171c8f23944fef774775485a42b59f7e5093494715071d18c052703001 |
|
MD5 | d19ec9ce87bafe73e36987698c5382ad |
|
BLAKE2b-256 | 62fe54757d231f1ce2974d710477a5dff1ad8038bdbd0798da4986ea487e8b0c |