Registry / data / pyvertica

pyvertica

JSON →
library1.6.1pypypi✓ verified 82d ago

Tools for performing batch imports into Vertica. Current version 1.6.1, last released in 2015, maintained in low activity mode.

pip install pyvertica
INSTALL
IMPORT
SIG · PYVERTICA
P
pyvertica
datapythonv1.6.1
Install
4.2s avg
Import
Disk
20MB
Pass rate
10/ 10
Env Coverage10 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v1.6.1 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.103.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 24.3MB
glibc
py 3.103.95 runs
installs and imports cleanly · install 4.2s · import 0.000s · 21MB
20MB installed
● package 20MB
Code
Verified usage

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

VerticaPipe
import pyvertica
from pyvertica import VerticaPipe

Basic batch insert using VerticaPipe and parameterized queries.

from pyvertica import VerticaPipe import os conn_params = { 'host': os.environ.get('VERTICA_HOST', 'localhost'), 'port': 5433, 'user': os.environ.get('VERTICA_USER', 'dbadmin'), 'password': os.environ.get('VERTICA_PASSWORD', ''), 'database': os.environ.get('VERTICA_DB', 'vdb') } with VerticaPipe(**conn_params) as pipe: pipe.executemany( "INSERT INTO test_table (id, name) VALUES (:1, :2)", [(1, 'Alice'), (2, 'Bob')] ) pipe.commit()
Debug
Known issues
deprecatedpyvertica last updated in 2015; unmaintained for years. May not support modern Python (3.6+). Recommended replacement is vertica-python.
fix
Migrate to vertica-python library for active support and Python 3 compatibility.
affects: >=1.6.0
gotchaUses psycopg2 under the hood; Vertica's JDBC/ODBC drivers not required but the Vertica server must be configured to accept PostgreSQL wire protocol connections (default on port 5433).
fix
Ensure Vertica database is listening on a port with PostgreSQL protocol enabled.
affects: all
Upgrade
Version history
1.6.1latest on PyPI · released Jan 9, 2014
Audit
Dependencies
psycopg2requiredRequired for database connection to Vertica via its PostgreSQL compatibility layer
Agent activity
16 hits · last 30 days
node
14
Meta
1
Resources
pyvertica — pip install pyvertica · libregistry