Skip to main content

database_wrapper for PostgreSQL database

Project description

database_wrapper_pgsql

Part of the database_wrapper package.

This python package is a database wrapper for PostgreSQL (also called pgsql) database.

Installation

pip install database_wrapper[pgsql]

Usage

from database_wrapper_pgsql import PgSQLWithPoolingAsync, DBWrapperPgSQLAsync

db = PgSQLWithPoolingAsync({
    "hostname": "localhost",
    "port": 3306,
    "username": "root",
    "password": "your_password",
    "database": "my_database"
})
db.open()
dbWrapper = DBWrapperPgSQLAsync(db=db)

# Simple query
aModel = MyModel()
res = await dbWrapper.getByKey(
    aModel,
    "id",
    3005,
)
if res:
    print(f"getByKey: {res.toDict()}")
else:
    print("No results")

# Raw query
res = await dbWrapper.getAll(
    aModel,
    customQuery="""
        SELECT t1.*, t2.name AS other_name
        FROM my_table AS t1
        LEFT JOIN other_table AS t2 ON t1.other_id = t2.id
    """
)
async for record in res:
    print(f"getAll: {record.toDict()}")
else:
    print("No results")

db.close()

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

database_wrapper_pgsql-0.1.43.tar.gz (8.8 kB view details)

Uploaded Source

Built Distribution

database_wrapper_pgsql-0.1.43-py3-none-any.whl (10.3 kB view details)

Uploaded Python 3

File details

Details for the file database_wrapper_pgsql-0.1.43.tar.gz.

File metadata

File hashes

Hashes for database_wrapper_pgsql-0.1.43.tar.gz
Algorithm Hash digest
SHA256 b162828e9f40a84392d6fae2226e9f495fb20d7e76dcc72879a52c20f926ce5a
MD5 79365260aa719ee92a0fbd81b4c0c29f
BLAKE2b-256 79befa18073a7bd65815d68740a500c6829c440283e365bbaa879122874a23c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for database_wrapper_pgsql-0.1.43.tar.gz:

Publisher: master.yml on gintsmurans/py_database_wrapper

Attestations:

File details

Details for the file database_wrapper_pgsql-0.1.43-py3-none-any.whl.

File metadata

File hashes

Hashes for database_wrapper_pgsql-0.1.43-py3-none-any.whl
Algorithm Hash digest
SHA256 55c32e83cf65713e1839015f76e71da0ec8d2227b127e8e94f320f6c2f298a97
MD5 2b2fce488580849ecb590b8ce8ca38a6
BLAKE2b-256 74fb044294afc956bf79a31cc60d38fbc026d870587aaee5486b78477bd1be0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for database_wrapper_pgsql-0.1.43-py3-none-any.whl:

Publisher: master.yml on gintsmurans/py_database_wrapper

Attestations:

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page