WebBrokerAPI 1.2603.3101__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.
@@ -0,0 +1,29 @@
1
+ from _typeshed import Incomplete
2
+ from fastapi import FastAPI as FastAPI, Request as Request
3
+ from fastapi.responses import HTMLResponse as HTMLResponse
4
+ from typing import Callable
5
+
6
+ class TWebRequest:
7
+ InternalRequest: Incomplete
8
+ PathInfo: Incomplete
9
+ Method: Incomplete
10
+ QueryFields: Incomplete
11
+ Content: Incomplete
12
+ def __init__(self, request: Request, content: str = '') -> None: ...
13
+
14
+ class TWebResponse:
15
+ Content: str
16
+ ContentType: str
17
+ StatusCode: int
18
+ def __init__(self) -> None: ...
19
+
20
+ class TWebActionItem:
21
+ Name: Incomplete
22
+ PathInfo: Incomplete
23
+ OnAction: Incomplete
24
+ def __init__(self, name: str, path_info: str, on_action: Callable) -> None: ...
25
+
26
+ class TWebModule:
27
+ Actions: list[TWebActionItem]
28
+ def __init__(self) -> None: ...
29
+ def add_action(self, name: str, path: str, func: Callable): ...
@@ -0,0 +1,39 @@
1
+ Metadata-Version: 2.4
2
+ Name: WebBrokerAPI
3
+ Version: 1.2603.3101
4
+ Summary: WebBrokerAPI 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: fastapi
32
+ Requires-Dist: uvicorn
33
+ Dynamic: license-file
34
+
35
+ #mySQLDBCtrlAPI
36
+
37
+ ## History of version
38
+ Version 1.2603.3001: 2026/03/31<BR>
39
+ Create WebBroker service for RestfulAPI based on FastAPI
@@ -0,0 +1,7 @@
1
+ WebBrokerAPI/WebBroker.cp310-win_amd64.pyd,sha256=FSPkVfpPbgY0PVvczQBa-bTKQHgirljKHv7Vf9Cu_R4,229888
2
+ WebBrokerAPI/WebBroker.pyi,sha256=4w8Z3-aOhCZWPGXkMYcfWYj7wIcfYdUr70lYxTno3GQ,883
3
+ webbrokerapi-1.2603.3101.dist-info/licenses/LICENSE,sha256=bTN6shImvjBn0VScA1LIqy7LH3B_O6XZieGPnoT4Gxk,1054
4
+ webbrokerapi-1.2603.3101.dist-info/METADATA,sha256=E-czXHGuc5hGRRfYrDt03YoG4GsbgFoU98rYx7DWIzg,1725
5
+ webbrokerapi-1.2603.3101.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
6
+ webbrokerapi-1.2603.3101.dist-info/top_level.txt,sha256=bNpElRSK-XsPWW3k6lZf5wezsFKTQlh0uM1gsWuj0Ws,13
7
+ webbrokerapi-1.2603.3101.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
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 @@
1
+ WebBrokerAPI