reykit 1.1.0__py3-none-any.whl → 1.1.1__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 ADDED
@@ -0,0 +1,25 @@
1
+ # !/usr/bin/env python
2
+ # -*- coding: utf-8 -*-
3
+
4
+ """
5
+ @Time : 2024-01-07 20:51:57
6
+ @Author : Rey
7
+ @Contact : reyxbo@163.com
8
+ @Explain : Rey's database method set.
9
+
10
+ Modules
11
+ -------
12
+ rall : All methods.
13
+ rbuild : Database build methods.
14
+ rdatabase : Database connection methods.
15
+ rexecute : Database execute methods.
16
+ rfile : Database file methods.
17
+ rinformation : Database information methods.
18
+ rparameter : Database parameter methods.
19
+ """
20
+
21
+
22
+ from typing import Final
23
+
24
+
25
+ __version__: Final[str] = '1.0.1'
reydb/rall.py ADDED
@@ -0,0 +1,17 @@
1
+ # !/usr/bin/env python
2
+ # -*- coding: utf-8 -*-
3
+
4
+ """
5
+ @Time : 2024-01-07 20:50:02
6
+ @Author : Rey
7
+ @Contact : reyxbo@163.com
8
+ @Explain : All methods.
9
+ """
10
+
11
+
12
+ from .rbuild import *
13
+ from .rconnection import *
14
+ from .rexecute import *
15
+ from .rfile import *
16
+ from .rinformation import *
17
+ from .rparameter import *