SystemLibAPI 1.2601.501__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.
Binary file
SysLib/SystemLib.pyi ADDED
@@ -0,0 +1,28 @@
1
+ # This file was generated by Nuitka
2
+
3
+ # Stubs included by default
4
+ from __future__ import annotations
5
+ from typing import Any
6
+ from typing_extensions import Self
7
+ import signal
8
+ import time
9
+
10
+ class CLASS_SystemLib:
11
+ def __init__(self: Self) -> None: ...
12
+ def CUF_DisableCtrlC(self: Self) -> Any: ...
13
+ def CUF_CurrentTimeInRange(self: Self, Pms_TimeRange: Any) -> Any: ...
14
+ def CUF_Delay(self: Self, Pmd_sec: Any) -> Any: ...
15
+ def CUF_Sleep(self: Self, Pmd_sec: Any) -> Any: ...
16
+ def CUF_GetDateTime(self: Self, Pms_SEP_Date: Any, Pms_SEP_Time: Any) -> Any: ...
17
+ def CUF_GetDateTime(self: Self) -> Any: ...
18
+ def CUF_GetDate(self: Self, Pms_SEP_Date: Any) -> Any: ...
19
+ def CUF_GetTime(self: Self, Pms_SEP_Time: Any) -> Any: ...
20
+
21
+
22
+ __name__ = ...
23
+
24
+
25
+
26
+ # Modules used internally, to allow implicit dependencies to be seen:
27
+ import time
28
+ import signal
SysLib/__init__.py ADDED
File without changes
@@ -0,0 +1,10 @@
1
+ class CLASS_SystemLib:
2
+ def __init__(self) -> None: ...
3
+ def CUF_DisableCtrlC(self) -> None: ...
4
+ def CUF_CurrentTimeInRange(self, Pms_TimeRange): ...
5
+ def CUF_Delay(self, Pmd_sec) -> None: ...
6
+ def CUF_Sleep(self, Pmd_sec) -> None: ...
7
+ def CUF_GetDateTime(self, Pms_SEP_Date, Pms_SEP_Time): ...
8
+ def CUF_GetDateTime(self): ...
9
+ def CUF_GetDate(self, Pms_SEP_Date): ...
10
+ def CUF_GetTime(self, Pms_SEP_Time): ...
@@ -0,0 +1,51 @@
1
+ # This file was generated by Nuitka
2
+
3
+ # Stubs included by default
4
+ from __future__ import annotations
5
+ from enum import Enum
6
+ from typing import Any
7
+ from typing_extensions import Self
8
+ import asyncio
9
+ import inspect
10
+ import multiprocessing
11
+ import psutil
12
+ import threading
13
+ import time
14
+
15
+ class ENUM_TASK_MODE(Enum):
16
+ class CLASS_WatchDog:
17
+ def __init__(self: Self, Pmi_Timeout: Any, Pmf_OnDead: Any) -> None: ...
18
+ def CUF_Beat(self: Self) -> Any: ...
19
+ def CUF_Stop(self: Self) -> Any: ...
20
+ def _run(self: Self) -> Any: ...
21
+
22
+ class CLASS_MultiTask:
23
+ @staticmethod
24
+ def CUF_Init_For_PyInstaller() -> Any: ...
25
+ def __init__(self: Self, PmE_TaskMode: Any, Pmf_TaskFunc: Any, Pmi_Timeout: Any, Pmb_EnableWatchDog: Any) -> None: ...
26
+ def CUF_EvaluateTask(self: Self) -> Any: ...
27
+ def CUF_GetBestMode(self: Self) -> Any: ...
28
+ def CUF_Start(self: Self) -> Any: ...
29
+ def _CUF_Run_Thread(self: Self) -> Any: ...
30
+ def _CUF_Run_Async(self: Self) -> Any: ...
31
+ def _CUF_Run_Process(self: Self) -> Any: ...
32
+ def _CUF_OnDead(self: Self) -> Any: ...
33
+
34
+ class CLASS_MultiTaskGroup:
35
+ def __init__(self: Self, task_list: Any) -> None: ...
36
+ def CUF_EvaluateAll(self: Self) -> Any: ...
37
+ def CUF_StartAll(self: Self) -> Any: ...
38
+
39
+
40
+ __name__ = ...
41
+
42
+
43
+
44
+ # Modules used internally, to allow implicit dependencies to be seen:
45
+ import time
46
+ import threading
47
+ import multiprocessing
48
+ import asyncio
49
+ import inspect
50
+ import psutil
51
+ import enum
Binary file
@@ -0,0 +1,25 @@
1
+ # This file was generated by Nuitka
2
+
3
+ # Stubs included by default
4
+ from __future__ import annotations
5
+ from threading import Timer
6
+ from typing import Any
7
+ from typing_extensions import Self
8
+ import time
9
+
10
+ class CLASS_ThreadTimer(Timer):
11
+ def run(self: Self) -> Any: ...
12
+ def CUF_Start(self: Self) -> Any: ...
13
+ def CUF_Stop(self: Self) -> Any: ...
14
+
15
+ def GE_EVENT_OnTimer() -> Any:
16
+ ...
17
+
18
+
19
+ __name__ = ...
20
+
21
+
22
+
23
+ # Modules used internally, to allow implicit dependencies to be seen:
24
+ import threading
25
+ import time
SysTaskLib/__init__.py ADDED
File without changes
@@ -0,0 +1,35 @@
1
+ from _typeshed import Incomplete
2
+ from enum import Enum
3
+
4
+ class ENUM_TASK_MODE(Enum):
5
+ cE_TaskM_TThread = 1
6
+ cE_TaskM_AsyncThread = 2
7
+ cE_TaskM_TProcess = 3
8
+ cE_TaskM_AutoTune = 99
9
+
10
+ class CLASS_WatchDog:
11
+ CVI_Timeout: Incomplete
12
+ CVF_OnDead: Incomplete
13
+ CVT_LastBeat: Incomplete
14
+ def __init__(self, Pmi_Timeout, Pmf_OnDead) -> None: ...
15
+ def CUF_Beat(self) -> None: ...
16
+ def CUF_Stop(self) -> None: ...
17
+
18
+ class CLASS_MultiTask:
19
+ @staticmethod
20
+ def CUF_Init_For_PyInstaller() -> None: ...
21
+ CVE_TaskMode: Incomplete
22
+ CVF_TaskFunc: Incomplete
23
+ CVI_Timeout: Incomplete
24
+ CVD_EvalResult: Incomplete
25
+ CV_WatchDog: Incomplete
26
+ def __init__(self, PmE_TaskMode, Pmf_TaskFunc, Pmi_Timeout: int = 5, Pmb_EnableWatchDog: bool = True) -> None: ...
27
+ def CUF_EvaluateTask(self): ...
28
+ def CUF_GetBestMode(self): ...
29
+ def CUF_Start(self) -> None: ...
30
+
31
+ class CLASS_MultiTaskGroup:
32
+ tasks: Incomplete
33
+ def __init__(self, task_list) -> None: ...
34
+ def CUF_EvaluateAll(self): ...
35
+ def CUF_StartAll(self) -> None: ...
@@ -0,0 +1,8 @@
1
+ from threading import Timer
2
+
3
+ class CLASS_ThreadTimer(Timer):
4
+ def run(self) -> None: ...
5
+ def CUF_Start(self) -> None: ...
6
+ def CUF_Stop(self) -> None: ...
7
+
8
+ def GE_EVENT_OnTimer() -> None: ...
@@ -0,0 +1,38 @@
1
+ Metadata-Version: 2.4
2
+ Name: SystemLibAPI
3
+ Version: 1.2601.501
4
+ Summary: mySQLDBCtrlAPI Python package
5
+ Author-email: James Lin <tylin123@ms27.hinet.net>
6
+ License: Copyright (c) 2025 James Lin
7
+
8
+ All rights reserved.
9
+
10
+ Permission is granted for **personal, educational, or non-commercial use only**.
11
+ You **may NOT**:
12
+
13
+ 1. Sell or otherwise commercially exploit this software or any part of it.
14
+ 2. Reproduce, distribute, or sublicense this software for commercial purposes.
15
+ 3. Modify or create derivative works for commercial purposes without explicit written permission from the copyright holder.
16
+
17
+ You **may**:
18
+
19
+ - Use the software for personal learning, research, or internal company evaluation (non-commercial).
20
+ - Share the software with attribution to the original author, as long as it is not for commercial gain.
21
+
22
+ **Disclaimer:**
23
+ This software is provided "AS IS", without any warranty of any kind, either expressed or implied,
24
+ including but not limited to the warranties of merchantability, fitness for a particular purpose, or non-infringement.
25
+ In no event shall the author be liable for any claim, damages, or other liability arising from, out of, or in connection with the software or its use.
26
+
27
+ Project-URL: Homepage, https://mis.gotech.biz
28
+ Requires-Python: >=3.10
29
+ Description-Content-Type: text/markdown
30
+ License-File: LICENSE
31
+ Requires-Dist: psutil
32
+ Dynamic: license-file
33
+
34
+ #SystemLibAPI
35
+
36
+ ## History of version
37
+ Version 1.2601.0501: 2026/01/05<BR>
38
+ Integrated SysLib(SystemLib) & MultiTaskLib, ThreadLib(SysTaskLib) into SystemLibAPI package.
@@ -0,0 +1,16 @@
1
+ SysLib/SystemLib.cp310-win_amd64.pyd,sha256=bBwfjLWUT668BgxOpn7hkRlBfGCdgYnlW9-3JH40fw8,224768
2
+ SysLib/SystemLib.pyi,sha256=JnwxAp4bqv-tY1dl9grIix-IMdXqNnuCL2W1qPT8uAA,861
3
+ SysLib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ SysLib/out/src/SysLib/SystemLib.pyi,sha256=n8ECRqXxB9vrUMC6uxqNxvnQ5vy6wB1O7gZ_9opY_mA,450
5
+ SysTaskLib/MultiTaskLib.cp310-win_amd64.pyd,sha256=fwY0kOjevqem5qoE85Xj5wzlw49YWDEa2w673B84C5U,271360
6
+ SysTaskLib/MultiTaskLib.pyi,sha256=95WK_SmmbcE-4Z9hPPrqCLBWKwWiTQf1Vm5mzZwrISw,1439
7
+ SysTaskLib/ThreadLib.cp310-win_amd64.pyd,sha256=Kqs0pkIlAvK81xDdqv9qVzlQizjJ9Ax5xrQjmOu-y5Q,225792
8
+ SysTaskLib/ThreadLib.pyi,sha256=HU39FlZEYTalQYDaGIlikGlXS0af3Sf5rQjmbk4XvsA,508
9
+ SysTaskLib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ SysTaskLib/out/src/SysTaskLib/MultiTaskLib.pyi,sha256=PKCMtRQQ9NyDIFAy3v97c_imMCXsxFanuiJ5cKX9Y30,1101
11
+ SysTaskLib/out/src/SysTaskLib/ThreadLib.pyi,sha256=AOIKXBHKBwwsmILVRlZmevR3fZVKCvegJHbHx9v2K_4,210
12
+ systemlibapi-1.2601.501.dist-info/licenses/LICENSE,sha256=bTN6shImvjBn0VScA1LIqy7LH3B_O6XZieGPnoT4Gxk,1054
13
+ systemlibapi-1.2601.501.dist-info/METADATA,sha256=6y-hfu1xEvStsrDjH_02v4tMvuMzMMGmDq4zq8vB7RE,1736
14
+ systemlibapi-1.2601.501.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
15
+ systemlibapi-1.2601.501.dist-info/top_level.txt,sha256=KFkIL199BZbWfiI6IoDJf4dLaBiM5ir-2nH7d0VyG68,18
16
+ systemlibapi-1.2601.501.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2025 James Lin
2
+
3
+ All rights reserved.
4
+
5
+ Permission is granted for **personal, educational, or non-commercial use only**.
6
+ You **may NOT**:
7
+
8
+ 1. Sell or otherwise commercially exploit this software or any part of it.
9
+ 2. Reproduce, distribute, or sublicense this software for commercial purposes.
10
+ 3. Modify or create derivative works for commercial purposes without explicit written permission from the copyright holder.
11
+
12
+ You **may**:
13
+
14
+ - Use the software for personal learning, research, or internal company evaluation (non-commercial).
15
+ - Share the software with attribution to the original author, as long as it is not for commercial gain.
16
+
17
+ **Disclaimer:**
18
+ This software is provided "AS IS", without any warranty of any kind, either expressed or implied,
19
+ including but not limited to the warranties of merchantability, fitness for a particular purpose, or non-infringement.
20
+ In no event shall the author be liable for any claim, damages, or other liability arising from, out of, or in connection with the software or its use.
@@ -0,0 +1,2 @@
1
+ SysLib
2
+ SysTaskLib