Postgres Wrapper Class using psycopg2
Project description
- Wrapper Class around Psycopg2 for PostgreSQL
In psycopg2 after connecting to the database, for every read execute statement the data needs to be fetched and for evey write execute statement the data needs to be committed. But this class eliminates these requirements and make it simple to read and write to the database.
- Files:
palpg/__init__.py
- Installation:
sudo pip3 install palpg
- Usage Examples:
import palpg
db = palpg.db(“host=HOST port=PORT dbname=DBNAME user=USER password=PASSWORD”) ##-connect to the database
db.read(“sql statement”) ##-returns the read data from database with flat=True
db.read(“select item from table”, flat=False) ##-returns the raw read data
db.read(“select item from table where item = %s”, (sub1,)) ##-read with string substitution
db.read1(“sql statement”) ##-returns the first read data similar to fetchone
db.write(“sql statement”) ##-writes the data and commits to the database
db.clear() #-to reconnect if any transaction error
- For other psycopg connection commands use the connection class
db.conn….
Project details
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 palpg-2.3.tar.gz
.
File metadata
- Download URL: palpg-2.3.tar.gz
- Upload date:
- Size: 1.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f343c08a1ac0899e3caa2b1919fbbbced54be62e0c534b0aa96bd07a4b1d1e15 |
|
MD5 | 188e92a4b37eb9071d98e03dacbcf671 |
|
BLAKE2b-256 | 136871a675da090dc79ac2d30ef8b97aff075850d5b970ad574ebee43894d4d9 |