Watch
1
0
Fork
You've already forked duckdb-python
0
No description
  • Python 72.3%
  • C++ 26.9%
  • CMake 0.7%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Daniel Baumann cf7df7fd24
Adding debian version 1.5.5-1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2026-09-15 19:34:38 +02:00
.githooks Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
.github Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
_duckdb-stubs Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
adbc_driver_duckdb Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
cmake Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
debian Adding debian version 1.5.5-1. 2026-09-15 19:34:38 +02:00
duckdb Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
duckdb_packaging Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
scripts Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
src/duckdb_py Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
tests Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
.clang-format Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
.clang-tidy Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
.clangd Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
.codecov.yml Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
.editorconfig Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
.gitignore Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
.gitmodules Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
.pre-commit-config.yaml Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
CLAUDE.md Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
CMakeLists.txt Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
CONTRIBUTING.md Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
LICENSE Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
pyodide.md Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
pyproject.toml Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00
README.md Adding upstream version 1.5.5. 2026-09-15 19:08:11 +02:00

DuckDB logo

Discord PyPI Latest Release


DuckDB.org | User Guide (Python) - API Docs (Python)

DuckDB: A Fast, In-Process, Portable, Open Source, Analytical Database System

  • Simple: DuckDB is easy to install and deploy. It has zero external dependencies and runs in-process in its host application or as a single binary.
  • Portable: DuckDB runs on Linux, macOS, Windows, Android, iOS and all popular hardware architectures. It has idiomatic client APIs for major programming languages.
  • Feature-rich: DuckDB offers a rich SQL dialect. It can read and write file formats such as CSV, Parquet, and JSON, to and from the local file system and remote endpoints such as S3 buckets.
  • Fast: DuckDB runs analytical queries at blazing speed thanks to its columnar engine, which supports parallel execution and can process larger-than-memory workloads.
  • Extensible: DuckDB is extensible by third-party features such as new data types, functions, file formats and new SQL syntax. User contributions are available as community extensions.
  • Free: DuckDB and its core extensions are open-source under the permissive MIT License. The intellectual property of the project is held by the DuckDB Foundation.

Installation

Install the latest release of DuckDB directly from PyPI:

pip install duckdb

Install with all optional dependencies:

pip install 'duckdb[all]'

Contributing

See the CONTRIBUTING.md for instructions on how to set up a development environment.