Skip to main content

this library allow to simplify the basic operation in postgres databases like select, insert, update, delete and upsert

Project description

Provides basic postgres functions for databases request.

select:

def get_my_data():
   def _(cursor):
       cursor.execute(f"select data from database")
       return cursor.fetchone()

   result = select(_)

   return result.get('data') if result else None

insert:

def insert_my_data():
   data = {
       'data_1': data_1,
       'data_2': data_2
   }

   insert(TABLE_NAME, data)

update: the primary key can be a string for array who have only one primary key but if it's a tuple, you can put a table of string : ['first_primay_key', 'second_primay_key']

def update_my_data():
   data = {
       'data_1': data_1,
       'data_2': data_2
   }

   update(TABLE_NAME, 'my_primary_key', data)

upsert: Upsert is a function who insert if the data doesn't exist. And update if the data can be updated. the primary key can be a string for array who have only one primary key but if it's a tuple, you can put a table of string : ['first_primay_key', 'second_primay_key']

def upsert_my_data():
   data = {
       'data_1': data_1,
       'data_2': data_2
   }

   upsert(TABLE_NAME, 'my_primary_key', data)

delete:

def delete_my_data():
   delete(TABLE_NAME, primary_key, data_id)

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

comapsmarthome-postgres-client-0.1.3.tar.gz (1.6 kB view hashes)

Uploaded Source

Built Distribution

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