dbt with AWS Athena and Python models.

Hi again! So we just released dbt-fal 1.3.13 that enables support for dbt-athena-community. To install, run pip install dbt-fal==1.3.13. @yzhang, your Python models should compute as long as you set materialized config to table:

import pandas
def model(dbt, fal):
  dbt.config(materialized="table")
  df = dbt.ref("test_query")
  return df

Let me know if it works!

3 Likes