825 add connectors for duckdb access - #1024
Merged
Merged
Conversation
Add DuckDB read/write/run connector with recipe schemas Add Microsoft Access read/write/run connector via ODBC Export new connectors from wrangles.connectors Document optional duckdb and pyodbc dependencies Add connector tests for DuckDB and Access
2 tasks
ebhills
approved these changes
Jun 29, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add DuckDB and Microsoft Access connectors
Summary
duckdbconnector (wrangles/connectors/duckdb.py) withread/write/runoperations, backed by theduckdbpackage.accessconnector (wrangles/connectors/access.py) for Microsoft Access databases withread/write/runoperations, backed bypyodbc.wrangles/connectors/__init__.pyso they're usable from recipes (duckdb:/access:keys) and from the Python API.README.mdandrequirements-full.txt(duckdb>=1.0.0,pyodbc>=5.0.0).tests/connectors/test_duckdb.py,tests/connectors/test_access.py), skipped automatically if the optional dependency isn't installed.Usage
DuckDB — Python API
DuckDB — Recipe YAML
Microsoft Access — Python API
Microsoft Access — Recipe YAML
Both connectors also support
:memory:(DuckDB) and a rawconnection_string(Access) for advanced configuration, and aparamsargument for parameterized queries to avoid SQL injection.New optional dependencies
pip install duckdbpip install pyodbc