Metadata-Version: 1.1
Name: bingodb
Version: 0.0.1
Summary: Postgres adapter for python flask
Home-page: UNKNOWN
Author: Dheeraj Shyam P.V.S
Author-email: aquesasolutions@gmail.com
License: MIT
Description: Aquesa Bingo DB is a lightweight postgresql adapter written on top of psycopg2 module for flask developers to facilitate postgresql database connectivity in not less then 1 line, i.e., connecting to database is now only 1 line of code. In future versions, multiple databases connectivity possibility will be added.# Connection Example```import bingodbbingodb.BingoDB().db_connect(database="database_name", credentials={"USER":'your username here', "PASSWORD":'your password here'})```# Operation Example```bingodb.BingoDB().db_operation(operationName="insert", tablename="your tablename here", columns="list of your column name(s) here (only string(s))", values="list of your column value(s) here (only string(s))"])```# Command Example```bingodb.BingoDB().db_operation(command="truncate table your_table_name;")```
Keywords: adapter
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
