a quick tool base dict for mysql and sqlite
Project description
Cator
简介
封装了mysql和sqlite,用于零时执行一些脚本,项目中使用
返回数据以dict字典为主,若要修改返回值类型,可以通过继承修改
支持4种占位符:
mysql风格: %s %(key)s
sqlite风格:? :key
安装
pip install cator
使用示例
import cator
# mysql
db_url = "mysql://root:123456@127.0.0.1:3306/data?charset=utf8&autocommit=true"
# sqlite
db_url = 'sqlite:///data.db?autocommit=true'
# open Database
db = cator.connect(db_url)
# close
db.close()
接口
Database类
class Database:
@property
def tables(self):
pass
def table(self, table_name):
pass
def select(self, operation, params=()):
pass
def select_one(self, operation, params=()):
pass
def update(self, operation, params=()):
pass
def delete(self, operation, params=()):
pass
def insert(self, operation, params: Union[list, dict]):
pass
def insert_one(self, operation, params: Union[tuple, dict] = ()):
pass
def before_execute(self, operation, params=None):
pass
def after_execute(self, cursor):
pass
def execute(self, operation, params=None):
pass
Table 类
class Table:
@property
def columns(self):
pass
@property
def total(self):
pass
def insert(self, data: Union[dict, list]):
pass
def insert_one(self, data: dict):
pass
def delete_by_id(self, uid):
pass
def update_by_id(self, uid, data):
pass
def select_by_id(self, uid):
pass
注意问题
- 使用时需注意链接超时问题
- cator支持了autocommit自动提交,默认关闭,如有需要可以打开,
- 如果需要执行事务就需要关闭自动提交
cator基于以下模块进行改进
- myquery
- aquery
- puremysql
- pythink
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cator-0.0.3.tar.gz
(8.4 kB
view details)
Built Distribution
cator-0.0.3-py3-none-any.whl
(13.0 kB
view details)
File details
Details for the file cator-0.0.3.tar.gz
.
File metadata
- Download URL: cator-0.0.3.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cef5ed7c8358407e4dcdc247c985ac4f70b8e8d22aba3646402c336b237832f2 |
|
MD5 | 7ac253ee12e05392c576b13750309830 |
|
BLAKE2b-256 | 22ff2df325c649c38facf6668933583d3eb64dadceb2078655f725ad0094617b |
File details
Details for the file cator-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: cator-0.0.3-py3-none-any.whl
- Upload date:
- Size: 13.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c61d2a825ed1e018fb85aed8a08783557d8f0a3ccb3c847d50bff4329eec30c5 |
|
MD5 | dbc9d1224a5c4da28547f9907a950c3c |
|
BLAKE2b-256 | 80e13f3bb2b6c688588f8204c9c60fb7e14e26b385b34c7fff3685c08e336cea |