Blocks Catalog
Below is a list of Blocks available for registration in
prefect-duckdb
.
To register blocks in this module to view and edit them on Prefect Cloud, first install the required packages, then
prefect block register -m prefect_duckdb
load
method on Blocks, you must already have a block document saved through code or saved through the UI.
Database Module
Perform data operations against a DuckDb database.
To load the DuckDBConnector:
from prefect import flow
from prefect_duckdb.database import DuckDBConnector
@flow
def my_flow():
my_block = DuckDBConnector.load("MY_BLOCK_NAME")
my_flow()