runtimepy 5.7.0__py3-none-any.whl → 5.7.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.
- runtimepy/__init__.py +2 -2
- runtimepy/data/css/bootstrap_extra.css +4 -9
- runtimepy/data/css/font.css +47 -0
- runtimepy/data/favicon.ico +0 -0
- runtimepy/data/static/svg/chip-circle-bootstrap.svg +22 -0
- runtimepy/data/static/woff2/CascadiaCode-Bold.woff2 +0 -0
- runtimepy/data/static/woff2/CascadiaCode-BoldItalic.woff2 +0 -0
- runtimepy/data/static/woff2/CascadiaCode-Italic.woff2 +0 -0
- runtimepy/data/static/woff2/CascadiaCode-Regular.woff2 +0 -0
- runtimepy/data/static/woff2/CascadiaMono-Bold.woff2 +0 -0
- runtimepy/data/static/woff2/CascadiaMono-BoldItalic.woff2 +0 -0
- runtimepy/data/static/woff2/CascadiaMono-Italic.woff2 +0 -0
- runtimepy/data/static/woff2/CascadiaMono-Regular.woff2 +0 -0
- runtimepy/data/static/woff2/README.md +9 -0
- runtimepy/net/server/app/base.py +2 -3
- runtimepy/net/server/app/env/tab/html.py +5 -2
- {runtimepy-5.7.0.dist-info → runtimepy-5.7.1.dist-info}/METADATA +5 -5
- {runtimepy-5.7.0.dist-info → runtimepy-5.7.1.dist-info}/RECORD +22 -11
- {runtimepy-5.7.0.dist-info → runtimepy-5.7.1.dist-info}/LICENSE +0 -0
- {runtimepy-5.7.0.dist-info → runtimepy-5.7.1.dist-info}/WHEEL +0 -0
- {runtimepy-5.7.0.dist-info → runtimepy-5.7.1.dist-info}/entry_points.txt +0 -0
- {runtimepy-5.7.0.dist-info → runtimepy-5.7.1.dist-info}/top_level.txt +0 -0
runtimepy/__init__.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# =====================================
|
|
2
2
|
# generator=datazen
|
|
3
3
|
# version=3.1.4
|
|
4
|
-
# hash=
|
|
4
|
+
# hash=405585c0fbfcc966ef193f744f21fa59
|
|
5
5
|
# =====================================
|
|
6
6
|
|
|
7
7
|
"""
|
|
@@ -10,7 +10,7 @@ Useful defaults and other package metadata.
|
|
|
10
10
|
|
|
11
11
|
DESCRIPTION = "A framework for implementing Python services."
|
|
12
12
|
PKG_NAME = "runtimepy"
|
|
13
|
-
VERSION = "5.7.
|
|
13
|
+
VERSION = "5.7.1"
|
|
14
14
|
|
|
15
15
|
# runtimepy-specific content.
|
|
16
16
|
METRICS_NAME = "metrics"
|
|
@@ -98,13 +98,8 @@ button:hover {
|
|
|
98
98
|
width: 6em;
|
|
99
99
|
}
|
|
100
100
|
|
|
101
|
-
/*
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
:root {
|
|
107
|
-
/* Prefer 'Arial' and 'Consolas' at the highest priority. */
|
|
108
|
-
--bs-font-sans-serif: Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
109
|
-
--bs-font-monospace: Consolas, "Liberation Mono", "Courier New", monospace;
|
|
101
|
+
/* Prefer 'CascadiaCode' and 'CascadiaMono' at the highest priority. */
|
|
102
|
+
:root, [data-bs-theme=dark], [data-bs-theme=light] {
|
|
103
|
+
--bs-font-sans-serif: CascadiaCode, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
104
|
+
--bs-font-monospace: CascadiaMono, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
110
105
|
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: CascadiaCode;
|
|
3
|
+
src: url("/static/woff2/CascadiaCode-Regular.woff2");
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
@font-face {
|
|
7
|
+
font-family: CascadiaCode;
|
|
8
|
+
src: url("/static/woff2/CascadiaCode-Bold.woff2");
|
|
9
|
+
font-weight: bold;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
@font-face {
|
|
13
|
+
font-family: CascadiaCode;
|
|
14
|
+
src: url("/static/woff2/CascadiaCode-BoldItalic.woff2");
|
|
15
|
+
font-weight: bold;
|
|
16
|
+
font-style: italic;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@font-face {
|
|
20
|
+
font-family: CascadiaCode;
|
|
21
|
+
src: url("/static/woff2/CascadiaCode-Italic.woff2");
|
|
22
|
+
font-style: italic;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
@font-face {
|
|
26
|
+
font-family: CascadiaMono;
|
|
27
|
+
src: url("/static/woff2/CascadiaMono-Regular.woff2");
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
@font-face {
|
|
31
|
+
font-family: CascadiaMono;
|
|
32
|
+
src: url("/static/woff2/CascadiaMono-Bold.woff2");
|
|
33
|
+
font-weight: bold;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
@font-face {
|
|
37
|
+
font-family: CascadiaMono;
|
|
38
|
+
src: url("/static/woff2/CascadiaMono-BoldItalic.woff2");
|
|
39
|
+
font-weight: bold;
|
|
40
|
+
font-style: italic;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@font-face {
|
|
44
|
+
font-family: CascadiaMono;
|
|
45
|
+
src: url("/static/woff2/CascadiaMono-Italic.woff2");
|
|
46
|
+
font-style: italic;
|
|
47
|
+
}
|
runtimepy/data/favicon.ico
CHANGED
|
Binary file
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle r="50.0" cx="50.0" cy="50.0" style="fill: #ADB5BD" />
|
|
3
|
+
<rect x="16.666666666666664" y="33.333333333333336" width="16.666666666666668" height="8.333333333333334" rx="4.166666666666667" ry="4.166666666666667" style="fill: #495057" />
|
|
4
|
+
<rect x="16.666666666666664" y="45.833333333333336" width="16.666666666666668" height="8.333333333333334" rx="4.166666666666667" ry="4.166666666666667" style="fill: #495057" />
|
|
5
|
+
<rect x="16.666666666666664" y="58.333333333333336" width="16.666666666666668" height="8.333333333333334" rx="4.166666666666667" ry="4.166666666666667" style="fill: #495057" />
|
|
6
|
+
<rect x="58.33333333333333" y="16.666666666666664" width="8.333333333333334" height="16.666666666666668" rx="4.166666666666667" ry="4.166666666666667" style="fill: #495057" />
|
|
7
|
+
<rect x="45.83333333333333" y="16.666666666666664" width="8.333333333333334" height="16.666666666666668" rx="4.166666666666667" ry="4.166666666666667" style="fill: #495057" />
|
|
8
|
+
<rect x="33.33333333333333" y="16.666666666666664" width="8.333333333333334" height="16.666666666666668" rx="4.166666666666667" ry="4.166666666666667" style="fill: #495057" />
|
|
9
|
+
<rect x="33.333333333333336" y="66.66666666666667" width="8.333333333333334" height="16.666666666666668" rx="4.166666666666667" ry="4.166666666666667" style="fill: #495057" />
|
|
10
|
+
<rect x="45.833333333333336" y="66.66666666666667" width="8.333333333333334" height="16.666666666666668" rx="4.166666666666667" ry="4.166666666666667" style="fill: #495057" />
|
|
11
|
+
<rect x="58.333333333333336" y="66.66666666666667" width="8.333333333333334" height="16.666666666666668" rx="4.166666666666667" ry="4.166666666666667" style="fill: #495057" />
|
|
12
|
+
<rect x="66.66666666666667" y="58.33333333333333" width="16.666666666666668" height="8.333333333333334" rx="4.166666666666667" ry="4.166666666666667" style="fill: #495057" />
|
|
13
|
+
<rect x="66.66666666666667" y="45.83333333333333" width="16.666666666666668" height="8.333333333333334" rx="4.166666666666667" ry="4.166666666666667" style="fill: #495057" />
|
|
14
|
+
<rect x="66.66666666666667" y="33.33333333333333" width="16.666666666666668" height="8.333333333333334" rx="4.166666666666667" ry="4.166666666666667" style="fill: #495057" />
|
|
15
|
+
<rect x="25.0" y="25.0" width="50.0" height="50.0" rx="8.333333333333334" ry="8.333333333333334" style="fill: #212529" />
|
|
16
|
+
<line stroke-linecap="round" style="stroke:#DEE2E6;stroke-width:3.125" x1="31.25" y1="50.0" x2="40.625" y2="59.375" />
|
|
17
|
+
<line stroke-linecap="round" style="stroke:#DEE2E6;stroke-width:3.125" x1="31.25" y1="50.0" x2="40.625" y2="40.625" />
|
|
18
|
+
<line stroke-linecap="round" style="stroke:#DEE2E6;stroke-width:3.125" x1="68.75" y1="50.0" x2="59.375" y2="59.375" />
|
|
19
|
+
<line stroke-linecap="round" style="stroke:#DEE2E6;stroke-width:3.125" x1="68.75" y1="50.0" x2="59.375" y2="40.625" />
|
|
20
|
+
<line stroke-linecap="round" style="stroke:#DEE2E6;stroke-width:3.125" x1="45.3125" y1="61.71875" x2="50.0" y2="50.0" />
|
|
21
|
+
<line stroke-linecap="round" style="stroke:#DEE2E6;stroke-width:3.125" x1="54.6875" y1="38.28125" x2="50.0" y2="50.0" />
|
|
22
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# [Cascadia Code](https://github.com/microsoft/cascadia-code)
|
|
2
|
+
|
|
3
|
+
Assets sourced from
|
|
4
|
+
[this release](https://github.com/microsoft/cascadia-code/releases/tag/v2404.23).
|
|
5
|
+
|
|
6
|
+
See also:
|
|
7
|
+
[LICENSE](https://github.com/microsoft/cascadia-code/blob/main/LICENSE).
|
|
8
|
+
|
|
9
|
+
**Fonts are used from release as-is.**
|
runtimepy/net/server/app/base.py
CHANGED
|
@@ -52,10 +52,9 @@ class WebApplication:
|
|
|
52
52
|
def populate(self, document: Html, app: TabPopulater) -> None:
|
|
53
53
|
"""Populate the body element with the application."""
|
|
54
54
|
|
|
55
|
-
#
|
|
55
|
+
# CSS.
|
|
56
|
+
append_kind(document.head, "font", kind="css", tag="style")
|
|
56
57
|
add_bootstrap_css(document.head)
|
|
57
|
-
|
|
58
|
-
# Internal CSS.
|
|
59
58
|
append_kind(
|
|
60
59
|
document.head, "main", "bootstrap_extra", kind="css", tag="style"
|
|
61
60
|
)
|
|
@@ -50,6 +50,9 @@ def create_name_td(parent: Element) -> Element:
|
|
|
50
50
|
return div(tag="td", parent=parent, class_str="p-0 text-nowrap")
|
|
51
51
|
|
|
52
52
|
|
|
53
|
+
COMMANDABLE = "text-info-emphasis"
|
|
54
|
+
|
|
55
|
+
|
|
53
56
|
class ChannelEnvironmentTabHtml(ChannelEnvironmentTabControls):
|
|
54
57
|
"""A channel-environment tab interface."""
|
|
55
58
|
|
|
@@ -67,7 +70,7 @@ class ChannelEnvironmentTabHtml(ChannelEnvironmentTabControls):
|
|
|
67
70
|
|
|
68
71
|
name_elem = div(tag="span", text=name, parent=name_td)
|
|
69
72
|
if chan.commandable:
|
|
70
|
-
name_elem.add_class(
|
|
73
|
+
name_elem.add_class(COMMANDABLE)
|
|
71
74
|
|
|
72
75
|
if description:
|
|
73
76
|
set_tooltip(name_elem, description, placement="left")
|
|
@@ -105,7 +108,7 @@ class ChannelEnvironmentTabHtml(ChannelEnvironmentTabControls):
|
|
|
105
108
|
|
|
106
109
|
name_elem = div(tag="span", text=name, parent=name_td)
|
|
107
110
|
if field.commandable:
|
|
108
|
-
name_elem.add_class(
|
|
111
|
+
name_elem.add_class(COMMANDABLE)
|
|
109
112
|
|
|
110
113
|
if field.description:
|
|
111
114
|
description = field.description
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: runtimepy
|
|
3
|
-
Version: 5.7.
|
|
3
|
+
Version: 5.7.1
|
|
4
4
|
Summary: A framework for implementing Python services.
|
|
5
5
|
Home-page: https://github.com/vkottler/runtimepy
|
|
6
6
|
Author: Vaughn Kottler
|
|
@@ -17,10 +17,10 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
17
17
|
Requires-Python: >=3.11
|
|
18
18
|
Description-Content-Type: text/markdown
|
|
19
19
|
License-File: LICENSE
|
|
20
|
-
Requires-Dist: svgen >=0.6.8
|
|
21
|
-
Requires-Dist: aiofiles
|
|
22
20
|
Requires-Dist: websockets
|
|
21
|
+
Requires-Dist: svgen >=0.6.8
|
|
23
22
|
Requires-Dist: psutil
|
|
23
|
+
Requires-Dist: aiofiles
|
|
24
24
|
Requires-Dist: vcorelib >=3.4.2
|
|
25
25
|
Provides-Extra: test
|
|
26
26
|
Requires-Dist: pylint ; extra == 'test'
|
|
@@ -45,11 +45,11 @@ Requires-Dist: uvloop ; (sys_platform != "win32" and sys_platform != "cygwin") a
|
|
|
45
45
|
=====================================
|
|
46
46
|
generator=datazen
|
|
47
47
|
version=3.1.4
|
|
48
|
-
hash=
|
|
48
|
+
hash=8247340c8c4e6982a54b831c311f2c0b
|
|
49
49
|
=====================================
|
|
50
50
|
-->
|
|
51
51
|
|
|
52
|
-
# runtimepy ([5.7.
|
|
52
|
+
# runtimepy ([5.7.1](https://pypi.org/project/runtimepy/))
|
|
53
53
|
|
|
54
54
|
[](https://pypi.org/project/runtimepy/)
|
|
55
55
|

|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
runtimepy/__init__.py,sha256=
|
|
1
|
+
runtimepy/__init__.py,sha256=5cxrac3CYhDfd63ssWuRNlnKUGeMyi01Ivyg3V_as0I,390
|
|
2
2
|
runtimepy/__main__.py,sha256=OPAed6hggoQdw-6QAR62mqLC-rCkdDhOq0wyeS2vDRI,332
|
|
3
3
|
runtimepy/app.py,sha256=sTvatbsGZ2Hdel36Si_WUbNMtg9CzsJyExr5xjIcxDE,970
|
|
4
4
|
runtimepy/dev_requirements.txt,sha256=j0dh11ztJAzfaUL0iFheGjaZj9ppDzmTkclTT8YKO8c,230
|
|
@@ -44,13 +44,14 @@ runtimepy/control/env/__init__.py,sha256=RHJqysY7Pv4VDs2SGk0X-qc5xp_SrQ_oxb5Deug
|
|
|
44
44
|
runtimepy/data/browser.yaml,sha256=oc5KEV1C1uAJ4MkhNo4hyVVfJtZvHelRNqzNvD313Ow,79
|
|
45
45
|
runtimepy/data/dummy_load.yaml,sha256=89BPHLaHJOgiiZSVACBA0_xmlN_N6v2fpcCauB03ZkE,1830
|
|
46
46
|
runtimepy/data/factories.yaml,sha256=Jm0QPwW2BQgnj1fIFQwygsWXzT78QJuf7auVRtRzWKQ,1847
|
|
47
|
-
runtimepy/data/favicon.ico,sha256=
|
|
47
|
+
runtimepy/data/favicon.ico,sha256=iPOtqnqrFVr5tNBM6kTsw7nh0KullEz4TpS6CEQ2HVM,362870
|
|
48
48
|
runtimepy/data/sample_telemetry.yaml,sha256=OpdFurkvtWJGaNl9LMlU2rKo15AaVVr-U_hoZfsbp-Y,695
|
|
49
49
|
runtimepy/data/server.yaml,sha256=wS_Ceiu2TpkfPurpqoYoPlgzc9DAWtUd24MW7t-S5rU,97
|
|
50
50
|
runtimepy/data/server_base.yaml,sha256=QkF1xcHyMEViUhOc5rKFbFXjbRDDDHbX5LXvSQJRS58,615
|
|
51
51
|
runtimepy/data/server_dev.yaml,sha256=nQsPh7LuQig3pzHfdg_aD3yOUiCj1sKKfI-WwW3hXmQ,523
|
|
52
52
|
runtimepy/data/tftp_server.yaml,sha256=-bFOWJSagI-fEQQcT8k7eDMJVfSPm2XAxLVG3dqUTa4,204
|
|
53
|
-
runtimepy/data/css/bootstrap_extra.css,sha256
|
|
53
|
+
runtimepy/data/css/bootstrap_extra.css,sha256=-clAoiYcyOkS4xana4O-jvGVsphOaYB_VlmX9mUjI80,1796
|
|
54
|
+
runtimepy/data/css/font.css,sha256=Pe82E66rNi-cwlQ-_1GHAuhPGu5L4x5KqgV0dbDe51w,977
|
|
54
55
|
runtimepy/data/css/main.css,sha256=OSg5g7FYbjsHY7QNbFCTPAD1MlypeoYfaOyAfvnT2kI,680
|
|
55
56
|
runtimepy/data/js/DataConnection.js,sha256=DnX8FMehjJXqmI62UMYXSvl_XdfQMzq3XUDFbLu2GgI,98
|
|
56
57
|
runtimepy/data/js/JsonConnection.js,sha256=rclZrbmWc_zSs6I_JhOgxnVPFIyPMo5WdjAe8alyZ3o,2729
|
|
@@ -104,6 +105,16 @@ runtimepy/data/schemas/has_factory.yaml,sha256=Rsqrxv3HEBUGxPcW6CN7QczA96iBSgtm0
|
|
|
104
105
|
runtimepy/data/schemas/has_markdown.yaml,sha256=LbnEQRYdk5KR_GgORmIOiKjRg-HF8wjhA6Dm6pSm66I,45
|
|
105
106
|
runtimepy/data/schemas/has_name.yaml,sha256=I5YkXxQRYz-1-49CLyr_NA2zVqyRVQCAsb-icTaxF4s,59
|
|
106
107
|
runtimepy/data/schemas/has_request_flag.yaml,sha256=S8ly8g-FkrCVNEizbXPqicg_hpGvtH7WRsHZAA4uhjc,66
|
|
108
|
+
runtimepy/data/static/svg/chip-circle-bootstrap.svg,sha256=cGCiwiVWoO39vzdAt683Fk3W42XE6-RGT0QZtsDAv4o,3124
|
|
109
|
+
runtimepy/data/static/woff2/CascadiaCode-Bold.woff2,sha256=vnrwH_YbbVnq0_aedSECg-eieky43TOK3MxtCWIc_Ug,154520
|
|
110
|
+
runtimepy/data/static/woff2/CascadiaCode-BoldItalic.woff2,sha256=OOWBMRXRJJKxEfEIlKKnT-tFqoZKqGw5hMa69t-gp1c,113236
|
|
111
|
+
runtimepy/data/static/woff2/CascadiaCode-Italic.woff2,sha256=RbBc8ehMSl_ixGWnEe7zn841xDsyxdDJTo3rkYY-bf8,111628
|
|
112
|
+
runtimepy/data/static/woff2/CascadiaCode-Regular.woff2,sha256=n0sjuK3zmAMLxahwrTJ1sApEHp9pbJb_zUrENr3Wetk,152304
|
|
113
|
+
runtimepy/data/static/woff2/CascadiaMono-Bold.woff2,sha256=pxV93LGT3ZVLA_WmSVFtHC3DqvDt0krcPbOS8u3LhGs,145952
|
|
114
|
+
runtimepy/data/static/woff2/CascadiaMono-BoldItalic.woff2,sha256=CwE1OsdCYTPqdWxKWYGOPn_z1P3Lh298MbEIgWv9voY,106232
|
|
115
|
+
runtimepy/data/static/woff2/CascadiaMono-Italic.woff2,sha256=S31PimDgq0GV7XMRV-YXeBA9gC54Wz9ukdAzw1nrc8g,104768
|
|
116
|
+
runtimepy/data/static/woff2/CascadiaMono-Regular.woff2,sha256=hHPAFO0U10TCKBw-UofHN2BLjax9qNClzN9oWGKkQx0,143936
|
|
117
|
+
runtimepy/data/static/woff2/README.md,sha256=flHwSRmDxd6OnWhzxmnXzwio1Mong5tB4d8VgieWCOs,289
|
|
107
118
|
runtimepy/enum/__init__.py,sha256=WIBMOaogauR1u7mK-I4Z5BZUoWANU7alIlrz82QdCmY,5820
|
|
108
119
|
runtimepy/enum/registry.py,sha256=EU7oUejI60kzrhdtzgWpnFYP8h4CFLy_fxvGTwq1Uvc,2631
|
|
109
120
|
runtimepy/enum/types.py,sha256=uQYGvaAJVm5tUdwxn_SLHkTZHJpEf7364rTSL27necA,1027
|
|
@@ -164,7 +175,7 @@ runtimepy/net/server/__init__.py,sha256=J8gl91YltD8Wo2y_AXxaL6liLu3vomfzUz_nULa3
|
|
|
164
175
|
runtimepy/net/server/html.py,sha256=xaTGelH4zrwndQjU24kbCj9Yqu-D17nK5682P6xa-cU,1153
|
|
165
176
|
runtimepy/net/server/json.py,sha256=RfNt7Gr4-X5DMinV1UeiWneTIJr0LO6BXo2GzE0C1PQ,2475
|
|
166
177
|
runtimepy/net/server/app/__init__.py,sha256=9gJr7qcrJNQacAOFpZLfpnzDHzx5KXBMNxPlqQsdwB8,2790
|
|
167
|
-
runtimepy/net/server/app/base.py,sha256=
|
|
178
|
+
runtimepy/net/server/app/base.py,sha256=9PnonII2qZIf1O9BQ8T-wOAgAVHctpLqyZkWGX2M2r4,2104
|
|
168
179
|
runtimepy/net/server/app/create.py,sha256=N-g3kClBsG4pKOd9tx947rOq4sfgrH_FAMVfZacjhFA,2666
|
|
169
180
|
runtimepy/net/server/app/elements.py,sha256=KJt9vWqkfvniJMiLOJN467JjPPrEqJYZXmDuY1JoY1g,455
|
|
170
181
|
runtimepy/net/server/app/files.py,sha256=cIHtIKqaVvOpKL62LSVV1IRPdUyCRCg0TOX9XXmYtqk,2903
|
|
@@ -183,7 +194,7 @@ runtimepy/net/server/app/env/widgets.py,sha256=_kNvPl7MXnZOiwTjoZiU2hfuSjkLnRUrO
|
|
|
183
194
|
runtimepy/net/server/app/env/tab/__init__.py,sha256=stTVKyHljLQWnnhxkWPwa7bLdZtjhiMFbiVFgbiYaFI,647
|
|
184
195
|
runtimepy/net/server/app/env/tab/base.py,sha256=hcHKG17JGkAZjl2X7jT1B72RHTeMdocTakFyNKkmWJc,1168
|
|
185
196
|
runtimepy/net/server/app/env/tab/controls.py,sha256=hsj0ErywfmOBtJLNZbMISrE2ELJEfyXvtCtpsDbXlYg,4734
|
|
186
|
-
runtimepy/net/server/app/env/tab/html.py,sha256=
|
|
197
|
+
runtimepy/net/server/app/env/tab/html.py,sha256=wjG_hhuJVeN4xWpGTyQF-TLKmMxc31nfe0zU4wU99S8,7130
|
|
187
198
|
runtimepy/net/server/app/env/tab/message.py,sha256=OWqBIPRt6UdBHAXk5qvFMbnWuvIRUyp34lzb3GYdthk,4070
|
|
188
199
|
runtimepy/net/server/struct/__init__.py,sha256=Zy37r6RLFu-XFr9vsanSq80BJdS6Dxr7zmPzQbb7xdw,1799
|
|
189
200
|
runtimepy/net/server/websocket/__init__.py,sha256=KISuFUUQwNn6BXo8BOMuMOXyoVqE7Jw94ZQiSCQuRQE,5279
|
|
@@ -269,9 +280,9 @@ runtimepy/tui/task.py,sha256=nUZo9fuOC-k1Wpqdzkv9v1tQirCI28fZVgcC13Ijvus,1093
|
|
|
269
280
|
runtimepy/tui/channels/__init__.py,sha256=evDaiIn-YS9uGhdo8ZGtP9VK1ek6sr_P1nJ9JuSET0o,4536
|
|
270
281
|
runtimepy/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
271
282
|
runtimepy/ui/controls.py,sha256=yvT7h3thbYaitsakcIAJ90EwKzJ4b-jnc6p3UuVf_XE,1241
|
|
272
|
-
runtimepy-5.7.
|
|
273
|
-
runtimepy-5.7.
|
|
274
|
-
runtimepy-5.7.
|
|
275
|
-
runtimepy-5.7.
|
|
276
|
-
runtimepy-5.7.
|
|
277
|
-
runtimepy-5.7.
|
|
283
|
+
runtimepy-5.7.1.dist-info/LICENSE,sha256=okYCYhGsx_BlzvFdoNVBVpw_Cfb4SOqHA_VAARml4Hc,1071
|
|
284
|
+
runtimepy-5.7.1.dist-info/METADATA,sha256=eqlwkUrGcPJFbn5jXvluP9ldQxHabTy2-tfbUNdiP8s,9308
|
|
285
|
+
runtimepy-5.7.1.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
|
286
|
+
runtimepy-5.7.1.dist-info/entry_points.txt,sha256=-btVBkYv7ybcopqZ_pRky-bEzu3vhbaG3W3Z7ERBiFE,51
|
|
287
|
+
runtimepy-5.7.1.dist-info/top_level.txt,sha256=0jPmh6yqHyyJJDwEID-LpQly-9kQ3WRMjH7Lix8peLg,10
|
|
288
|
+
runtimepy-5.7.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|