pip install duckdb-extensions duckdb-extension-postgres_scanner
You are ready to install the extension for duckdb.
from duckdb_extensions import extension_importer
extension_importer.import_extension("postgres_scanner")
Verify that the extension is installed.
import duckdb
print(
duckdb.sql("""SELECT installed
FROM duckdb_extensions() where extension_name='postgres_scanner'""")
.fetchone()[0]
)
duckdb-extension-postgres_scanner
is distributed under the terms of the MIT license.