arkitekt-next 0.7.14__py3-none-any.whl → 0.7.16__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.
Potentially problematic release.
This version of arkitekt-next might be problematic. Click here for more details.
- arkitekt_next/builders.py +1 -97
- arkitekt_next/cli/commands/inspect/templates.py +1 -1
- arkitekt_next/cli/commands/kabinet/build.py +5 -4
- arkitekt_next/cli/types.py +3 -1
- arkitekt_next/qt/__init__.py +4 -0
- arkitekt_next/qt/builder.py +111 -0
- {arkitekt_next-0.7.14.dist-info → arkitekt_next-0.7.16.dist-info}/METADATA +1 -2
- {arkitekt_next-0.7.14.dist-info → arkitekt_next-0.7.16.dist-info}/RECORD +11 -10
- {arkitekt_next-0.7.14.dist-info → arkitekt_next-0.7.16.dist-info}/LICENSE +0 -0
- {arkitekt_next-0.7.14.dist-info → arkitekt_next-0.7.16.dist-info}/WHEEL +0 -0
- {arkitekt_next-0.7.14.dist-info → arkitekt_next-0.7.16.dist-info}/entry_points.txt +0 -0
arkitekt_next/builders.py
CHANGED
|
@@ -7,14 +7,12 @@ from arkitekt_next.apps.service.fakts_next import (
|
|
|
7
7
|
build_arkitekt_next_redeem_fakts_next,
|
|
8
8
|
)
|
|
9
9
|
from arkitekt_next.apps.service.herre import build_arkitekt_next_herre
|
|
10
|
-
from arkitekt_next.apps.service.fakts_qt import build_arkitekt_next_qt_fakts
|
|
11
|
-
from arkitekt_next.apps.service.herre_qt import build_arkitekt_next_qt_herre
|
|
12
10
|
from .utils import create_arkitekt_next_folder
|
|
13
11
|
from .model import Manifest
|
|
14
12
|
from .apps.types import App
|
|
15
13
|
from .service_registry import ServiceBuilderRegistry, check_and_import_services
|
|
16
14
|
from arkitekt_next.constants import DEFAULT_ARKITEKT_URL
|
|
17
|
-
|
|
15
|
+
|
|
18
16
|
|
|
19
17
|
|
|
20
18
|
def easy(
|
|
@@ -153,97 +151,3 @@ def easy(
|
|
|
153
151
|
return app
|
|
154
152
|
|
|
155
153
|
|
|
156
|
-
def publicqt(
|
|
157
|
-
identifier: str,
|
|
158
|
-
version: str = "latest",
|
|
159
|
-
logo: Optional[str] = None,
|
|
160
|
-
scopes: Optional[List[str]] = None,
|
|
161
|
-
url: str = "http://localhost:11000",
|
|
162
|
-
headless: bool = False,
|
|
163
|
-
log_level: str = "ERROR",
|
|
164
|
-
token: Optional[str] = None,
|
|
165
|
-
no_cache: bool = False,
|
|
166
|
-
instance_id: str = "main",
|
|
167
|
-
redeem_token: Optional[str] = None,
|
|
168
|
-
app_kind: str = "desktop",
|
|
169
|
-
registry: Optional[ServiceBuilderRegistry] = None,
|
|
170
|
-
parent: Optional[QtWidgets.QWidget] = None,
|
|
171
|
-
beacon_widget: Optional[QtWidgets.QWidget] = None,
|
|
172
|
-
login_widget: Optional[QtWidgets.QWidget] = None,
|
|
173
|
-
settings: Optional[QtCore.QSettings] = None,
|
|
174
|
-
**kwargs,
|
|
175
|
-
) -> App:
|
|
176
|
-
"""Public QtApp creation
|
|
177
|
-
|
|
178
|
-
A simple way to create an Arkitekt app with a public grant (allowing users to sign
|
|
179
|
-
in with the application ) utlizing a retrieve grant (necessating a previous configuration
|
|
180
|
-
of the application on the server side)
|
|
181
|
-
|
|
182
|
-
Args:
|
|
183
|
-
identifier (str): The apps identifier
|
|
184
|
-
version (str, optional): The apps verion. Defaults to "latest".
|
|
185
|
-
parent (QtWidget, optional): The QtParent (for the login and server select widget). Defaults to None.
|
|
186
|
-
|
|
187
|
-
Returns:
|
|
188
|
-
Arkitekt: The Arkitekt app
|
|
189
|
-
"""
|
|
190
|
-
|
|
191
|
-
registry = registry or check_and_import_services()
|
|
192
|
-
|
|
193
|
-
manifest = Manifest(
|
|
194
|
-
version=version,
|
|
195
|
-
identifier=identifier,
|
|
196
|
-
scopes=scopes if scopes else ["openid"],
|
|
197
|
-
logo=logo,
|
|
198
|
-
requirements=registry.get_requirements(),
|
|
199
|
-
)
|
|
200
|
-
|
|
201
|
-
if redeem_token:
|
|
202
|
-
fakts = build_arkitekt_next_redeem_fakts_next(
|
|
203
|
-
manifest=manifest,
|
|
204
|
-
redeem_token=redeem_token,
|
|
205
|
-
url=url,
|
|
206
|
-
no_cache=no_cache,
|
|
207
|
-
headless=headless,
|
|
208
|
-
)
|
|
209
|
-
else:
|
|
210
|
-
fakts = build_arkitekt_next_qt_fakts(
|
|
211
|
-
manifest=manifest,
|
|
212
|
-
url=url,
|
|
213
|
-
no_cache=no_cache,
|
|
214
|
-
client_kind=app_kind,
|
|
215
|
-
beacon_widget=beacon_widget,
|
|
216
|
-
settings=settings,
|
|
217
|
-
)
|
|
218
|
-
|
|
219
|
-
herre = build_arkitekt_next_qt_herre(
|
|
220
|
-
manifest=manifest,
|
|
221
|
-
fakts=fakts,
|
|
222
|
-
login_widget=login_widget,
|
|
223
|
-
parent=parent,
|
|
224
|
-
settings=settings,
|
|
225
|
-
)
|
|
226
|
-
|
|
227
|
-
params = kwargs
|
|
228
|
-
|
|
229
|
-
url = os.getenv("FAKTS_URL", url)
|
|
230
|
-
token = os.getenv("FAKTS_TOKEN", token)
|
|
231
|
-
|
|
232
|
-
create_arkitekt_next_folder(with_cache=True)
|
|
233
|
-
|
|
234
|
-
try:
|
|
235
|
-
from rich.logging import RichHandler
|
|
236
|
-
|
|
237
|
-
logging.basicConfig(level=log_level, handlers=[RichHandler()])
|
|
238
|
-
except ImportError:
|
|
239
|
-
logging.basicConfig(level=log_level)
|
|
240
|
-
|
|
241
|
-
app = App(
|
|
242
|
-
fakts=fakts,
|
|
243
|
-
herre=herre,
|
|
244
|
-
manifest=manifest,
|
|
245
|
-
services=registry.build_service_map(fakts=fakts, herre=herre, params=params),
|
|
246
|
-
)
|
|
247
|
-
|
|
248
|
-
app.enter()
|
|
249
|
-
return app
|
|
@@ -11,6 +11,7 @@ import yaml
|
|
|
11
11
|
from typing import Dict, Optional
|
|
12
12
|
import json
|
|
13
13
|
from arkitekt_next.utils import create_arkitekt_next_folder
|
|
14
|
+
from rekuest_next.api.schema import TemplateInput
|
|
14
15
|
|
|
15
16
|
|
|
16
17
|
class InspectionError(Exception):
|
|
@@ -89,7 +90,7 @@ def inspect_docker_container(build_id: str) -> Inspection:
|
|
|
89
90
|
raise InspectionError(f"An error occurred: {e.stdout + e.stderr}") from e
|
|
90
91
|
|
|
91
92
|
|
|
92
|
-
def
|
|
93
|
+
def inspect_templates(build_id: str) -> list[TemplateInput]:
|
|
93
94
|
try:
|
|
94
95
|
# Run 'docker inspect' with the container ID or name
|
|
95
96
|
result = subprocess.run(
|
|
@@ -113,7 +114,7 @@ def inspect_definitions(build_id: str) -> Inspection:
|
|
|
113
114
|
f"Could not decode JSON output of docker inspect. {combined_error}"
|
|
114
115
|
) from e
|
|
115
116
|
|
|
116
|
-
return output
|
|
117
|
+
return list(output.values())
|
|
117
118
|
except subprocess.CalledProcessError as e:
|
|
118
119
|
combined_error = e.stdout + e.stderr
|
|
119
120
|
|
|
@@ -128,9 +129,9 @@ def inspect_definitions(build_id: str) -> Inspection:
|
|
|
128
129
|
|
|
129
130
|
def inspect_build(build_id: str) -> Inspection:
|
|
130
131
|
size, size_root_fs = inspect_docker_container(build_id)
|
|
131
|
-
|
|
132
|
+
templates = inspect_templates(build_id)
|
|
132
133
|
|
|
133
|
-
return Inspection(size=size,
|
|
134
|
+
return Inspection(size=size, templates=templates)
|
|
134
135
|
|
|
135
136
|
|
|
136
137
|
def get_flavours(ctx: Context, select: Optional[str] = None) -> Dict[str, Flavour]:
|
arkitekt_next/cli/types.py
CHANGED
|
@@ -8,6 +8,8 @@ from rekuest.api.schema import DefinitionInput
|
|
|
8
8
|
from string import Formatter
|
|
9
9
|
import os
|
|
10
10
|
|
|
11
|
+
from rekuest_next.api.schema import TemplateInput
|
|
12
|
+
|
|
11
13
|
ALLOWED_BUILDER_KEYS = [
|
|
12
14
|
"tag",
|
|
13
15
|
"dockerfile",
|
|
@@ -215,7 +217,7 @@ Selector = Union[
|
|
|
215
217
|
|
|
216
218
|
|
|
217
219
|
class Inspection(BaseModel):
|
|
218
|
-
|
|
220
|
+
templates: List[TemplateInput]
|
|
219
221
|
size: int
|
|
220
222
|
|
|
221
223
|
|
arkitekt_next/qt/__init__.py
CHANGED
|
@@ -7,3 +7,7 @@ The main component is the MagicBar, which is a widget that can be added
|
|
|
7
7
|
to any Qt application. It will then allow the user to configure and connect
|
|
8
8
|
to ArkitektNext, and configure settings.
|
|
9
9
|
"""
|
|
10
|
+
from .magic_bar import MagicBar
|
|
11
|
+
from .builder import build_arkitekt_next_qt_app
|
|
12
|
+
|
|
13
|
+
__all__ = ["MagicBar", "build_arkitekt_next_qt_app"]
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
|
|
2
|
+
from arkitekt_next.apps.service.fakts_next import (
|
|
3
|
+
build_arkitekt_next_redeem_fakts_next,
|
|
4
|
+
)
|
|
5
|
+
from arkitekt_next.apps.service.fakts_qt import build_arkitekt_next_qt_fakts
|
|
6
|
+
from arkitekt_next.apps.service.herre_qt import build_arkitekt_next_qt_herre
|
|
7
|
+
from arkitekt_next.utils import create_arkitekt_next_folder
|
|
8
|
+
from arkitekt_next.model import Manifest
|
|
9
|
+
from arkitekt_next.apps.types import App
|
|
10
|
+
from arkitekt_next.service_registry import ServiceBuilderRegistry, check_and_import_services
|
|
11
|
+
from arkitekt_next.constants import DEFAULT_ARKITEKT_URL
|
|
12
|
+
from qtpy import QtWidgets, QtCore
|
|
13
|
+
from typing import List, Optional
|
|
14
|
+
import os
|
|
15
|
+
import logging
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
def publicqt(
|
|
19
|
+
identifier: str,
|
|
20
|
+
version: str = "latest",
|
|
21
|
+
logo: Optional[str] = None,
|
|
22
|
+
scopes: Optional[List[str]] = None,
|
|
23
|
+
url: str = "http://localhost:11000",
|
|
24
|
+
headless: bool = False,
|
|
25
|
+
log_level: str = "ERROR",
|
|
26
|
+
token: Optional[str] = None,
|
|
27
|
+
no_cache: bool = False,
|
|
28
|
+
instance_id: str = "main",
|
|
29
|
+
redeem_token: Optional[str] = None,
|
|
30
|
+
app_kind: str = "desktop",
|
|
31
|
+
registry: Optional[ServiceBuilderRegistry] = None,
|
|
32
|
+
parent: Optional[QtWidgets.QWidget] = None,
|
|
33
|
+
beacon_widget: Optional[QtWidgets.QWidget] = None,
|
|
34
|
+
login_widget: Optional[QtWidgets.QWidget] = None,
|
|
35
|
+
settings: Optional[QtCore.QSettings] = None,
|
|
36
|
+
**kwargs,
|
|
37
|
+
) -> App:
|
|
38
|
+
"""Public QtApp creation
|
|
39
|
+
|
|
40
|
+
A simple way to create an Arkitekt app with a public grant (allowing users to sign
|
|
41
|
+
in with the application ) utlizing a retrieve grant (necessating a previous configuration
|
|
42
|
+
of the application on the server side)
|
|
43
|
+
|
|
44
|
+
Args:
|
|
45
|
+
identifier (str): The apps identifier
|
|
46
|
+
version (str, optional): The apps verion. Defaults to "latest".
|
|
47
|
+
parent (QtWidget, optional): The QtParent (for the login and server select widget). Defaults to None.
|
|
48
|
+
|
|
49
|
+
Returns:
|
|
50
|
+
Arkitekt: The Arkitekt app
|
|
51
|
+
"""
|
|
52
|
+
|
|
53
|
+
registry = registry or check_and_import_services()
|
|
54
|
+
|
|
55
|
+
manifest = Manifest(
|
|
56
|
+
version=version,
|
|
57
|
+
identifier=identifier,
|
|
58
|
+
scopes=scopes if scopes else ["openid"],
|
|
59
|
+
logo=logo,
|
|
60
|
+
requirements=registry.get_requirements(),
|
|
61
|
+
)
|
|
62
|
+
|
|
63
|
+
if redeem_token:
|
|
64
|
+
fakts = build_arkitekt_next_redeem_fakts_next(
|
|
65
|
+
manifest=manifest,
|
|
66
|
+
redeem_token=redeem_token,
|
|
67
|
+
url=url,
|
|
68
|
+
no_cache=no_cache,
|
|
69
|
+
headless=headless,
|
|
70
|
+
)
|
|
71
|
+
else:
|
|
72
|
+
fakts = build_arkitekt_next_qt_fakts(
|
|
73
|
+
manifest=manifest,
|
|
74
|
+
url=url,
|
|
75
|
+
no_cache=no_cache,
|
|
76
|
+
client_kind=app_kind,
|
|
77
|
+
beacon_widget=beacon_widget,
|
|
78
|
+
settings=settings,
|
|
79
|
+
)
|
|
80
|
+
|
|
81
|
+
herre = build_arkitekt_next_qt_herre(
|
|
82
|
+
manifest=manifest,
|
|
83
|
+
fakts=fakts,
|
|
84
|
+
login_widget=login_widget,
|
|
85
|
+
parent=parent,
|
|
86
|
+
settings=settings,
|
|
87
|
+
)
|
|
88
|
+
|
|
89
|
+
params = kwargs
|
|
90
|
+
|
|
91
|
+
url = os.getenv("FAKTS_URL", url)
|
|
92
|
+
token = os.getenv("FAKTS_TOKEN", token)
|
|
93
|
+
|
|
94
|
+
create_arkitekt_next_folder(with_cache=True)
|
|
95
|
+
|
|
96
|
+
try:
|
|
97
|
+
from rich.logging import RichHandler
|
|
98
|
+
|
|
99
|
+
logging.basicConfig(level=log_level, handlers=[RichHandler()])
|
|
100
|
+
except ImportError:
|
|
101
|
+
logging.basicConfig(level=log_level)
|
|
102
|
+
|
|
103
|
+
app = App(
|
|
104
|
+
fakts=fakts,
|
|
105
|
+
herre=herre,
|
|
106
|
+
manifest=manifest,
|
|
107
|
+
services=registry.build_service_map(fakts=fakts, herre=herre, params=params),
|
|
108
|
+
)
|
|
109
|
+
|
|
110
|
+
app.enter()
|
|
111
|
+
return app
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: arkitekt-next
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.16
|
|
4
4
|
Summary: client for the arkitekt_next platform
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: jhnnsrs
|
|
@@ -22,7 +22,6 @@ Requires-Dist: herre (>=0.4.3)
|
|
|
22
22
|
Requires-Dist: kabinet (>=0.1.2) ; (python_version >= "3.9" and python_version < "4.0") and (extra == "all")
|
|
23
23
|
Requires-Dist: koil (>=0.3.6)
|
|
24
24
|
Requires-Dist: mikro-next (>=0.1.9) ; (python_version >= "3.10" and python_version < "4.0") and (extra == "all")
|
|
25
|
-
Requires-Dist: qtpy (>=2.4.1,<3.0.0)
|
|
26
25
|
Requires-Dist: reaktion-next (>=0.1.53) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "all")
|
|
27
26
|
Requires-Dist: rekuest-next (>=0.2.4) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "cli" or extra == "all")
|
|
28
27
|
Requires-Dist: rich-click (>=1.6.1) ; extra == "cli" or extra == "all"
|
|
@@ -16,7 +16,7 @@ arkitekt_next/apps/service/mikro_next.py,sha256=j612M2wo4EdaKp13qx_8eqQsB6wc5nE_
|
|
|
16
16
|
arkitekt_next/apps/service/rekuest_next.py,sha256=RiNN5rzDbq15AgyVpv-3tjkSO6TeO2xsuEvGTYmB2UQ,1816
|
|
17
17
|
arkitekt_next/apps/service/unlok_next.py,sha256=u3cjFr1i6kHjH881oj_NBmY1CgnM0uqdDbicq-SilPM,1124
|
|
18
18
|
arkitekt_next/apps/types.py,sha256=uozRXDDGJBL9hYCYGZF_XmtZ4ZvoLZeEEfJeL10Ve3U,1136
|
|
19
|
-
arkitekt_next/builders.py,sha256=
|
|
19
|
+
arkitekt_next/builders.py,sha256=7rHNSdloNTgf3vvzcl4n67-F-vxOECTO1aZ7Xm9c_S0,5776
|
|
20
20
|
arkitekt_next/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
21
|
arkitekt_next/cli/commands/call/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
22
|
arkitekt_next/cli/commands/call/local.py,sha256=YDummInGSb6lGKGiTlMSuXbE-Sz6dbfng6CsZaChCew,3338
|
|
@@ -31,10 +31,10 @@ arkitekt_next/cli/commands/init/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
|
|
|
31
31
|
arkitekt_next/cli/commands/init/main.py,sha256=1ACgJn3RH5UIbsaX3KxKmwwvw9bkmJJgSWG4JDHPfow,5936
|
|
32
32
|
arkitekt_next/cli/commands/inspect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
33
|
arkitekt_next/cli/commands/inspect/main.py,sha256=Eab0t-oQzrnVIQuj5Rzq4Jm__awfOSMACM2vLEZlvEE,537
|
|
34
|
-
arkitekt_next/cli/commands/inspect/templates.py,sha256=
|
|
34
|
+
arkitekt_next/cli/commands/inspect/templates.py,sha256=U99SLBYWiD-ZiIYV7pVWhQK3XWn1PLUIyTKzgSFF6MQ,2325
|
|
35
35
|
arkitekt_next/cli/commands/inspect/variables.py,sha256=LonDlbS2qH1v-jD6RfEhTv-mxmgeBMKqD3oO2iDJRjE,2698
|
|
36
36
|
arkitekt_next/cli/commands/kabinet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
-
arkitekt_next/cli/commands/kabinet/build.py,sha256=
|
|
37
|
+
arkitekt_next/cli/commands/kabinet/build.py,sha256=H6Hu3Df2GZiJDEFAvxfSCdn_OwSeikFhW9bybF7mT1A,7085
|
|
38
38
|
arkitekt_next/cli/commands/kabinet/init.py,sha256=NNEb5SITLNM1TBED0moyBhE-JGkkr0cvNh33A4OGnfc,2525
|
|
39
39
|
arkitekt_next/cli/commands/kabinet/main.py,sha256=U5EWekRTsMZZ34abWFfwilhzrd-zZtpZbl8RsLN_bC8,1008
|
|
40
40
|
arkitekt_next/cli/commands/kabinet/publish.py,sha256=zbjnoMliowje1nEuKFolFX5pZA2D_DzLjXlSxBbD88k,3596
|
|
@@ -88,7 +88,7 @@ arkitekt_next/cli/schemas/unlok.schema.graphql,sha256=fXR846snIBIqkuQ-PlYnSkQjkF
|
|
|
88
88
|
arkitekt_next/cli/templates/filter.py,sha256=mD2jdNEXrZNagC_8WtuTisGJrGIbJDSylCvh19cF49I,650
|
|
89
89
|
arkitekt_next/cli/templates/simple.py,sha256=IbcThJ5LryXVFQUdzxfHQCtzSNxEQWTxbD__Ygxsp4M,1171
|
|
90
90
|
arkitekt_next/cli/texts.py,sha256=csMefyCnwnvDnriTy0VJ4L24VFIbcXoC9ayopP4RxIc,697
|
|
91
|
-
arkitekt_next/cli/types.py,sha256=
|
|
91
|
+
arkitekt_next/cli/types.py,sha256=YH3wfQRO23xe6yw8_1ew63OWT_Z_l4EpgOUdoMipnIo,10456
|
|
92
92
|
arkitekt_next/cli/ui.py,sha256=BR_AOsBIIHwojI5otBzT_560-ep5Dw1xAHKsO2zOOJQ,3493
|
|
93
93
|
arkitekt_next/cli/utils.py,sha256=rl1hfQIVzepLHPN_ZWuvfVH-IIVqcSfiFGyfNtL1XCo,445
|
|
94
94
|
arkitekt_next/cli/validators.py,sha256=XkLrOrDzBJwcG1keTawa_NJPt3QIBhb5KjepeH4N1KA,719
|
|
@@ -96,7 +96,7 @@ arkitekt_next/cli/vars.py,sha256=ev7cKDSPoik8hU9A_ohNpjRZX4FT1GYJaBoGLnxCKjU,982
|
|
|
96
96
|
arkitekt_next/cli/versions/v1.yaml,sha256=rv2-F6FQbTZi_H6pSE_csdICdtKBObDdoo_asOFi43Y,12
|
|
97
97
|
arkitekt_next/constants.py,sha256=ziQ_WxvGPZtVQtRwKutlBNBfUVtpQu51abOaGaQ2OtU,107
|
|
98
98
|
arkitekt_next/model.py,sha256=6KYwSqWhI9CFhZIgip5ZddWleNBENGCAW2-ajtcOZSg,4476
|
|
99
|
-
arkitekt_next/qt/__init__.py,sha256=
|
|
99
|
+
arkitekt_next/qt/__init__.py,sha256=SVnuFY6eUXuG-mrm928RuYeMiunxlc73UsXDGV5DAuY,458
|
|
100
100
|
arkitekt_next/qt/assets/dark/gear.png,sha256=nYl1JZhcpwd7s5FgG2g-1RpkK7TH_QQRqJMmK6r0BpU,6296
|
|
101
101
|
arkitekt_next/qt/assets/dark/green pulse.gif,sha256=cUd2F3Qlvjb7SnsU-LjGgeLTa8KoPgu3C-LNrixIQds,105386
|
|
102
102
|
arkitekt_next/qt/assets/dark/orange pulse.gif,sha256=0gDvrRed0mzZZPHB4tP6vptx7myUCAa_hEVGdjRhNy8,94769
|
|
@@ -107,13 +107,14 @@ arkitekt_next/qt/assets/light/green pulse.gif,sha256=cUd2F3Qlvjb7SnsU-LjGgeLTa8K
|
|
|
107
107
|
arkitekt_next/qt/assets/light/orange pulse.gif,sha256=0gDvrRed0mzZZPHB4tP6vptx7myUCAa_hEVGdjRhNy8,94769
|
|
108
108
|
arkitekt_next/qt/assets/light/pink pulse.gif,sha256=rxd6ZTHSIG9JZuuHhi3jiSB_JYFBZpy7OWUeZETlhQ4,107513
|
|
109
109
|
arkitekt_next/qt/assets/light/red pulse.gif,sha256=U7WLbZvSl5e-Ob5RmawtlC0Rh9VVHxkjDbGjj7NYVUo,108749
|
|
110
|
+
arkitekt_next/qt/builder.py,sha256=CWdFT9YERyMKGqPXdAdMFUbVt-HdJLN7Y4LqdK7xdGM,3371
|
|
110
111
|
arkitekt_next/qt/magic_bar.py,sha256=xo4_ReVYtpCwnRFTMBYvBEcVvY3JnNFbqYYY_-ez6vM,18242
|
|
111
112
|
arkitekt_next/qt/utils.py,sha256=MgBPtPmCSBkIuATov3UgREESwxAHh77lWNNxyE7Qs48,773
|
|
112
113
|
arkitekt_next/service_registry.py,sha256=Aq5bgu4UHRl1P6E2JOQ2gMCwFI8pQfASWte0BvtKE3g,3365
|
|
113
114
|
arkitekt_next/tqdm.py,sha256=DlrxPluHao7TvW-Cqgt0UokRS-fM2_ZNiWiddqvCqCc,1488
|
|
114
115
|
arkitekt_next/utils.py,sha256=WA3AtqQFcz2h-yOadAsQkkr0qKJmKcGMi2aclxaVI_o,1278
|
|
115
|
-
arkitekt_next-0.7.
|
|
116
|
-
arkitekt_next-0.7.
|
|
117
|
-
arkitekt_next-0.7.
|
|
118
|
-
arkitekt_next-0.7.
|
|
119
|
-
arkitekt_next-0.7.
|
|
116
|
+
arkitekt_next-0.7.16.dist-info/LICENSE,sha256=YZ2oRjC248t-GpoEyw7J13vwKYNG6zhYMaEAix6EzF0,1089
|
|
117
|
+
arkitekt_next-0.7.16.dist-info/METADATA,sha256=MX27gH4_bcWB50NJz8EEdD7Gnk_MZDz3x_c0Q44DPsk,5408
|
|
118
|
+
arkitekt_next-0.7.16.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
119
|
+
arkitekt_next-0.7.16.dist-info/entry_points.txt,sha256=-hxikQx4xZ6TiOnWVDOlTN_kcAISgGFvTHXIchsCHSc,60
|
|
120
|
+
arkitekt_next-0.7.16.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|