reydb 1.2.18__py3-none-any.whl → 1.2.20__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
reydb/__init__.py CHANGED
@@ -2,7 +2,7 @@
2
2
  # -*- coding: utf-8 -*-
3
3
 
4
4
  """
5
- @Time : 2024-01-07 20:51:57
5
+ @Time : 2024-01-07
6
6
  @Author : Rey
7
7
  @Contact : reyxbo@163.com
8
8
  @Explain : Backend database method set.
@@ -15,6 +15,7 @@ rbuild : Database build methods.
15
15
  rconfig : Database config methods.
16
16
  rconn : Database connection methods.
17
17
  rdb : Database methods.
18
+ rengine : Database engine methods.
18
19
  rerror : Database error methods.
19
20
  rexec : Database execute methods.
20
21
  rorm : Database ORM methods.
@@ -23,3 +24,4 @@ rinfo : Database information methods.
23
24
 
24
25
 
25
26
  from .rdb import Database, DatabaseAsync
27
+ from .rengine import DatabaseEngine, DatabaseEngineAsync
reydb/rall.py CHANGED
@@ -2,7 +2,7 @@
2
2
  # -*- coding: utf-8 -*-
3
3
 
4
4
  """
5
- @Time : 2024-01-07 20:50:02
5
+ @Time : 2024-01-07
6
6
  @Author : Rey
7
7
  @Contact : reyxbo@163.com
8
8
  @Explain : All methods.
@@ -14,6 +14,7 @@ from .rbuild import *
14
14
  from .rconfig import *
15
15
  from .rconn import *
16
16
  from .rdb import *
17
+ from .rengine import *
17
18
  from .rerror import *
18
19
  from .rexec import *
19
20
  from .rorm import *
reydb/rbase.py CHANGED
@@ -2,7 +2,7 @@
2
2
  # -*- coding: utf-8 -*-
3
3
 
4
4
  """
5
- @Time : 2025-07-18 23:36:56
5
+ @Time : 2025-07-18
6
6
  @Author : Rey
7
7
  @Contact : reyxbo@163.com
8
8
  @Explain : Base methods.