py-postgresql 1.3.0
pip install py-postgresql
Released:
PostgreSQL driver and tools library.
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: Attribution Assurance License, BSD License, MIT License, Python Software Foundation License
- Author: James William Pye
- Maintainer: James William Pye
- Requires: Python >=3.8
Classifiers
- Development Status
- Intended Audience
- License
- Natural Language
- Operating System
- Programming Language
- Topic
Project description
py-postgresql is a set of Python modules providing interfaces to various parts of PostgreSQL. Primarily, it provides a pure-Python driver with some C optimizations for querying a PostgreSQL database.
http://github.com/python-postgres/fe
Features:
Prepared Statement driven interfaces.
Cluster tools for creating and controlling a cluster.
Support for most PostgreSQL types: composites, arrays, numeric, lots more.
COPY support.
Sample PG-API Code:
>>> import postgresql >>> db = postgresql.open('pq://user:password@host:port/database') >>> db.execute("CREATE TABLE emp (emp_first_name text, emp_last_name text, emp_salary numeric)") >>> make_emp = db.prepare("INSERT INTO emp VALUES ($1, $2, $3)") >>> make_emp("John", "Doe", "75,322") >>> with db.xact(): ... make_emp("Jane", "Doe", "75,322") ... make_emp("Edward", "Johnson", "82,744") ...
There is a DB-API 2.0 module as well:
postgresql.driver.dbapi20
However, PG-API is recommended as it provides greater utility.
Once installed, try out the pg_python console script:
$ python3 -m postgresql.bin.pg_python -h localhost -p port -U theuser -d database_name
If a successful connection is made to the remote host, it will provide a Python console with the database connection bound to the db name.
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: Attribution Assurance License, BSD License, MIT License, Python Software Foundation License
- Author: James William Pye
- Maintainer: James William Pye
- Requires: Python >=3.8
Classifiers
- Development Status
- Intended Audience
- License
- Natural Language
- Operating System
- Programming Language
- Topic
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file py-postgresql-1.3.0.tar.gz
.
File metadata
- Download URL: py-postgresql-1.3.0.tar.gz
- Upload date:
- Size: 273.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fca0f04d3f7478bd59c29c051e979d75b54be01545bd619eba2a3ed322a32c6e |
|
MD5 | 801685df907f21811ffbebc1dec84a5c |
|
BLAKE2b-256 | 370fc90f3da2b4ffdc3e79127d863b384268718daa9ca25d68ea2435c989a05c |