mySQLDBCtrlAPI 1.2512.302__tar.gz → 1.2512.401__tar.gz
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.
- {mysqldbctrlapi-1.2512.302/src/mySQLDBCtrlAPI.egg-info → mysqldbctrlapi-1.2512.401}/PKG-INFO +5 -1
- {mysqldbctrlapi-1.2512.302 → mysqldbctrlapi-1.2512.401}/README.md +3 -0
- {mysqldbctrlapi-1.2512.302 → mysqldbctrlapi-1.2512.401}/pyproject.toml +3 -2
- mysqldbctrlapi-1.2512.401/src/mySQLDBCtrlAPI/__init__.py +8 -0
- mysqldbctrlapi-1.2512.401/src/mySQLDBCtrlAPI/mySQLDBCtrl.cp310-win_amd64.pyd +0 -0
- {mysqldbctrlapi-1.2512.302/src/mySQLDBCtrlAPI/out → mysqldbctrlapi-1.2512.401/src}/mySQLDBCtrlAPI/mySQLDBCtrl.pyi +0 -12
- mysqldbctrlapi-1.2512.401/src/mySQLDBCtrlAPI/mySQLNetSSH.cp310-win_amd64.pyd +0 -0
- mysqldbctrlapi-1.2512.401/src/mySQLDBCtrlAPI/mySQLNetSSH.pyi +15 -0
- {mysqldbctrlapi-1.2512.302 → mysqldbctrlapi-1.2512.401}/src/mySQLDBCtrlAPI/mySQLxJsonLIB.cp310-win_amd64.pyd +0 -0
- {mysqldbctrlapi-1.2512.302/src → mysqldbctrlapi-1.2512.401/src/mySQLDBCtrlAPI/out}/mySQLDBCtrlAPI/mySQLDBCtrl.pyi +0 -12
- mysqldbctrlapi-1.2512.401/src/mySQLDBCtrlAPI/out/mySQLDBCtrlAPI/mySQLNetSSH.pyi +15 -0
- {mysqldbctrlapi-1.2512.302 → mysqldbctrlapi-1.2512.401/src/mySQLDBCtrlAPI.egg-info}/PKG-INFO +5 -1
- {mysqldbctrlapi-1.2512.302 → mysqldbctrlapi-1.2512.401}/src/mySQLDBCtrlAPI.egg-info/SOURCES.txt +3 -0
- {mysqldbctrlapi-1.2512.302 → mysqldbctrlapi-1.2512.401}/src/mySQLDBCtrlAPI.egg-info/requires.txt +1 -0
- mysqldbctrlapi-1.2512.302/src/mySQLDBCtrlAPI/__init__.py +0 -6
- mysqldbctrlapi-1.2512.302/src/mySQLDBCtrlAPI/mySQLDBCtrl.cp310-win_amd64.pyd +0 -0
- {mysqldbctrlapi-1.2512.302 → mysqldbctrlapi-1.2512.401}/LICENSE +0 -0
- {mysqldbctrlapi-1.2512.302 → mysqldbctrlapi-1.2512.401}/MANIFEST.in +0 -0
- {mysqldbctrlapi-1.2512.302 → mysqldbctrlapi-1.2512.401}/setup.cfg +0 -0
- {mysqldbctrlapi-1.2512.302 → mysqldbctrlapi-1.2512.401}/src/mySQLDBCtrlAPI/mySQLxJsonLIB.pyi +0 -0
- {mysqldbctrlapi-1.2512.302 → mysqldbctrlapi-1.2512.401}/src/mySQLDBCtrlAPI/out/mySQLDBCtrlAPI/mySQLxJsonLIB.pyi +0 -0
- {mysqldbctrlapi-1.2512.302 → mysqldbctrlapi-1.2512.401}/src/mySQLDBCtrlAPI.egg-info/dependency_links.txt +0 -0
- {mysqldbctrlapi-1.2512.302 → mysqldbctrlapi-1.2512.401}/src/mySQLDBCtrlAPI.egg-info/top_level.txt +0 -0
{mysqldbctrlapi-1.2512.302/src/mySQLDBCtrlAPI.egg-info → mysqldbctrlapi-1.2512.401}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mySQLDBCtrlAPI
|
|
3
|
-
Version: 1.2512.
|
|
3
|
+
Version: 1.2512.401
|
|
4
4
|
Summary: mySQLDBCtrlAPI Python package
|
|
5
5
|
Author-email: James Lin <tylin123@ms27.hinet.net>
|
|
6
6
|
License: Copyright (c) 2025 James Lin
|
|
@@ -31,11 +31,15 @@ License-File: LICENSE
|
|
|
31
31
|
Requires-Dist: pymysql
|
|
32
32
|
Requires-Dist: sshtunnel
|
|
33
33
|
Requires-Dist: ulid-py
|
|
34
|
+
Requires-Dist: paramiko
|
|
34
35
|
Dynamic: license-file
|
|
35
36
|
|
|
36
37
|
#mySQLDBCtrlAPI
|
|
37
38
|
|
|
38
39
|
## History of version
|
|
40
|
+
Version 1.2512.0401: 2025/12/04<BR>
|
|
41
|
+
Add Advance ssh tunnel service (ver2.0) package.
|
|
42
|
+
|
|
39
43
|
Version 1.2512.0302: 2025/12/03<BR>
|
|
40
44
|
Add ssh tunnel service package.
|
|
41
45
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "mySQLDBCtrlAPI"
|
|
7
|
-
version = "1.2512.
|
|
7
|
+
version = "1.2512.0401"
|
|
8
8
|
requires-python = ">=3.10"
|
|
9
9
|
description = "mySQLDBCtrlAPI Python package"
|
|
10
10
|
authors = [
|
|
@@ -15,7 +15,8 @@ license = { file = "LICENSE" }
|
|
|
15
15
|
dependencies = [
|
|
16
16
|
"pymysql",
|
|
17
17
|
"sshtunnel",
|
|
18
|
-
"ulid-py"
|
|
18
|
+
"ulid-py",
|
|
19
|
+
"paramiko"
|
|
19
20
|
]
|
|
20
21
|
|
|
21
22
|
[project.urls]
|
|
@@ -34,24 +34,12 @@ class CLASS_mySQLDBCtrl:
|
|
|
34
34
|
CUms_Password: str
|
|
35
35
|
CVmi_qryRECCNT: int
|
|
36
36
|
CVmsa_DBCS: Incomplete
|
|
37
|
-
CUobj_SSH_Tunnel: Incomplete
|
|
38
|
-
CUms_SSH_Host: Incomplete
|
|
39
|
-
CUmi_SSH_Port: int
|
|
40
|
-
CUms_SSH_User: Incomplete
|
|
41
|
-
CUms_SSH_pKey: Incomplete
|
|
42
|
-
CUms_SSH_remoteHost: Incomplete
|
|
43
|
-
CUmi_SSH_remotePort: Incomplete
|
|
44
|
-
CUms_SSH_localHost: str
|
|
45
|
-
CUmi_SSH_localPort: Incomplete
|
|
46
37
|
def __init__(self) -> None: ...
|
|
47
38
|
def CUF_SET_Charset(self, PmE_DB_Charset) -> None: ...
|
|
48
|
-
def CUF_SSH_Open(self, Pms_ssh_host, Pms_ssh_port, Pms_ssh_username, Pms_ssh_pkey, Pms_remote_bind_address=('127.0.0.1', 3306), Pms_local_bind_address=('127.0.0.1', 3307)) -> None: ...
|
|
49
|
-
def CUF_SSH_Start(self) -> None: ...
|
|
50
39
|
CUobj_Conn: Incomplete
|
|
51
40
|
def CUF_OpenConnection_DBCS(self, Pms_DB_HostIP, Pmi_DB_Port, Pms_DB_Name, Pms_User, Pms_Password, PmE_DB_CHARSET): ...
|
|
52
41
|
def CUF_OpenConnection(self, Pms_DB_HostIP, Pmi_DB_Port, Pms_DB_Name, Pms_User, Pms_Password): ...
|
|
53
42
|
def CUF_DB_OpenConn(self, Pstru_mySQLDBInfo): ...
|
|
54
|
-
def CUF_OpenConnection_SSH(self, Pms_DB_Name, Pms_User, Pms_Password): ...
|
|
55
43
|
def CUF_DB_OpenSQL(self, Pobj_Connection, Pms_SQL): ...
|
|
56
44
|
def CUF_DB_OpenSQL_utf8(self, Pobj_Connection, Pms_SQL): ...
|
|
57
45
|
def CUF_DB_FETCH(self, Pobj_Query): ...
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from _typeshed import Incomplete
|
|
2
|
+
|
|
3
|
+
GLOBAL_SSH_INSTANCE: Incomplete
|
|
4
|
+
|
|
5
|
+
class CLASS_mySQLNetSSH:
|
|
6
|
+
ssh: Incomplete
|
|
7
|
+
forward_threads: Incomplete
|
|
8
|
+
running: bool
|
|
9
|
+
def __init__(self) -> None: ...
|
|
10
|
+
def CUF_SSH_Connect(self, host, port, user, password=None, pkey_path=None, pkey_pass=None): ...
|
|
11
|
+
def CUF_AddPortForward(self, local_host, local_port, remote_host, remote_port) -> None: ...
|
|
12
|
+
def CUF_Tunnel_Start(self) -> None: ...
|
|
13
|
+
def CUF_Tunnel_Stop(self) -> None: ...
|
|
14
|
+
def CUF_IsAlive(self): ...
|
|
15
|
+
def CUF_ReleaseAll(self) -> None: ...
|
|
Binary file
|
|
@@ -34,24 +34,12 @@ class CLASS_mySQLDBCtrl:
|
|
|
34
34
|
CUms_Password: str
|
|
35
35
|
CVmi_qryRECCNT: int
|
|
36
36
|
CVmsa_DBCS: Incomplete
|
|
37
|
-
CUobj_SSH_Tunnel: Incomplete
|
|
38
|
-
CUms_SSH_Host: Incomplete
|
|
39
|
-
CUmi_SSH_Port: int
|
|
40
|
-
CUms_SSH_User: Incomplete
|
|
41
|
-
CUms_SSH_pKey: Incomplete
|
|
42
|
-
CUms_SSH_remoteHost: Incomplete
|
|
43
|
-
CUmi_SSH_remotePort: Incomplete
|
|
44
|
-
CUms_SSH_localHost: str
|
|
45
|
-
CUmi_SSH_localPort: Incomplete
|
|
46
37
|
def __init__(self) -> None: ...
|
|
47
38
|
def CUF_SET_Charset(self, PmE_DB_Charset) -> None: ...
|
|
48
|
-
def CUF_SSH_Open(self, Pms_ssh_host, Pms_ssh_port, Pms_ssh_username, Pms_ssh_pkey, Pms_remote_bind_address=('127.0.0.1', 3306), Pms_local_bind_address=('127.0.0.1', 3307)) -> None: ...
|
|
49
|
-
def CUF_SSH_Start(self) -> None: ...
|
|
50
39
|
CUobj_Conn: Incomplete
|
|
51
40
|
def CUF_OpenConnection_DBCS(self, Pms_DB_HostIP, Pmi_DB_Port, Pms_DB_Name, Pms_User, Pms_Password, PmE_DB_CHARSET): ...
|
|
52
41
|
def CUF_OpenConnection(self, Pms_DB_HostIP, Pmi_DB_Port, Pms_DB_Name, Pms_User, Pms_Password): ...
|
|
53
42
|
def CUF_DB_OpenConn(self, Pstru_mySQLDBInfo): ...
|
|
54
|
-
def CUF_OpenConnection_SSH(self, Pms_DB_Name, Pms_User, Pms_Password): ...
|
|
55
43
|
def CUF_DB_OpenSQL(self, Pobj_Connection, Pms_SQL): ...
|
|
56
44
|
def CUF_DB_OpenSQL_utf8(self, Pobj_Connection, Pms_SQL): ...
|
|
57
45
|
def CUF_DB_FETCH(self, Pobj_Query): ...
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from _typeshed import Incomplete
|
|
2
|
+
|
|
3
|
+
GLOBAL_SSH_INSTANCE: Incomplete
|
|
4
|
+
|
|
5
|
+
class CLASS_mySQLNetSSH:
|
|
6
|
+
ssh: Incomplete
|
|
7
|
+
forward_threads: Incomplete
|
|
8
|
+
running: bool
|
|
9
|
+
def __init__(self) -> None: ...
|
|
10
|
+
def CUF_SSH_Connect(self, host, port, user, password=None, pkey_path=None, pkey_pass=None): ...
|
|
11
|
+
def CUF_AddPortForward(self, local_host, local_port, remote_host, remote_port) -> None: ...
|
|
12
|
+
def CUF_Tunnel_Start(self) -> None: ...
|
|
13
|
+
def CUF_Tunnel_Stop(self) -> None: ...
|
|
14
|
+
def CUF_IsAlive(self): ...
|
|
15
|
+
def CUF_ReleaseAll(self) -> None: ...
|
{mysqldbctrlapi-1.2512.302 → mysqldbctrlapi-1.2512.401/src/mySQLDBCtrlAPI.egg-info}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mySQLDBCtrlAPI
|
|
3
|
-
Version: 1.2512.
|
|
3
|
+
Version: 1.2512.401
|
|
4
4
|
Summary: mySQLDBCtrlAPI Python package
|
|
5
5
|
Author-email: James Lin <tylin123@ms27.hinet.net>
|
|
6
6
|
License: Copyright (c) 2025 James Lin
|
|
@@ -31,11 +31,15 @@ License-File: LICENSE
|
|
|
31
31
|
Requires-Dist: pymysql
|
|
32
32
|
Requires-Dist: sshtunnel
|
|
33
33
|
Requires-Dist: ulid-py
|
|
34
|
+
Requires-Dist: paramiko
|
|
34
35
|
Dynamic: license-file
|
|
35
36
|
|
|
36
37
|
#mySQLDBCtrlAPI
|
|
37
38
|
|
|
38
39
|
## History of version
|
|
40
|
+
Version 1.2512.0401: 2025/12/04<BR>
|
|
41
|
+
Add Advance ssh tunnel service (ver2.0) package.
|
|
42
|
+
|
|
39
43
|
Version 1.2512.0302: 2025/12/03<BR>
|
|
40
44
|
Add ssh tunnel service package.
|
|
41
45
|
|
{mysqldbctrlapi-1.2512.302 → mysqldbctrlapi-1.2512.401}/src/mySQLDBCtrlAPI.egg-info/SOURCES.txt
RENAMED
|
@@ -6,6 +6,8 @@ setup.cfg
|
|
|
6
6
|
src/mySQLDBCtrlAPI/__init__.py
|
|
7
7
|
src/mySQLDBCtrlAPI/mySQLDBCtrl.cp310-win_amd64.pyd
|
|
8
8
|
src/mySQLDBCtrlAPI/mySQLDBCtrl.pyi
|
|
9
|
+
src/mySQLDBCtrlAPI/mySQLNetSSH.cp310-win_amd64.pyd
|
|
10
|
+
src/mySQLDBCtrlAPI/mySQLNetSSH.pyi
|
|
9
11
|
src/mySQLDBCtrlAPI/mySQLxJsonLIB.cp310-win_amd64.pyd
|
|
10
12
|
src/mySQLDBCtrlAPI/mySQLxJsonLIB.pyi
|
|
11
13
|
src/mySQLDBCtrlAPI.egg-info/PKG-INFO
|
|
@@ -14,4 +16,5 @@ src/mySQLDBCtrlAPI.egg-info/dependency_links.txt
|
|
|
14
16
|
src/mySQLDBCtrlAPI.egg-info/requires.txt
|
|
15
17
|
src/mySQLDBCtrlAPI.egg-info/top_level.txt
|
|
16
18
|
src/mySQLDBCtrlAPI/out/mySQLDBCtrlAPI/mySQLDBCtrl.pyi
|
|
19
|
+
src/mySQLDBCtrlAPI/out/mySQLDBCtrlAPI/mySQLNetSSH.pyi
|
|
17
20
|
src/mySQLDBCtrlAPI/out/mySQLDBCtrlAPI/mySQLxJsonLIB.pyi
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mysqldbctrlapi-1.2512.302 → mysqldbctrlapi-1.2512.401}/src/mySQLDBCtrlAPI/mySQLxJsonLIB.pyi
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mysqldbctrlapi-1.2512.302 → mysqldbctrlapi-1.2512.401}/src/mySQLDBCtrlAPI.egg-info/top_level.txt
RENAMED
|
File without changes
|