Skip to main content

No project description provided

Project description

PyTopConnect

Installation

pip install pytopconnect

Documentation

Module connection

from pytopconnect import QueryRead as QR
import os

DATA = {
    "mysql":[{"host":"localhost","port":3306,"user":"admin","password":"root","database":""}],
    "sqlite":[{"dbFile": os.path.dirname(__file__)+"/test.db"}]
}

DB_MYSQL = QR('mysql',DATA)
DB_SQLITE = QR('sqlite',DATA)

Getting data

condition = {
    "where":{
        "id":[">",0],
        "option":[]
    }
}
obj = DB_MYSQL.database_name.table_name.get(tabel=None,condition=condition,columns="*")
# [{"id":1,"name":"Ben","age":10},{"id":2,"name":"Poll","age":12}]

Parameters for the get method

  • 'tabel=None' --- (str) Non-mandatory parameter, needed if the call is not from the current table
  • 'condition=None' --- (dict) Non-obligatory parameter, necessary if some conditions are met or an operation in the form of a dictionary
  • 'columns="*"' --- (str) Not obligatory parameter, it is necessary in case of selecting some columns from the table

Request result

Lists table data including column names.

Adding data

values = [['Alex',13],['Rick',9]]
DB_MYSQL.database_name.table_name.add(values,tabel=None,columns='*')

Parameters for the add method

  • 'values' --- (list, tuple) Required parameter, needed to add values to tables
  • 'tabel=None' --- (str) Non-mandatory parameter, needed if the call is not from the current table
  • 'columns="*"' --- (list, tuple) Not obligatory parameter, it is necessary in case of selecting some columns from the table

Request result

Returns True or False according to the correctness of the request.

Data update

colval = {"name":"Keven"}
condition = {
    "where":{
        "id":["==",1],
        "option":[]
    }
}
DB_MYSQL.database_name.table_name.update(colval,condition=condition,tabel=None)

Parameters for the update method

  • 'colval' --- (dict) Required parameter, needed to change the value in the table
  • 'tabel=None' --- (str) Non-mandatory parameter, needed if the call is not from the current table
  • 'condition=[]' --- (dict) Non-obligatory parameter, necessary if some conditions are met or an operation in the form of a dictionary

Request result

Returns True or False according to the correctness of the request.

Data deletion

condition = {
    "where":{
        "id":["!=",5],
        "option":[]
    }
}
DB_MYSQL.database_name.table_name.delet(tabel=None,condition=condition)

Parameters for the delet method

  • 'tabel=None' --- (str) Non-mandatory parameter, needed if the call is not from the current table
  • 'condition=None' --- (dict) Non-obligatory parameter, necessary if some conditions are met or an operation in the form of a dictionary

Request result

Returns True or False according to the correctness of the request.

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

pytopconnect-0.1.4.tar.gz (26.6 kB view hashes)

Uploaded Source

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