postgres-database-utils

A package for postgres database utilities


License
MIT
Install
pip install postgres-database-utils==1.1.0

Documentation

Postgres Database Utils

Downloads

A python package for postgres database utilities.

Table of Contents

Installation

Install the package using pip:

pip install database-utils

Usage

Create a database connection:

from postgres_database_utils import create_connection, PostgresCredentials

credentials = PostgresCredentials(host='localhost', database='postgres', user='postgres', password='postgres', port=5432)

connection = create_connection(credentials)

Support

Please open an issue for support.

Contributing

Please contribute using Github Flow. Create a branch, add commits, and open a pull request.