arkitekt-next 0.8.81__py3-none-any.whl → 0.8.82__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/__init__.py +16 -0
- arkitekt_next/base_models.py +3 -0
- arkitekt_next/qt/builders.py +2 -0
- {arkitekt_next-0.8.81.dist-info → arkitekt_next-0.8.82.dist-info}/METADATA +13 -13
- {arkitekt_next-0.8.81.dist-info → arkitekt_next-0.8.82.dist-info}/RECORD +8 -8
- {arkitekt_next-0.8.81.dist-info → arkitekt_next-0.8.82.dist-info}/LICENSE +0 -0
- {arkitekt_next-0.8.81.dist-info → arkitekt_next-0.8.82.dist-info}/WHEEL +0 -0
- {arkitekt_next-0.8.81.dist-info → arkitekt_next-0.8.82.dist-info}/entry_points.txt +0 -0
arkitekt_next/__init__.py
CHANGED
|
@@ -17,6 +17,7 @@ try:
|
|
|
17
17
|
from rekuest_next.actors.reactive.api import log, alog
|
|
18
18
|
from rekuest_next.register import test, benchmark
|
|
19
19
|
from rekuest_next.structures.model import model
|
|
20
|
+
from rekuest_next.utils import call, call_raw, acall, acall_raw, find, afind
|
|
20
21
|
from rekuest_next.define import define
|
|
21
22
|
except ImportError as e:
|
|
22
23
|
register_structure = missing_install("rekuest_next", e)
|
|
@@ -29,6 +30,12 @@ except ImportError as e:
|
|
|
29
30
|
aprogress = missing_install("rekuest_next", e)
|
|
30
31
|
log = missing_install("rekuest_next", e)
|
|
31
32
|
alog = missing_install("rekuest_next", e)
|
|
33
|
+
call = missing_install("rekuest_next", e)
|
|
34
|
+
call_raw = missing_install("rekuest_next", e)
|
|
35
|
+
acall = missing_install("rekuest_next", e)
|
|
36
|
+
acall_raw = missing_install("rekuest_next", e)
|
|
37
|
+
find = missing_install("rekuest_next", e)
|
|
38
|
+
afind = missing_install("rekuest_next", e)
|
|
32
39
|
|
|
33
40
|
from .builders import easy, interactive
|
|
34
41
|
from .apps.types import App
|
|
@@ -63,6 +70,15 @@ __all__ = [
|
|
|
63
70
|
"group",
|
|
64
71
|
"useGuardian",
|
|
65
72
|
"useInstanceID",
|
|
73
|
+
"find",
|
|
74
|
+
"afind",
|
|
75
|
+
"call",
|
|
76
|
+
"call_raw",
|
|
77
|
+
"acall",
|
|
78
|
+
"acall_raw",
|
|
79
|
+
"model",
|
|
80
|
+
"test",
|
|
81
|
+
"benchmark",
|
|
66
82
|
"useUser",
|
|
67
83
|
"next",
|
|
68
84
|
"state",
|
arkitekt_next/base_models.py
CHANGED
|
@@ -43,6 +43,9 @@ class Manifest(BaseModel):
|
|
|
43
43
|
requirements: Optional[List[Requirement]] = Field(default_factory=list)
|
|
44
44
|
""" Requirements that this app has TODO: What are the requirements? """
|
|
45
45
|
model_config = ConfigDict(extra="forbid")
|
|
46
|
+
|
|
47
|
+
description: Optional[str] = None
|
|
48
|
+
""" A human readable description of the app """
|
|
46
49
|
|
|
47
50
|
def hash(self):
|
|
48
51
|
"""Hash the manifest
|
arkitekt_next/qt/builders.py
CHANGED
|
@@ -48,6 +48,7 @@ def devqt(
|
|
|
48
48
|
redeem_token: Optional[str] = None,
|
|
49
49
|
app_kind: str = "development",
|
|
50
50
|
registry: Optional[ServiceBuilderRegistry] = None,
|
|
51
|
+
description: Optional[str] = None,
|
|
51
52
|
**kwargs,
|
|
52
53
|
) -> QtApp:
|
|
53
54
|
"""Creates a next app
|
|
@@ -127,6 +128,7 @@ def devqt(
|
|
|
127
128
|
scopes=scopes if scopes else ["openid"],
|
|
128
129
|
logo=logo,
|
|
129
130
|
requirements=registry.get_requirements(),
|
|
131
|
+
description=description,
|
|
130
132
|
)
|
|
131
133
|
if token:
|
|
132
134
|
fakts_next = build_arkitekt_next_token_fakts_next(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: arkitekt-next
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.82
|
|
4
4
|
Summary: client for the arkitekt_next platform
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: jhnnsrs
|
|
@@ -27,27 +27,27 @@ Provides-Extra: reaktion
|
|
|
27
27
|
Provides-Extra: rekuest
|
|
28
28
|
Provides-Extra: stream
|
|
29
29
|
Provides-Extra: unlok
|
|
30
|
-
Requires-Dist: alpaka (>=0.1.
|
|
30
|
+
Requires-Dist: alpaka (>=0.1.22) ; (python_version >= "3.10" and python_version < "4.0") and (extra == "alpaka" or extra == "extended")
|
|
31
31
|
Requires-Dist: blok (>=0.0.22) ; (python_version >= "3.9" and python_version < "4.0") and (extra == "blok")
|
|
32
32
|
Requires-Dist: cryptography (>=40.0.8) ; (python_version >= "3.9") and (extra == "blok")
|
|
33
33
|
Requires-Dist: dokker (>=1.0.0)
|
|
34
|
-
Requires-Dist: elektro (>=0.4.
|
|
35
|
-
Requires-Dist: fakts-next (>=1.0.
|
|
36
|
-
Requires-Dist: fluss-next (>=0.1.
|
|
37
|
-
Requires-Dist: herre-next (>=1.0.
|
|
38
|
-
Requires-Dist: kabinet (>=0.1.
|
|
34
|
+
Requires-Dist: elektro (>=0.4.2) ; (python_version >= "3.9") and (extra == "elektro")
|
|
35
|
+
Requires-Dist: fakts-next (>=1.0.6)
|
|
36
|
+
Requires-Dist: fluss-next (>=0.1.98) ; (python_version >= "3.9") and (extra == "fluss" or extra == "all")
|
|
37
|
+
Requires-Dist: herre-next (>=1.0.3)
|
|
38
|
+
Requires-Dist: kabinet (>=0.1.51) ; (python_version >= "3.9" and python_version < "4.0") and (extra == "kabinet" or extra == "all")
|
|
39
39
|
Requires-Dist: koil (>=1.0.3)
|
|
40
|
-
Requires-Dist: kraph (>=0.1.
|
|
41
|
-
Requires-Dist: lovekit (>=0.1.
|
|
42
|
-
Requires-Dist: mikro-next (>=0.1.
|
|
40
|
+
Requires-Dist: kraph (>=0.1.106) ; (python_version >= "3.9") and (extra == "kraph" or extra == "extended")
|
|
41
|
+
Requires-Dist: lovekit (>=0.1.20) ; (python_version >= "3.10") and (extra == "lovekit" or extra == "stream")
|
|
42
|
+
Requires-Dist: mikro-next (>=0.1.62) ; (python_version >= "3.11" and python_version < "4.0") and (extra == "mikro" or extra == "all")
|
|
43
43
|
Requires-Dist: namegenerator (>=1.0.6) ; (python_version >= "3.9") and (extra == "blok")
|
|
44
44
|
Requires-Dist: netifaces (>=0.11.0) ; (python_version >= "3.9") and (extra == "blok")
|
|
45
|
-
Requires-Dist: reaktion-next (>=0.1.
|
|
46
|
-
Requires-Dist: rekuest-next (>=0.2.
|
|
45
|
+
Requires-Dist: reaktion-next (>=0.1.89) ; (python_version >= "3.9") and (extra == "reaktion" or extra == "all")
|
|
46
|
+
Requires-Dist: rekuest-next (>=0.2.75) ; (python_version >= "3.9") and (extra == "cli" or extra == "rekuest" or extra == "all")
|
|
47
47
|
Requires-Dist: rich-click (>=1.6.1) ; extra == "cli" or extra == "all" or extra == "blok"
|
|
48
48
|
Requires-Dist: semver (>=3.0.1) ; extra == "cli" or extra == "all"
|
|
49
49
|
Requires-Dist: turms (>=0.8.2) ; (python_version >= "3.9") and (extra == "cli" or extra == "all")
|
|
50
|
-
Requires-Dist: unlok-next (>=0.1.
|
|
50
|
+
Requires-Dist: unlok-next (>=0.1.92) ; (python_version >= "3.9") and (extra == "unlok" or extra == "all")
|
|
51
51
|
Requires-Dist: watchfiles (>=0.18.1) ; extra == "cli" or extra == "all"
|
|
52
52
|
Description-Content-Type: text/markdown
|
|
53
53
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
arkitekt_next/__blok__.py,sha256=OjHVGBrG06DLYtlW8_0uCxpkoG-mhHqNTThITtY5Fpw,1943
|
|
2
|
-
arkitekt_next/__init__.py,sha256=
|
|
2
|
+
arkitekt_next/__init__.py,sha256=5PY7Hyx5PZ52wDPVlp2FLJlsVfqVyv5L0dzYl-bMpIg,2687
|
|
3
3
|
arkitekt_next/apps/__init__.py,sha256=cx_5Y-RkJFkSQJH-hUEC_L3eW1jU2E426c4e6_csIyM,42
|
|
4
4
|
arkitekt_next/apps/service/__init__.py,sha256=p4iRwiFBKRq2lfbjDBzUR_GMhPWjkjWTa01ohuKz_L4,157
|
|
5
5
|
arkitekt_next/apps/service/fakts_next.py,sha256=WkGOf_Exc-se4uZXxlVy58YuTiztnfxuqOIEaLTnBH0,3135
|
|
@@ -9,7 +9,7 @@ arkitekt_next/apps/service/herre.py,sha256=y3Urlja0A8ZbrnVNnU6UuVMUtlOzIeatj51d0
|
|
|
9
9
|
arkitekt_next/apps/service/herre_qt.py,sha256=42APOZl0SnX0FWl6K-TC9CcZUO-BSXMXyH6B31A0y3U,1679
|
|
10
10
|
arkitekt_next/apps/service/local_fakts.py,sha256=Wy37fjsEP2yjKZPtMlLilNlkO0olFX_7P5IIr6g3jkE,2900
|
|
11
11
|
arkitekt_next/apps/types.py,sha256=Ri6-Cby8bh9JOvMsOLpDrbeVB9zp3L28D951vM2juT0,1459
|
|
12
|
-
arkitekt_next/base_models.py,sha256=
|
|
12
|
+
arkitekt_next/base_models.py,sha256=XyyFdkuAcCoI9Scc4dufHm42HLFYez6MhIheUdKTV8A,4225
|
|
13
13
|
arkitekt_next/bloks/__init__.py,sha256=_4EeR63d6avQUWLG4mK2n_FvogTPQ_Jx6f2_RvNbWeA,29
|
|
14
14
|
arkitekt_next/bloks/admin.py,sha256=mRTfjIR1vsfY1ghgjWLjKYFAOh1pGCmQ_IEt2QOR3og,1353
|
|
15
15
|
arkitekt_next/bloks/alpaka.py,sha256=d7m_qRJZUBdKmIQlWv51bhdvXtSXnRXwgAp1viLYVeM,1393
|
|
@@ -135,15 +135,15 @@ arkitekt_next/qt/assets/light/green pulse.gif,sha256=cUd2F3Qlvjb7SnsU-LjGgeLTa8K
|
|
|
135
135
|
arkitekt_next/qt/assets/light/orange pulse.gif,sha256=0gDvrRed0mzZZPHB4tP6vptx7myUCAa_hEVGdjRhNy8,94769
|
|
136
136
|
arkitekt_next/qt/assets/light/pink pulse.gif,sha256=rxd6ZTHSIG9JZuuHhi3jiSB_JYFBZpy7OWUeZETlhQ4,107513
|
|
137
137
|
arkitekt_next/qt/assets/light/red pulse.gif,sha256=U7WLbZvSl5e-Ob5RmawtlC0Rh9VVHxkjDbGjj7NYVUo,108749
|
|
138
|
-
arkitekt_next/qt/builders.py,sha256=
|
|
138
|
+
arkitekt_next/qt/builders.py,sha256=CnDnBqLcPXfV2tnuPhFnbPjIW0YlvxoQQYeXcBDa5KE,9176
|
|
139
139
|
arkitekt_next/qt/magic_bar.py,sha256=b3WS8vN9cwaDHzBMtiKpw2UQcZwO1dF0mCLbLffO-eo,17596
|
|
140
140
|
arkitekt_next/qt/types.py,sha256=_oo3XCSvP_iMp1bdPRxOGRrmeyHnBKTQsf86q09irL4,4043
|
|
141
141
|
arkitekt_next/qt/utils.py,sha256=MgBPtPmCSBkIuATov3UgREESwxAHh77lWNNxyE7Qs48,773
|
|
142
142
|
arkitekt_next/service_registry.py,sha256=gMXyFftwuSoda9V13QEiNqFuwSBB2ss62dOjnXOetK0,4973
|
|
143
143
|
arkitekt_next/tqdm.py,sha256=lQcJI5Q6Py7Gy88hOCiJujjPEEGd8G2k1mOVJJ6oYe8,1531
|
|
144
144
|
arkitekt_next/utils.py,sha256=Cf7B1-E7_NgBnV2vxIIfZRStiCYPopQqNJFjJwU3Uog,2403
|
|
145
|
-
arkitekt_next-0.8.
|
|
146
|
-
arkitekt_next-0.8.
|
|
147
|
-
arkitekt_next-0.8.
|
|
148
|
-
arkitekt_next-0.8.
|
|
149
|
-
arkitekt_next-0.8.
|
|
145
|
+
arkitekt_next-0.8.82.dist-info/LICENSE,sha256=YZ2oRjC248t-GpoEyw7J13vwKYNG6zhYMaEAix6EzF0,1089
|
|
146
|
+
arkitekt_next-0.8.82.dist-info/METADATA,sha256=mRVWiUXtOHbltBE2XKRbm8BsavAYOPNhzzXj6wAiGxw,6639
|
|
147
|
+
arkitekt_next-0.8.82.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
148
|
+
arkitekt_next-0.8.82.dist-info/entry_points.txt,sha256=-hxikQx4xZ6TiOnWVDOlTN_kcAISgGFvTHXIchsCHSc,60
|
|
149
|
+
arkitekt_next-0.8.82.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|