Registry / database / gpudb
library7.2.3.8pypypiunverified

Official Python client for Kinetica (formerly GPUdb), a GPU-accelerated database. Current version 7.2.3.8, requires Python >=3.8.

pip install gpudb
INSTALL
IMPORT
SIG · GPUDB
G
gpudb
databasepythonv7.2.3.8
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

GPUdb
import gpudb
from gpudb import GPUdb

Connect to Kinetica using environment variables.

from gpudb import GPUdb options = GPUdb.Options() options.host = os.environ.get('KINETICA_HOST', 'http://localhost:9191') options.username = os.environ.get('KINETICA_USERNAME', '') options.password = os.environ.get('KINETICA_PASSWORD', '') db = GPUdb(options) print(db.show_system_status())
Debug
Known issues
breakingv7.2.0+ changed the constructor signature. `GPUdb(host, port)` no longer works; use `GPUdb(options)` or `GPUdb(host=..., port=...)`.
fix
Use `GPUdb.Options()` or pass keyword arguments: `GPUdb(host='...', port=...)`.
affects: >=7.2.0
deprecatedDirect import of `gpudb` (without submodule) is deprecated; always use `from gpudb import GPUdb`.
fix
Change `import gpudb` to `from gpudb import GPUdb`.
affects: >=7.0.0
gotchaDefault authentication uses empty credentials. If the server requires auth, you must set username and password, or the connection will fail with 'SQLSTATE[08001]'.
fix
Set `options.username` and `options.password` before creating the GPUdb object.
affects: all
Upgrade
Version history
7.2.3.8latest on PyPI · released Apr 27, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
18 hits · last 30 days
node
16
Resources
gpudb — pip install gpudb · libregistry