Package for Postgres query on python
Project description
Postgres Helper
The postgres-helper library is build on top of psycopg2. It will be really helpful for running the basic postgresql query in python.
Checkout the official documentation of this library here: postgres-helper.readthedocs.io/
Installation
For installation of postgres-helper, you need to run following command
pip install postgres-helper
Examples using this library
Please check the official documentation here: https://postgres-helper.readthedocs.io/.
#Library import
from pg.pg import Pg
# Initialization of library
pg = Db(dbname='postgres', user='postgres', password='admin', host='localhost', port='5432')
# Get the column names of the specific table
pg.get_columns_name(table='pg_table')
# Get values from specific column of table
pg.get_values_from_column(column='pg_table_col', table='pg_table', schema='public')
# Create schema
pg.create_schema(name='schema_name')
# Create column
pg.create_column(column='col_name', table='pg_table', col_datatype='varchar', schema='public')
# Update column
pg.update_column(column='col_name', value='updated_value', table='pg_table', where_column='where_col', where_value="where_val", schema='public')
# Delete table
pg.delete_table(name='pg_table', schema='public')
# Delete values
pg.delete_values(table_name='pg_table', condition='name=value', schema='public')
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
postgres-helper-0.0.3.tar.gz
(3.9 kB
view details)
File details
Details for the file postgres-helper-0.0.3.tar.gz.
File metadata
- Download URL: postgres-helper-0.0.3.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd84cba8f990a3a63c10622b05509f8547eac00dcdea14665978f4c9382caea3
|
|
| MD5 |
5e8eee7bc01ea36f7c954fa77bbab895
|
|
| BLAKE2b-256 |
e89b692a15aa6316943d848dda4d6f0678510daeedc2a5e1e2250844b6631126
|