├── .github ├── ISSUE_TEMPLATE │ └── bug_report.yml ├── dependabot.yml └── workflows │ ├── publish.yaml │ ├── pythonapp.yaml │ └── release-please.yml ├── .gitignore ├── .hypothesis ├── examples │ ├── 1fd5b3b960f41c43 │ │ ├── 7210af19145ec2a8 │ │ └── bec021b4f368e306 │ ├── 4834fc8f1fbafcbb │ │ ├── 7210af19145ec2a8 │ │ └── bec021b4f368e306 │ ├── 6e868f2c5f0299d6 │ │ ├── 48f55ee7d8ef25fb │ │ └── c7bc40202ace29e9 │ ├── 7838306411ca23ca │ │ └── bec021b4f368e306 │ ├── c1aa05d8becabd54 │ │ ├── 205724259db48fa1 │ │ ├── 239b0f0f85865ed9 │ │ └── 50f1eb88e883b996 │ ├── d886b0ff51a3467e │ │ └── 5d4e55c7fe39a70d │ ├── ed46a51e53d6ee40 │ │ ├── 5d4e55c7fe39a70d │ │ ├── 7210af19145ec2a8 │ │ └── bec021b4f368e306 │ ├── f213038bfab01031 │ │ ├── 7210af19145ec2a8 │ │ └── bec021b4f368e306 │ └── f8773e77fa31021c │ │ ├── 08cb0bbb840d3096 │ │ ├── 205724259db48fa1 │ │ └── bec021b4f368e306 └── unicode_data │ └── 13.0.0 │ └── charmap.json.gz ├── .kodiak.toml ├── .pre-commit-config.yaml ├── .release-please-manifest.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE.txt ├── README.md ├── codecov.yml ├── duckdb_engine ├── .hypothesis │ ├── examples │ │ └── f024fc7dfe5f1878 │ │ │ ├── 7210af19145ec2a8 │ │ │ └── bec021b4f368e306 │ └── unicode_data │ │ └── 12.1.0 │ │ └── charmap.json.gz ├── __init__.py ├── _supports.py ├── config.py ├── conftest.py ├── datatypes.py ├── py.typed └── tests │ ├── __init__.py │ ├── conftest.py │ ├── snapshots │ └── test_datatypes │ │ └── test_interval │ │ └── schema.sql │ ├── test_basic.py │ ├── test_datatypes.py │ ├── test_integration.py │ ├── test_pandas.py │ ├── test_pyarrow.py │ └── util.py ├── noxfile.py ├── poetry.lock ├── pyproject.toml ├── release-please-config.json └── renovate.json /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/pythonapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/.github/workflows/pythonapp.yaml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/.gitignore -------------------------------------------------------------------------------- /.hypothesis/examples/1fd5b3b960f41c43/7210af19145ec2a8: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /.hypothesis/examples/1fd5b3b960f41c43/bec021b4f368e306: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.hypothesis/examples/4834fc8f1fbafcbb/7210af19145ec2a8: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /.hypothesis/examples/4834fc8f1fbafcbb/bec021b4f368e306: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.hypothesis/examples/6e868f2c5f0299d6/48f55ee7d8ef25fb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/.hypothesis/examples/6e868f2c5f0299d6/48f55ee7d8ef25fb -------------------------------------------------------------------------------- /.hypothesis/examples/6e868f2c5f0299d6/c7bc40202ace29e9: -------------------------------------------------------------------------------- 1 | Z -------------------------------------------------------------------------------- /.hypothesis/examples/7838306411ca23ca/bec021b4f368e306: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.hypothesis/examples/c1aa05d8becabd54/205724259db48fa1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/.hypothesis/examples/c1aa05d8becabd54/205724259db48fa1 -------------------------------------------------------------------------------- /.hypothesis/examples/c1aa05d8becabd54/239b0f0f85865ed9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/.hypothesis/examples/c1aa05d8becabd54/239b0f0f85865ed9 -------------------------------------------------------------------------------- /.hypothesis/examples/c1aa05d8becabd54/50f1eb88e883b996: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /.hypothesis/examples/d886b0ff51a3467e/5d4e55c7fe39a70d: -------------------------------------------------------------------------------- 1 | Z -------------------------------------------------------------------------------- /.hypothesis/examples/ed46a51e53d6ee40/5d4e55c7fe39a70d: -------------------------------------------------------------------------------- 1 | Z -------------------------------------------------------------------------------- /.hypothesis/examples/ed46a51e53d6ee40/7210af19145ec2a8: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /.hypothesis/examples/ed46a51e53d6ee40/bec021b4f368e306: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.hypothesis/examples/f213038bfab01031/7210af19145ec2a8: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /.hypothesis/examples/f213038bfab01031/bec021b4f368e306: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.hypothesis/examples/f8773e77fa31021c/08cb0bbb840d3096: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /.hypothesis/examples/f8773e77fa31021c/205724259db48fa1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/.hypothesis/examples/f8773e77fa31021c/205724259db48fa1 -------------------------------------------------------------------------------- /.hypothesis/examples/f8773e77fa31021c/bec021b4f368e306: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.hypothesis/unicode_data/13.0.0/charmap.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/.hypothesis/unicode_data/13.0.0/charmap.json.gz -------------------------------------------------------------------------------- /.kodiak.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/.kodiak.toml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "0.17.0" 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | comment: 2 | after_n_builds: 18 3 | -------------------------------------------------------------------------------- /duckdb_engine/.hypothesis/examples/f024fc7dfe5f1878/7210af19145ec2a8: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /duckdb_engine/.hypothesis/examples/f024fc7dfe5f1878/bec021b4f368e306: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /duckdb_engine/.hypothesis/unicode_data/12.1.0/charmap.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/duckdb_engine/.hypothesis/unicode_data/12.1.0/charmap.json.gz -------------------------------------------------------------------------------- /duckdb_engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/duckdb_engine/__init__.py -------------------------------------------------------------------------------- /duckdb_engine/_supports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/duckdb_engine/_supports.py -------------------------------------------------------------------------------- /duckdb_engine/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/duckdb_engine/config.py -------------------------------------------------------------------------------- /duckdb_engine/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /duckdb_engine/datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/duckdb_engine/datatypes.py -------------------------------------------------------------------------------- /duckdb_engine/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /duckdb_engine/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /duckdb_engine/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/duckdb_engine/tests/conftest.py -------------------------------------------------------------------------------- /duckdb_engine/tests/snapshots/test_datatypes/test_interval/schema.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE test_table ( 2 | duration INTERVAL 3 | ) -------------------------------------------------------------------------------- /duckdb_engine/tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/duckdb_engine/tests/test_basic.py -------------------------------------------------------------------------------- /duckdb_engine/tests/test_datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/duckdb_engine/tests/test_datatypes.py -------------------------------------------------------------------------------- /duckdb_engine/tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/duckdb_engine/tests/test_integration.py -------------------------------------------------------------------------------- /duckdb_engine/tests/test_pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/duckdb_engine/tests/test_pandas.py -------------------------------------------------------------------------------- /duckdb_engine/tests/test_pyarrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/duckdb_engine/tests/test_pyarrow.py -------------------------------------------------------------------------------- /duckdb_engine/tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/duckdb_engine/tests/util.py -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/noxfile.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/pyproject.toml -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/release-please-config.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mause/duckdb_engine/HEAD/renovate.json --------------------------------------------------------------------------------