简单易用的 mysql 封装
Project description
EaseMySQL
一个简单易用的MySQL封装库,帮助开发者更高效地处理MySQL数据库操作。
主要功能
- 数据库连接池管理
- 简化的CRUD操作接口
- SQL语句构建辅助函数
- 支持参数化查询,防止SQL注入
- 单例模式确保每个连接配置只创建一个连接池
安装方法
pip install --upgrade easemysql -i https://pypi.org/simple/
依赖的库
pip install pymysql --upgrade
pip install DBUtils --upgrade
快速开始
from easemysql import EaseMySQL
# 配置数据库连接
config = dict(host='localhost', user='username', password='password', database='dbname')
db = EaseMySQL(**config)
# 查询单条记录
result = db.one('table_name', dict(id=1))
# 查询多条记录
results = db.all('table_name', 'status = ?', [1])
# 使用条件列表进行复杂查询
results = db.all('table_name', [
'or',
['in', 'id', [1, 3, 4]],
['and', ['>', 'id', 5], 'id < 8', dict(id=[6, 7])],
dict(id=8),
dict(id=[9]),
])
# 插入记录
db.insert('table_name', dict(name='test', value=123))
# 更新记录
db.update('table_name', dict(value=456), 'id = 1')
# 删除记录
db.delete('table_name', 'id = 1')
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
easemysql-1.1.2.tar.gz
(10.9 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
easemysql-1.1.2-py3-none-any.whl
(10.2 kB
view details)
File details
Details for the file easemysql-1.1.2.tar.gz.
File metadata
- Download URL: easemysql-1.1.2.tar.gz
- Upload date:
- Size: 10.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36c9b9789f9715dd3f07a3575e5f54b076a11db22f65544140e9b98db8ee151a
|
|
| MD5 |
b4a68a125be61366f59c8027c9bbb619
|
|
| BLAKE2b-256 |
e2a16118c253eb13ed59f7ad8944ca194abfaa81fe3e8f62804206027ade75f7
|
File details
Details for the file easemysql-1.1.2-py3-none-any.whl.
File metadata
- Download URL: easemysql-1.1.2-py3-none-any.whl
- Upload date:
- Size: 10.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61a8c87773f8578c4812b36380004d6d726ecf4735a46c7dee34052d2e51b6fc
|
|
| MD5 |
6958bd2c032144de2649ed69be5cf1fa
|
|
| BLAKE2b-256 |
11a2a784ced1233647d2f320a8341e6160fd17bc69e5c59389b5dea2e16d60da
|