Entari plugin for SQLAlchemy ORM
Project description
entari-plugin-database
Entari plugin for SQLAlchemy ORM
功能
- 提供数据库服务支持,管理多个数据库连接
- 依赖注入会话与 ORM 模型数据
- 依据类型注解或 SQLDepends 的复杂依赖关系注入
- 例如
Sequence[Model]会注入所有模型 - 声明
SQLDepends(select(Model).where(Model.field == value))会注入查询结果 - 通过配合
arclet.entari.param, 可以在SQLDepends的查询语句中使用param声明其他的依赖注入参数
- 例如
- 自动数据库迁移
- 通过
alembic实现 - 检测到模型变更时,自动生成并应用迁移脚本
- 根据模型的
__bind_key__属性,支持多数据库迁移 - 允许开发者自定义迁移脚本
- 通过
多数据库
- 插件配置项
binds可以根据 bind_key 声明多个数据库连接 - ORM 模型可以通过
__bind_key__属性指定使用哪个数据库连接 - 默认数据库连接使用
""作为bind_key
迁移
- ORM 模型的变更会被自动检测并生成迁移脚本
- 本插件会根据模型的结构自动计算
revision - ORM 模型可以声明
__revision__属性来指定特定的revision - 迁移记录将存储在用户目录下的
.entari/data/database/migrations_lock.json文件中
配置
type:数据库类型,默认为sqlite。name:数据库名称或文件路径,默认为data.db。driver:数据库驱动,默认为aiosqlite;其他类型的数据库驱动参考 SQLAlchemy 文档。host:数据库主机地址。如果是 SQLite 数据库,此项可不填。port:数据库端口号。如果是 SQLite 数据库,此项可不填。username:数据库用户名。如果是 SQLite 数据库,此项可不填。password:数据库密码。如果是 SQLite 数据库,此项可不填。query:数据库连接参数,默认为空字典。可以传入如{"timeout": "30"}的参数。session_options:数据库会话选项,默认为 None。可以传入如{"expire_on_commit": False}的字典。binds:数据库绑定配置,默认为 None。可以传入如{"bind1": UrlInfo(...), "bind2": UrlInfo(...)}的字典。plugins: database: type: sqlite binds: foo: type: mysql driver: asyncmy host: localhost port: 3306 name: foo_db username: root password: password
options:数据库连接选项,默认为{"echo": None, "pool_pre_ping": True}。create_table_at:在指定阶段创建数据库表,默认为 'preparing'。可选值为 'preparing', 'prepared', 'blocking'。
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
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
File details
Details for the file entari_plugin_database-0.2.4.tar.gz.
File metadata
- Download URL: entari_plugin_database-0.2.4.tar.gz
- Upload date:
- Size: 17.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.25.6 CPython/3.11.7 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6bc84bfab87404700eafef5fa57225be765f15028c529ac35c9acc4cd506cbf5
|
|
| MD5 |
c8cb0b5991ccc8bf6663ca8f75c0b667
|
|
| BLAKE2b-256 |
92805f41551ddd0154bf646a836fae324135fe274743994b634aa576ac3a2ef9
|
File details
Details for the file entari_plugin_database-0.2.4-py3-none-any.whl.
File metadata
- Download URL: entari_plugin_database-0.2.4-py3-none-any.whl
- Upload date:
- Size: 19.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.25.6 CPython/3.11.7 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d15db3102c2f7b0b4ab83eb511e9bcc37b37cb045d7e69ce8f2a2345527dc2d8
|
|
| MD5 |
5a83e66a80b03dac44f74b81fe227f79
|
|
| BLAKE2b-256 |
1f4945f1dc40fd5852d0c97b8cfb14985f152263d2a581af7d490bf2cdf34dca
|