jaseci 1.4.2.5__py3-none-any.whl → 1.4.2.6__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 jaseci might be problematic. Click here for more details.
- jaseci/VERSION +1 -1
- jaseci/cli_tools/book_tools.py +10 -10
- jaseci/extens/act_lib/date.py +1 -0
- jaseci/extens/act_lib/file.py +1 -0
- jaseci/extens/act_lib/file_handler.py +1 -0
- jaseci/extens/act_lib/internal.py +1 -0
- jaseci/extens/act_lib/jaseci.py +1 -0
- jaseci/extens/act_lib/net.py +1 -0
- jaseci/extens/act_lib/rand.py +1 -0
- jaseci/extens/act_lib/request.py +1 -0
- jaseci/extens/act_lib/std.py +1 -0
- jaseci/extens/act_lib/stripe.py +1 -0
- jaseci/extens/act_lib/task.py +1 -0
- jaseci/extens/act_lib/url.py +1 -0
- jaseci/extens/act_lib/vector.py +1 -0
- jaseci/extens/act_lib/webtool.py +1 -0
- jaseci/extens/act_lib/zip.py +1 -0
- jaseci/extens/api/actions_api.py +1 -0
- jaseci/extens/api/alias_api.py +1 -0
- jaseci/extens/api/architype_api.py +1 -0
- jaseci/extens/api/global_api.py +1 -0
- jaseci/extens/api/graph_api.py +1 -0
- jaseci/extens/api/health_api.py +1 -0
- jaseci/extens/api/interface.py +1 -0
- jaseci/extens/api/jac_api.py +1 -0
- jaseci/extens/api/jsorc_api.py +1 -0
- jaseci/extens/api/logger_api.py +1 -0
- jaseci/extens/api/master_api.py +2 -1
- jaseci/extens/api/object_api.py +1 -0
- jaseci/extens/api/prometheus_api.py +1 -0
- jaseci/extens/api/queue_api.py +1 -0
- jaseci/extens/api/sentinel_api.py +1 -0
- jaseci/extens/api/share_api.py +64 -0
- jaseci/extens/api/super_api.py +1 -0
- jaseci/extens/api/user_api.py +22 -0
- jaseci/extens/api/walker_api.py +1 -0
- jaseci/extens/api/webhook_api.py +6 -3
- jaseci/extens/svc/elastic_svc.py +3 -3
- jaseci/jac/interpreter/architype_interp.py +11 -6
- jaseci/jac/interpreter/interp.py +1 -0
- jaseci/jac/interpreter/sentinel_interp.py +5 -2
- jaseci/jac/interpreter/walker_interp.py +1 -0
- jaseci/jac/ir/jac_code.py +2 -3
- jaseci/jac/jac_set.py +1 -0
- jaseci/jac/machine/jac_scope.py +1 -0
- jaseci/jac/machine/jac_value.py +1 -0
- jaseci/jac/machine/machine_state.py +6 -3
- jaseci/jsorc/live_actions.py +1 -0
- jaseci/jsorc/manifests/elastic.yaml +5 -0
- jaseci/jsorc/redis.py +1 -0
- jaseci/jsorc/remote_actions.py +1 -0
- jaseci/prim/ability.py +1 -0
- jaseci/prim/architype.py +1 -0
- jaseci/prim/edge.py +1 -0
- jaseci/prim/graph.py +1 -0
- jaseci/prim/master.py +3 -0
- jaseci/prim/node.py +1 -0
- jaseci/prim/obj_mixins.py +6 -3
- jaseci/prim/sentinel.py +1 -0
- jaseci/tests/test_stripe.py +3 -3
- jaseci/utils/actions/actions_optimizer.py +1 -0
- jaseci/utils/id_list.py +1 -0
- {jaseci-1.4.2.5.dist-info → jaseci-1.4.2.6.dist-info}/METADATA +2 -2
- {jaseci-1.4.2.5.dist-info → jaseci-1.4.2.6.dist-info}/RECORD +68 -67
- {jaseci-1.4.2.5.dist-info → jaseci-1.4.2.6.dist-info}/WHEEL +1 -1
- {jaseci-1.4.2.5.dist-info → jaseci-1.4.2.6.dist-info}/LICENSE +0 -0
- {jaseci-1.4.2.5.dist-info → jaseci-1.4.2.6.dist-info}/entry_points.txt +0 -0
- {jaseci-1.4.2.5.dist-info → jaseci-1.4.2.6.dist-info}/top_level.txt +0 -0
jaseci/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.4.2.
|
|
1
|
+
1.4.2.6
|
jaseci/cli_tools/book_tools.py
CHANGED
|
@@ -205,11 +205,11 @@ class Book:
|
|
|
205
205
|
auth_level = (
|
|
206
206
|
"public"
|
|
207
207
|
if j in Sm._public_api
|
|
208
|
-
else
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
208
|
+
else (
|
|
209
|
+
"user"
|
|
210
|
+
if j in Sm._private_api
|
|
211
|
+
else "admin" if j in Sm._admin_api else "cli_only"
|
|
212
|
+
)
|
|
213
213
|
)
|
|
214
214
|
break
|
|
215
215
|
if not found:
|
|
@@ -438,11 +438,11 @@ class modifiedBook:
|
|
|
438
438
|
auth_level = (
|
|
439
439
|
"public"
|
|
440
440
|
if j in Sm._public_api
|
|
441
|
-
else
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
441
|
+
else (
|
|
442
|
+
"user"
|
|
443
|
+
if j in Sm._private_api
|
|
444
|
+
else "admin" if j in Sm._admin_api else "cli_only"
|
|
445
|
+
)
|
|
446
446
|
)
|
|
447
447
|
break
|
|
448
448
|
if not found:
|
jaseci/extens/act_lib/date.py
CHANGED
jaseci/extens/act_lib/file.py
CHANGED
jaseci/extens/act_lib/jaseci.py
CHANGED
jaseci/extens/act_lib/net.py
CHANGED
|
@@ -7,6 +7,7 @@ accept lists that are exclusively composed of instances of defined
|
|
|
7
7
|
architype node and/or edges. Keep in mind that a \\lstinline{jac_set}
|
|
8
8
|
is simply a list that only contains such elements.
|
|
9
9
|
"""
|
|
10
|
+
|
|
10
11
|
from jaseci.jsorc.live_actions import jaseci_action
|
|
11
12
|
from jaseci.utils.utils import master_from_meta
|
|
12
13
|
from jaseci.jac.jac_set import JacSet
|
jaseci/extens/act_lib/rand.py
CHANGED
jaseci/extens/act_lib/request.py
CHANGED
jaseci/extens/act_lib/std.py
CHANGED
jaseci/extens/act_lib/stripe.py
CHANGED
jaseci/extens/act_lib/task.py
CHANGED
jaseci/extens/act_lib/url.py
CHANGED
jaseci/extens/act_lib/vector.py
CHANGED
jaseci/extens/act_lib/webtool.py
CHANGED
jaseci/extens/act_lib/zip.py
CHANGED
jaseci/extens/api/actions_api.py
CHANGED
jaseci/extens/api/alias_api.py
CHANGED
jaseci/extens/api/global_api.py
CHANGED
jaseci/extens/api/graph_api.py
CHANGED
jaseci/extens/api/health_api.py
CHANGED
jaseci/extens/api/interface.py
CHANGED
jaseci/extens/api/jac_api.py
CHANGED
jaseci/extens/api/jsorc_api.py
CHANGED
jaseci/extens/api/logger_api.py
CHANGED
jaseci/extens/api/master_api.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Master api as a mixin
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
from jaseci.extens.api.interface import Interface
|
|
5
6
|
from jaseci.utils.id_list import IdList
|
|
6
7
|
import uuid
|
|
@@ -72,7 +73,7 @@ class MasterApi:
|
|
|
72
73
|
def master_active_set(self, name: str):
|
|
73
74
|
"""
|
|
74
75
|
Sets the default master master should use
|
|
75
|
-
NOTE:
|
|
76
|
+
NOTE: Special handler included in general_interface_to_api
|
|
76
77
|
"""
|
|
77
78
|
mas = self.sub_master_ids.get_obj_by_name(name)
|
|
78
79
|
if not mas:
|
jaseci/extens/api/object_api.py
CHANGED
jaseci/extens/api/queue_api.py
CHANGED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Object sharing APIs
|
|
3
|
+
"""
|
|
4
|
+
from jaseci.extens.api.interface import Interface
|
|
5
|
+
from jaseci.prim.element import Element
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class ShareApi:
|
|
9
|
+
"""
|
|
10
|
+
Sharing APIs.
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
def __init__(self):
|
|
14
|
+
self.incoming = {}
|
|
15
|
+
|
|
16
|
+
@Interface.private_api()
|
|
17
|
+
def share_object(
|
|
18
|
+
self, receiver: str, objs: list[Element] = [], read_only: bool = True
|
|
19
|
+
):
|
|
20
|
+
"""
|
|
21
|
+
Sharing an object with a user
|
|
22
|
+
obj: The list of elements to share
|
|
23
|
+
receiver: master of the receiving user
|
|
24
|
+
read_only: if set true, the object shared will be shared as read-only
|
|
25
|
+
"""
|
|
26
|
+
# Get the master object by id
|
|
27
|
+
receiver_mast = self._h.get_obj(
|
|
28
|
+
caller_id=self.jid, item_id=receiver, override=True
|
|
29
|
+
)
|
|
30
|
+
|
|
31
|
+
for obj in objs:
|
|
32
|
+
# Grant read-only permission to the new user
|
|
33
|
+
self.object_perms_grant(obj, receiver_mast, read_only=read_only)
|
|
34
|
+
obj.save()
|
|
35
|
+
|
|
36
|
+
# Add the objet id to the receiver's incoming list
|
|
37
|
+
receiver_mast.incoming[str(obj.id)] = {"jid": self.jid, "name": self.name}
|
|
38
|
+
|
|
39
|
+
receiver_mast.save()
|
|
40
|
+
self.save()
|
|
41
|
+
|
|
42
|
+
return {
|
|
43
|
+
"objects": [str(obj) for obj in objs],
|
|
44
|
+
"sharer": str(self),
|
|
45
|
+
"receiver": str(receiver_mast),
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
@Interface.private_api()
|
|
49
|
+
def share_incoming_pop(self, obj_id: str):
|
|
50
|
+
"""
|
|
51
|
+
Remove an item from the incoming list
|
|
52
|
+
"""
|
|
53
|
+
try:
|
|
54
|
+
self.incoming.pop(obj_id)
|
|
55
|
+
return True
|
|
56
|
+
except Exception:
|
|
57
|
+
return None
|
|
58
|
+
|
|
59
|
+
@Interface.private_api()
|
|
60
|
+
def share_incoming_list(self):
|
|
61
|
+
"""
|
|
62
|
+
Get the incoming objects
|
|
63
|
+
"""
|
|
64
|
+
return self.incoming
|
jaseci/extens/api/super_api.py
CHANGED
jaseci/extens/api/user_api.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
User API
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
from jaseci.extens.api.interface import Interface
|
|
5
6
|
from jaseci.jsorc.jsorc import JsOrc
|
|
6
7
|
|
|
@@ -142,3 +143,24 @@ class UserApi:
|
|
|
142
143
|
Permanently delete master with given id
|
|
143
144
|
"""
|
|
144
145
|
pass
|
|
146
|
+
|
|
147
|
+
@Interface.private_api()
|
|
148
|
+
def user_search(
|
|
149
|
+
self,
|
|
150
|
+
name: str,
|
|
151
|
+
detailed: bool = False,
|
|
152
|
+
create_if_not_exist: bool = False,
|
|
153
|
+
create_fields: dict = {},
|
|
154
|
+
):
|
|
155
|
+
"""
|
|
156
|
+
Search for user and returns its master jid.
|
|
157
|
+
Create new one if the user doesn't already exist, optionally.
|
|
158
|
+
create_fields will be forwarded to the user create endpoint, including
|
|
159
|
+
password
|
|
160
|
+
global_init
|
|
161
|
+
global_init_ctx
|
|
162
|
+
other_fields
|
|
163
|
+
send_email
|
|
164
|
+
See the user_create API for more details.
|
|
165
|
+
"""
|
|
166
|
+
pass
|
jaseci/extens/api/walker_api.py
CHANGED
jaseci/extens/api/webhook_api.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Webhook API
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
from jaseci.extens.api.interface import Interface
|
|
5
6
|
from fastapi import HTTPException
|
|
6
7
|
from jaseci.jsorc.jsorc import JsOrc
|
|
@@ -55,9 +56,11 @@ class WebhookApi:
|
|
|
55
56
|
)
|
|
56
57
|
sentinel = self._h.get_obj(
|
|
57
58
|
master_id,
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
59
|
+
(
|
|
60
|
+
self._h.get_glob("GLOB_SENTINEL")
|
|
61
|
+
if sentinel_id == "global"
|
|
62
|
+
else sentinel_id
|
|
63
|
+
),
|
|
61
64
|
)
|
|
62
65
|
|
|
63
66
|
payload = {"event": req_body}
|
jaseci/extens/svc/elastic_svc.py
CHANGED
|
@@ -70,9 +70,9 @@ class ElasticService(JsOrc.CommonService):
|
|
|
70
70
|
"elastic",
|
|
71
71
|
metadata.get("namespace"),
|
|
72
72
|
)
|
|
73
|
-
self.config[
|
|
74
|
-
"auth"
|
|
75
|
-
|
|
73
|
+
self.config["auth"] = (
|
|
74
|
+
f'basic {b64encode(f"elastic:{auth}".encode()).decode()}'
|
|
75
|
+
)
|
|
76
76
|
|
|
77
77
|
self.app = Elastic(self.config)
|
|
78
78
|
self.app.health("timeout=1s")
|
|
@@ -4,6 +4,7 @@ Sentinel interpreter for jac code in AST form
|
|
|
4
4
|
This interpreter should be inhereted from the class that manages state
|
|
5
5
|
referenced through self.
|
|
6
6
|
"""
|
|
7
|
+
|
|
7
8
|
from jaseci.prim.node import Node
|
|
8
9
|
from jaseci.prim.edge import Edge
|
|
9
10
|
from jaseci.prim.walker import Walker
|
|
@@ -206,9 +207,13 @@ class ArchitypeInterp(Interp):
|
|
|
206
207
|
.get_jac_ast()
|
|
207
208
|
.kid[-1]
|
|
208
209
|
)
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
210
|
+
(
|
|
211
|
+
self.run_attr_block(super_jac_ast, item)
|
|
212
|
+
if not isinstance(item, Walker)
|
|
213
|
+
else self.run_walker_block(super_jac_ast, item)
|
|
214
|
+
)
|
|
215
|
+
(
|
|
216
|
+
self.run_attr_block(jac_ast, item)
|
|
217
|
+
if not isinstance(item, Walker)
|
|
218
|
+
else self.run_walker_block(jac_ast, item)
|
|
219
|
+
)
|
jaseci/jac/interpreter/interp.py
CHANGED
|
@@ -4,6 +4,7 @@ Interpreter for jac code in AST form
|
|
|
4
4
|
This interpreter should be inhereted from the class that manages state
|
|
5
5
|
referenced through self.
|
|
6
6
|
"""
|
|
7
|
+
|
|
7
8
|
from jaseci.jsorc.jsorc import JsOrc
|
|
8
9
|
from jaseci.extens.svc.task_svc import TaskService
|
|
9
10
|
from jaseci.utils.utils import is_jsonable, parse_str_token, uuid_re
|
|
@@ -4,6 +4,7 @@ Sentinel interpreter for jac code in AST form
|
|
|
4
4
|
This interpreter should be inhereted from the class that manages state
|
|
5
5
|
referenced through self.
|
|
6
6
|
"""
|
|
7
|
+
|
|
7
8
|
from jaseci.prim.architype import Architype
|
|
8
9
|
from jaseci.jac.interpreter.interp import Interp
|
|
9
10
|
from jaseci.utils.utils import parse_str_token
|
|
@@ -215,8 +216,10 @@ class SentinelInterp(Interp):
|
|
|
215
216
|
);
|
|
216
217
|
"""
|
|
217
218
|
kid = self.set_cur_ast(jac_ast)
|
|
218
|
-
|
|
219
|
-
kid[
|
|
219
|
+
(
|
|
220
|
+
self.run_multistring(kid[2])
|
|
221
|
+
if kid[1].name == "NAME"
|
|
222
|
+
else self.run_multistring(kid[1])
|
|
220
223
|
)
|
|
221
224
|
testcase = {
|
|
222
225
|
"name": kid[1].token_text() if kid[1].name == "NAME" else "",
|
|
@@ -4,6 +4,7 @@ Walker interpreter for jac code in AST form
|
|
|
4
4
|
This interpreter should be inhereted from the class that manages state
|
|
5
5
|
referenced through self.
|
|
6
6
|
"""
|
|
7
|
+
|
|
7
8
|
from jaseci.prim.node import Node
|
|
8
9
|
from jaseci.jac.interpreter.interp import Interp
|
|
9
10
|
from jaseci.jac.jac_set import JacSet
|
jaseci/jac/ir/jac_code.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Mix in for jac code object in Jaseci
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
import json
|
|
5
6
|
from jaseci.utils.utils import logger
|
|
6
7
|
from jaseci.jac.ir.ast_builder import JacAstBuilder
|
|
@@ -93,9 +94,7 @@ class JacCode:
|
|
|
93
94
|
self.code_ir = (
|
|
94
95
|
ir.strip()
|
|
95
96
|
if (isinstance(ir, str))
|
|
96
|
-
else json.dumps(ir)
|
|
97
|
-
if (isinstance(ir, dict))
|
|
98
|
-
else jac_ast_to_ir(ir)
|
|
97
|
+
else json.dumps(ir) if (isinstance(ir, dict)) else jac_ast_to_ir(ir)
|
|
99
98
|
)
|
|
100
99
|
self.code_sig = hashlib.md5(self.code_ir.encode()).hexdigest()
|
|
101
100
|
JacCode.refresh(self) # should disregard overloaded versions
|
jaseci/jac/jac_set.py
CHANGED
jaseci/jac/machine/jac_scope.py
CHANGED
jaseci/jac/machine/jac_value.py
CHANGED
|
@@ -4,6 +4,7 @@ Interpreter for jac code in AST form
|
|
|
4
4
|
This interpreter should be inhereted from the class that manages state
|
|
5
5
|
referenced through self.
|
|
6
6
|
"""
|
|
7
|
+
|
|
7
8
|
from copy import copy
|
|
8
9
|
from jaseci.utils.utils import logger, exc_stack_as_str_list, generate_stack_as_str_list
|
|
9
10
|
from jaseci.jsorc.live_actions import live_actions, load_preconfig_actions
|
|
@@ -99,9 +100,11 @@ class MachineState:
|
|
|
99
100
|
"u_calls": 0 if name in MachineState.recur_detect_set else 1,
|
|
100
101
|
"tot_time": self._jac_scope._total_time
|
|
101
102
|
+ (time.time() - self._jac_scope._start_time),
|
|
102
|
-
"cum_time":
|
|
103
|
-
|
|
104
|
-
|
|
103
|
+
"cum_time": (
|
|
104
|
+
0
|
|
105
|
+
if name in MachineState.recur_detect_set
|
|
106
|
+
else time.time() - self._jac_scope._cum_start_time
|
|
107
|
+
),
|
|
105
108
|
}
|
|
106
109
|
else:
|
|
107
110
|
c = self._mast._jac_profile[name]["calls"]
|
jaseci/jsorc/live_actions.py
CHANGED
|
@@ -5639,6 +5639,7 @@ spec:
|
|
|
5639
5639
|
serviceAccountName: elastic-operator
|
|
5640
5640
|
securityContext:
|
|
5641
5641
|
runAsNonRoot: true
|
|
5642
|
+
fsGroup: 65534
|
|
5642
5643
|
containers:
|
|
5643
5644
|
- image: "docker.elastic.co/eck/eck-operator:2.7.0"
|
|
5644
5645
|
imagePullPolicy: IfNotPresent
|
|
@@ -6000,6 +6001,10 @@ spec:
|
|
|
6000
6001
|
count: 1
|
|
6001
6002
|
config:
|
|
6002
6003
|
node.store.allow_mmap: false
|
|
6004
|
+
http.cors.enabled: true
|
|
6005
|
+
http.cors.allow-origin: "*"
|
|
6006
|
+
http.cors.allow-methods: OPTIONS, POST, GET
|
|
6007
|
+
http.cors.allow-headers: X-Requested-With, X-Auth-Token, Content-Type, Content-Length, Authorization, Access-Control-Allow-Headers, Accept
|
|
6003
6008
|
volumeClaimTemplates:
|
|
6004
6009
|
- metadata:
|
|
6005
6010
|
name: elasticsearch-data
|
jaseci/jsorc/redis.py
CHANGED
jaseci/jsorc/remote_actions.py
CHANGED
jaseci/prim/ability.py
CHANGED
jaseci/prim/architype.py
CHANGED
|
@@ -4,6 +4,7 @@ Architype class for Jaseci
|
|
|
4
4
|
Each architype is a registered templatized version of instances of any Jaseci
|
|
5
5
|
abstractions or collections of instances (e.g., subgraphs, etc)
|
|
6
6
|
"""
|
|
7
|
+
|
|
7
8
|
from jaseci.prim.element import Element
|
|
8
9
|
from jaseci.jac.interpreter.architype_interp import ArchitypeInterp
|
|
9
10
|
from jaseci.jac.ir.jac_code import JacCode
|
jaseci/prim/edge.py
CHANGED
|
@@ -4,6 +4,7 @@ Edge class for Jaseci
|
|
|
4
4
|
Each edge has an id, name, timestamp, the from node at the element of the edge
|
|
5
5
|
and the to node it is pointing to.
|
|
6
6
|
"""
|
|
7
|
+
|
|
7
8
|
from jaseci.prim.element import Element
|
|
8
9
|
from jaseci.prim.obj_mixins import Anchored
|
|
9
10
|
from jaseci.utils.utils import logger
|
jaseci/prim/graph.py
CHANGED
jaseci/prim/master.py
CHANGED
|
@@ -17,6 +17,7 @@ from jaseci.extens.api.jac_api import JacApi
|
|
|
17
17
|
from jaseci.extens.api.user_api import UserApi
|
|
18
18
|
from jaseci.extens.api.queue_api import QueueApi
|
|
19
19
|
from jaseci.extens.api.webhook_api import WebhookApi
|
|
20
|
+
from jaseci.extens.api.share_api import ShareApi
|
|
20
21
|
from jaseci.extens.api.health_api import HealthApi
|
|
21
22
|
from jaseci.jsorc.jsorc import JsOrc
|
|
22
23
|
|
|
@@ -36,6 +37,7 @@ class Master(
|
|
|
36
37
|
UserApi,
|
|
37
38
|
QueueApi,
|
|
38
39
|
WebhookApi,
|
|
40
|
+
ShareApi,
|
|
39
41
|
HealthApi,
|
|
40
42
|
):
|
|
41
43
|
"""Main class for master functions for user"""
|
|
@@ -51,6 +53,7 @@ class Master(
|
|
|
51
53
|
GraphApi.__init__(self)
|
|
52
54
|
WalkerApi.__init__(self)
|
|
53
55
|
SentinelApi.__init__(self)
|
|
56
|
+
ShareApi.__init__(self)
|
|
54
57
|
Interface.__init__(self)
|
|
55
58
|
|
|
56
59
|
def destroy(self):
|
jaseci/prim/node.py
CHANGED
|
@@ -4,6 +4,7 @@ Node class for Jaseci
|
|
|
4
4
|
Each node has an id, name, timestamp and it's set of edges.
|
|
5
5
|
First node in list of 'member_node_ids' is designated root node
|
|
6
6
|
"""
|
|
7
|
+
|
|
7
8
|
from collections import OrderedDict
|
|
8
9
|
from jaseci.prim.element import Element
|
|
9
10
|
from jaseci.prim.obj_mixins import Anchored
|
jaseci/prim/obj_mixins.py
CHANGED
|
@@ -3,6 +3,7 @@ Jaseci object mixins
|
|
|
3
3
|
|
|
4
4
|
Various mixins to define properties of Jaseci objects
|
|
5
5
|
"""
|
|
6
|
+
|
|
6
7
|
from jaseci.utils.id_list import IdList
|
|
7
8
|
from jaseci.utils.utils import logger
|
|
8
9
|
import uuid
|
|
@@ -80,9 +81,11 @@ class Sharable:
|
|
|
80
81
|
self.j_access = (
|
|
81
82
|
mode
|
|
82
83
|
if mode is not None
|
|
83
|
-
else
|
|
84
|
-
|
|
85
|
-
|
|
84
|
+
else (
|
|
85
|
+
self._h.get_obj(self._m_id, self._m_id).perm_default
|
|
86
|
+
if self._h.has_obj(self._m_id)
|
|
87
|
+
else "private"
|
|
88
|
+
)
|
|
86
89
|
)
|
|
87
90
|
self.j_r_acc_ids = IdList(self)
|
|
88
91
|
self.j_rw_acc_ids = IdList(self)
|
jaseci/prim/sentinel.py
CHANGED
jaseci/tests/test_stripe.py
CHANGED
|
@@ -13,9 +13,9 @@ class StripeTests(CoreTest):
|
|
|
13
13
|
def setUpClass(cls):
|
|
14
14
|
config = JsOrc.settings("STRIPE_CONFIG")
|
|
15
15
|
config["enabled"] = True
|
|
16
|
-
config[
|
|
17
|
-
"
|
|
18
|
-
|
|
16
|
+
config["api_key"] = (
|
|
17
|
+
"sk_test_51JWUIeCZO78n7fsZnPvualWhmJg1DcCI332kKnWF3q2sKGwnPADjEmNblfFWi4pWAWPuJwHxpeSoJGc0J5ButHN900Q2xBz1se"
|
|
18
|
+
)
|
|
19
19
|
config["webhook_key"] = "test_webhook_key"
|
|
20
20
|
|
|
21
21
|
JsOrc.svc_reset("stripe")
|
jaseci/utils/id_list.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: jaseci
|
|
3
|
-
Version: 1.4.2.
|
|
3
|
+
Version: 1.4.2.6
|
|
4
4
|
Home-page: https://github.com/Jaseci-Labs/jaseci
|
|
5
5
|
Author: Jason Mars
|
|
6
6
|
Author-email: jason@jaseci.org
|
|
@@ -21,7 +21,7 @@ Requires-Dist: pydantic <2.0.0
|
|
|
21
21
|
Requires-Dist: docstring-parser
|
|
22
22
|
Requires-Dist: prometheus-api-client ==0.5.1
|
|
23
23
|
Requires-Dist: prometheus-client ==0.14.1
|
|
24
|
-
Requires-Dist: kubernetes ==
|
|
24
|
+
Requires-Dist: kubernetes ==21.7.0
|
|
25
25
|
Requires-Dist: pytest
|
|
26
26
|
Requires-Dist: pytest-xdist
|
|
27
27
|
Requires-Dist: pytest-cov
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
jaseci/VERSION,sha256=
|
|
1
|
+
jaseci/VERSION,sha256=u8ecqIS4qYJnCQwkghT56u8HDTXK1_X5MCz3XB_JesY,8
|
|
2
2
|
jaseci/__init__.py,sha256=tFVuF0i901L-YymidhuSjyE24IWOhIiJA5G18DuAP2g,1246
|
|
3
3
|
jaseci/cli_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
jaseci/cli_tools/book_tools.py,sha256=
|
|
4
|
+
jaseci/cli_tools/book_tools.py,sha256=89jHc_Aty2zCEcWtM8JIwwWm8Jq14VedpktcZt0k_vI,16135
|
|
5
5
|
jaseci/cli_tools/jsctl.py,sha256=Wgz6sdUFwefce83bLZvlCjkcm4jjnUbYiUXucsB746A,14869
|
|
6
6
|
jaseci/cli_tools/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
jaseci/cli_tools/tests/test_jsctl.py,sha256=4wI6hHNn-j3ePqLcVtWmGVlrCAQTJ5Wcl0vgsezK1Nw,21548
|
|
8
8
|
jaseci/extens/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
9
|
jaseci/extens/act_lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
-
jaseci/extens/act_lib/date.py,sha256=
|
|
10
|
+
jaseci/extens/act_lib/date.py,sha256=nchez2S3TVIcNzD4HvVfZ5JeumrZZrp5CUW0L2rIXw0,3116
|
|
11
11
|
jaseci/extens/act_lib/elastic.py,sha256=msl2F_NyOsiZahGQRY2NdZ2lqYfwa_vHQ65pJA9DJaU,2193
|
|
12
|
-
jaseci/extens/act_lib/file.py,sha256=
|
|
13
|
-
jaseci/extens/act_lib/file_handler.py,sha256=
|
|
14
|
-
jaseci/extens/act_lib/internal.py,sha256=
|
|
15
|
-
jaseci/extens/act_lib/jaseci.py,sha256=
|
|
12
|
+
jaseci/extens/act_lib/file.py,sha256=Bv8z1tXFnmye_xQOeLc5hDNM_urO2-bJ24TnLQiHIUQ,1988
|
|
13
|
+
jaseci/extens/act_lib/file_handler.py,sha256=jY8gMj-CKxq4Xhn6b1tn53rXInkzGWcIQbb2Aa7G-As,4788
|
|
14
|
+
jaseci/extens/act_lib/internal.py,sha256=uKz_8_vwnUk-alkNVKNu1BS3EiyfBcLcshsbbZhjM0Y,482
|
|
15
|
+
jaseci/extens/act_lib/jaseci.py,sha256=P68Z5xZ4Cyjbig2sP-yQc_Ww0hJxMgsfZSnjZsl5Drw,1697
|
|
16
16
|
jaseci/extens/act_lib/mail.py,sha256=VwJMmOYYUVSewYS74EX5PZTvM5h43_37JQBcK9tukiU,315
|
|
17
17
|
jaseci/extens/act_lib/maths.py,sha256=fmqmiD_b7pUkHXZT7mt9th5QzvLmTFE_eO_UB3rN4Sk,2427
|
|
18
|
-
jaseci/extens/act_lib/net.py,sha256=
|
|
19
|
-
jaseci/extens/act_lib/rand.py,sha256=
|
|
18
|
+
jaseci/extens/act_lib/net.py,sha256=evBoQZx9rJFkf4wa9Omw6fDVEVe5WYZ01WVyaC53sKc,7163
|
|
19
|
+
jaseci/extens/act_lib/rand.py,sha256=eFiw8N4puBhj0M1PjWXdxkL7_mt_SWgcSDm11I3rcRU,2120
|
|
20
20
|
jaseci/extens/act_lib/regex.py,sha256=bY8cpdNf-uYknQwAP2B4EBv9pvtnbhmdd5jBlB3QHQ4,2050
|
|
21
|
-
jaseci/extens/act_lib/request.py,sha256=
|
|
22
|
-
jaseci/extens/act_lib/std.py,sha256=
|
|
21
|
+
jaseci/extens/act_lib/request.py,sha256=_-wBYaDeqCGl8HgYOptRXbQWftPc-Yh7CUYoR33OD-o,3954
|
|
22
|
+
jaseci/extens/act_lib/std.py,sha256=NFbd6Bzi-3SlUa-ePlKBKn2BaSsc4o16_6g-4Vex9kE,5960
|
|
23
23
|
jaseci/extens/act_lib/storage.py,sha256=1IzlL4byJYeBAY-ExAYqQHQjWSwGbNqs-mi70HOpjNQ,1509
|
|
24
|
-
jaseci/extens/act_lib/stripe.py,sha256=
|
|
25
|
-
jaseci/extens/act_lib/task.py,sha256=
|
|
26
|
-
jaseci/extens/act_lib/url.py,sha256=
|
|
27
|
-
jaseci/extens/act_lib/vector.py,sha256=
|
|
28
|
-
jaseci/extens/act_lib/webtool.py,sha256=
|
|
29
|
-
jaseci/extens/act_lib/zip.py,sha256=
|
|
24
|
+
jaseci/extens/act_lib/stripe.py,sha256=D4Ko9M4dMwhu_sYwinUmDFV_g4HmRjhnKBZXfwTtd80,8191
|
|
25
|
+
jaseci/extens/act_lib/task.py,sha256=vKTywtle3uXfPCiBeuUB2PkFd6Cyxa1ASOJqrWjbNtg,377
|
|
26
|
+
jaseci/extens/act_lib/url.py,sha256=aEYsggGHnES0Lj3nq5UIx9SzO0sY7qfdixJ2ai-GhjE,1852
|
|
27
|
+
jaseci/extens/act_lib/vector.py,sha256=9qfVVOghnk25-IzTIEE-XWA_tbOlsrVA4mojB8-5h5c,4637
|
|
28
|
+
jaseci/extens/act_lib/webtool.py,sha256=vAAZanXn_EvhYzsRFZZPD3ZoJZOHALZfiqt6mTr0cA8,940
|
|
29
|
+
jaseci/extens/act_lib/zip.py,sha256=NXWr95angQZ9YZPRbOLZ4PuMVEo-KAHv5AX2lfzhLlw,943
|
|
30
30
|
jaseci/extens/act_lib/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
31
|
jaseci/extens/act_lib/tests/std_test_code.py,sha256=_pXoqkD4_s2LQHQBs_FFphYseJ5mCaPSe_LDvLW6p_Y,782
|
|
32
32
|
jaseci/extens/act_lib/tests/test_date.py,sha256=K9W3WsjuBWzv--b6bv0oDyjkJt0htDnvB9anxzQMjbk,741
|
|
@@ -44,26 +44,27 @@ jaseci/extens/act_lib/tests/test_vector.py,sha256=Lte-EZnheAGiJUpCE0mlXzhCH3dTMW
|
|
|
44
44
|
jaseci/extens/act_lib/tests/test_webtool.py,sha256=BfRQOdCUk3ciZj_wP6yzxVevcieqH5fQ6NhnbhllBH8,1529
|
|
45
45
|
jaseci/extens/act_lib/tests/test_zlib.py,sha256=iG5FRkUsUDfJWKEhrgAJ21HWNZRfiWxGrctsZXpSxPw,840
|
|
46
46
|
jaseci/extens/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
|
-
jaseci/extens/api/actions_api.py,sha256=
|
|
48
|
-
jaseci/extens/api/alias_api.py,sha256=
|
|
49
|
-
jaseci/extens/api/architype_api.py,sha256=
|
|
47
|
+
jaseci/extens/api/actions_api.py,sha256=ATLa8SzB4m2AkVN_FA-rQ4QKtVc4iVYSP-kTenH0AHU,6924
|
|
48
|
+
jaseci/extens/api/alias_api.py,sha256=yqt4t9_BxoZXqZogAfGU46e0DmZqQt7ADeix2ynkLuA,5158
|
|
49
|
+
jaseci/extens/api/architype_api.py,sha256=FFqT3ay2Xh-iHKXvPp5wSfxNs4pCcrXZXRCaGMSH8a0,7238
|
|
50
50
|
jaseci/extens/api/config_api.py,sha256=OgIkXUKc34HfgetmHtJxKMae8sB2XCl66kI8brtarb0,3581
|
|
51
|
-
jaseci/extens/api/global_api.py,sha256=
|
|
52
|
-
jaseci/extens/api/graph_api.py,sha256=
|
|
53
|
-
jaseci/extens/api/health_api.py,sha256
|
|
54
|
-
jaseci/extens/api/interface.py,sha256=
|
|
55
|
-
jaseci/extens/api/jac_api.py,sha256=
|
|
56
|
-
jaseci/extens/api/jsorc_api.py,sha256=
|
|
57
|
-
jaseci/extens/api/logger_api.py,sha256=
|
|
58
|
-
jaseci/extens/api/master_api.py,sha256=
|
|
59
|
-
jaseci/extens/api/object_api.py,sha256
|
|
60
|
-
jaseci/extens/api/prometheus_api.py,sha256=
|
|
61
|
-
jaseci/extens/api/queue_api.py,sha256=
|
|
62
|
-
jaseci/extens/api/sentinel_api.py,sha256=
|
|
63
|
-
jaseci/extens/api/
|
|
64
|
-
jaseci/extens/api/
|
|
65
|
-
jaseci/extens/api/
|
|
66
|
-
jaseci/extens/api/
|
|
51
|
+
jaseci/extens/api/global_api.py,sha256=cRIbqgb7A7LWCXstYwwBVpOsvlgYoNJJdvqUJVFh_64,2686
|
|
52
|
+
jaseci/extens/api/graph_api.py,sha256=yWMX-66e7M6Ie5kXt0i0zSuNgPOhSjDPQNiMXMqTzoY,5075
|
|
53
|
+
jaseci/extens/api/health_api.py,sha256=-xssJYWy2Fk-SSyC4gLCgqlPs-pR7yufybt6pnUKiGw,408
|
|
54
|
+
jaseci/extens/api/interface.py,sha256=d68mnfrcL7ModkBkctrL0BGG5SojcgDTiHsRUGUJrG4,9588
|
|
55
|
+
jaseci/extens/api/jac_api.py,sha256=wMg3BO2Jd5T3QU5b5Y7tF9yW2V7BufMaeRCt8lZ04W0,5817
|
|
56
|
+
jaseci/extens/api/jsorc_api.py,sha256=FAlqAknt-fLpWbQIZYicfACd2jw67lXn8XYCMg1YT1E,10168
|
|
57
|
+
jaseci/extens/api/logger_api.py,sha256=365E7CeYQoOKJScqCYnRzeq0l6_Fa6SY4c6XaStzEhs,2806
|
|
58
|
+
jaseci/extens/api/master_api.py,sha256=GDAyvz9rrJw6L6dcabBYNgN9eebG5NxFuJR23V-2b7Q,4143
|
|
59
|
+
jaseci/extens/api/object_api.py,sha256=6yPX240qW-XOL03f-y5pEDVWT835Jj8vEOC1qDJMkvU,3641
|
|
60
|
+
jaseci/extens/api/prometheus_api.py,sha256=1z1op0b47RFpXyb1JU8T-R8LwadTrMRpMjhpwLAKRCs,1743
|
|
61
|
+
jaseci/extens/api/queue_api.py,sha256=1FuK_Q4HfbxVlFjIsxuB3C3DBGunzaPa4ynrKd9xdmw,5436
|
|
62
|
+
jaseci/extens/api/sentinel_api.py,sha256=QwNoNobvgxiTAIsc4xWWCIu8HdXis9hzOCz_SthE0BQ,9633
|
|
63
|
+
jaseci/extens/api/share_api.py,sha256=7IZR-t4SYm3f8HJ0z04EJMyqPj35REgc9-6xZ90SHDg,1705
|
|
64
|
+
jaseci/extens/api/super_api.py,sha256=JYdj5kMz7gTMx-LkPyw3KNBjyWBrAKdDg7foK1RzU_c,1999
|
|
65
|
+
jaseci/extens/api/user_api.py,sha256=d-tH52b_LTG3dxklQ6ZXh-qrR0i6ROW-C7aO_7C3JUY,6059
|
|
66
|
+
jaseci/extens/api/walker_api.py,sha256=yH94Quw_VzzoxPDpWTiO5TtfL8iZYwEyiEqdn_47D9Q,9557
|
|
67
|
+
jaseci/extens/api/webhook_api.py,sha256=_iQo6lmDbfUHi1yr2ccEr95UPZ4-v-vbUMaPwi63cNc,2424
|
|
67
68
|
jaseci/extens/api/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
69
|
jaseci/extens/api/tests/test_architype_api.py,sha256=zq3_lwFQUWC8ZULWX-pWsR9MP7PgZrB_C9dqdlyAJUY,1820
|
|
69
70
|
jaseci/extens/api/tests/test_global_api.py,sha256=qmQMHCAOpwhcEhsTgQnpdqCJrnaTAtP56Ns4ca0PNuc,6742
|
|
@@ -75,7 +76,7 @@ jaseci/extens/api/tests/test_uncommon.py,sha256=x6JB9tGcD1IIQEOoYuXDO6HCbBji7ynL
|
|
|
75
76
|
jaseci/extens/api/tests/test_user_api.py,sha256=4MXXjd48uRbZs0CvEkuVIisCjIM4QrIiARt3mgafXGk,873
|
|
76
77
|
jaseci/extens/api/tests/test_walker_api.py,sha256=KgWNP5hP4niiMDG0pAoJWPu-thhSarcj6X7MN3BMWJw,12622
|
|
77
78
|
jaseci/extens/svc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
78
|
-
jaseci/extens/svc/elastic_svc.py,sha256=
|
|
79
|
+
jaseci/extens/svc/elastic_svc.py,sha256=L0Nt8ywN27tDozzXHqY4nrx2_z6yjuoqJYeq8G1PYNo,13463
|
|
79
80
|
jaseci/extens/svc/kube_svc.py,sha256=fmD2_DqWbbrxAbmmtBvHJGjxW9donbHdyqvcD8SOF5E,16859
|
|
80
81
|
jaseci/extens/svc/mail_svc.py,sha256=g7lvUpEDc8mEYIE4cs_Kh3oPp7CAKd437Kgtklo0f8I,5064
|
|
81
82
|
jaseci/extens/svc/prome_svc.py,sha256=btnYPRI7gFoXzbp0-VJDQn1O4RR8sPlT0iPJpjBkRZ4,12467
|
|
@@ -86,18 +87,18 @@ jaseci/extens/svc/task_svc.py,sha256=suIhfwo0GFPhILKaxkkKLAzqVFNYoKo1M9Q1cCZDzYI
|
|
|
86
87
|
jaseci/extens/svc/tasks.py,sha256=EXE1nTwxbCbEKkHPavZ3dwDudcaA36_ydMj85_Zu8ZE,10588
|
|
87
88
|
jaseci/jac/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
88
89
|
jaseci/jac/jac.g4,sha256=Nr-M3lxfr4nd4VQwxdcQYid6mg-TPMngU1ZW3trvUFE,8916
|
|
89
|
-
jaseci/jac/jac_set.py,sha256=
|
|
90
|
+
jaseci/jac/jac_set.py,sha256=7AHzMMsp8y6SWwa6A0M_Jx8hfBPzk4tCZfOUrkntnbA,3358
|
|
90
91
|
jaseci/jac/interpreter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
|
-
jaseci/jac/interpreter/architype_interp.py,sha256=
|
|
92
|
-
jaseci/jac/interpreter/interp.py,sha256=
|
|
93
|
-
jaseci/jac/interpreter/sentinel_interp.py,sha256=
|
|
94
|
-
jaseci/jac/interpreter/walker_interp.py,sha256=
|
|
92
|
+
jaseci/jac/interpreter/architype_interp.py,sha256=p3um19HY8Hs2CnrVaNO_vzK_Hyz4v1FPzNv3xC2_00s,7431
|
|
93
|
+
jaseci/jac/interpreter/interp.py,sha256=K8J_kztaO-3aJDxrp0Oe3rbKt44JjwJu-NInagyg7gM,67273
|
|
94
|
+
jaseci/jac/interpreter/sentinel_interp.py,sha256=6ASYzurbdmNZU5x4cbFlIaLWtkL5ZeqB6nv4JuzRnUs,9441
|
|
95
|
+
jaseci/jac/interpreter/walker_interp.py,sha256=il_J347sK4JB66Z64rpqcel128tFoPCPRsJ0gErfMF4,8452
|
|
95
96
|
jaseci/jac/interpreter/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
97
|
jaseci/jac/interpreter/tests/test_interp.py,sha256=sQGSZNrQgLuEp-PaE8w5urMIM1I4zEFLcug84HEnh0o,1546
|
|
97
98
|
jaseci/jac/ir/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
98
99
|
jaseci/jac/ir/ast.py,sha256=tvG-rr1OqxsLSbQ6dAn1j43iX8xxaQBZQrdfHVKdEjM,1759
|
|
99
100
|
jaseci/jac/ir/ast_builder.py,sha256=jh0BKyBDzlDgE59twB9tm-dOjj2I0fnH4gUSSI_I5dE,8399
|
|
100
|
-
jaseci/jac/ir/jac_code.py,sha256=
|
|
101
|
+
jaseci/jac/ir/jac_code.py,sha256=uYs7RAoIqDfRkBwxg-yVXHfa6JeITgRqdlUfeTh3hlw,4578
|
|
101
102
|
jaseci/jac/ir/passes/__init__.py,sha256=SWns4N_ZDV4iGUGoH0kvcq-DwdSSDCNRfbnEYwPdXmU,393
|
|
102
103
|
jaseci/jac/ir/passes/ast_prune_pass.py,sha256=w9hLg6H9g2FVOsnu2PPCW6HPjNuYQ96kPY_7pOFqJaA,331
|
|
103
104
|
jaseci/jac/ir/passes/codegen_pass.py,sha256=YzuhxFpad3yqdzZWfbjz-5lrkZe_OIYjGAGbk7oQplI,9375
|
|
@@ -118,9 +119,9 @@ jaseci/jac/jsci_vm/op_codes.py,sha256=h6DzvXw_9J5Uwvu8qIeZvfXmAyrXIpYHwB4MSsoE80
|
|
|
118
119
|
jaseci/jac/jsci_vm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
119
120
|
jaseci/jac/jsci_vm/tests/test_codegen.py,sha256=sqBPy2qkQ8UWxUap4ZF5YJ3_RYzEXvFABxFMTwEJCiU,1116
|
|
120
121
|
jaseci/jac/machine/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
121
|
-
jaseci/jac/machine/jac_scope.py,sha256=
|
|
122
|
-
jaseci/jac/machine/jac_value.py,sha256=
|
|
123
|
-
jaseci/jac/machine/machine_state.py,sha256=
|
|
122
|
+
jaseci/jac/machine/jac_scope.py,sha256=OrR6592TlFWdFaBahGD6WnTlXGi_Y1E87_o5pnAS520,2935
|
|
123
|
+
jaseci/jac/machine/jac_value.py,sha256=HX16_5dNia3nxECPxVQBHnsqRgM9Ab_EMom-ARXIJMA,6900
|
|
124
|
+
jaseci/jac/machine/machine_state.py,sha256=HXnqYrCl6kaxcNZJHzcY6S5LKNteCcC3QMQ4K0sd3tk,13656
|
|
124
125
|
jaseci/jac/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
125
126
|
jaseci/jac/tests/book_code.py,sha256=VZ_WL9dLGhK7wuZtAvgW6_rDC1OluiHZXuu7pX77njI,13323
|
|
126
127
|
jaseci/jac/tests/test_book.py,sha256=7P5YSSq7HUxNl6KmFh6UM2ZYsBaq-If06KpN0o618YY,13870
|
|
@@ -129,28 +130,28 @@ jaseci/jsorc/__init__.py,sha256=575FXvIbY1S4j1idZn7iqc8z3Gvo1A7FPZNA_1I5Ru4,134
|
|
|
129
130
|
jaseci/jsorc/jsorc.py,sha256=0_7sqFZjyScmQpXpV08ILEnNbx7V0C3ia-KqGt_rlQA,22563
|
|
130
131
|
jaseci/jsorc/jsorc_settings.py,sha256=eUYEt4CNoPfvHMSYqUtyggQi6snSX7kwwW0ECnOEp_0,8915
|
|
131
132
|
jaseci/jsorc/jsorc_utils.py,sha256=FruDc5qEwQA09qCCSCyifpyPtrGs_X-OqAPUeaGMj-A,9296
|
|
132
|
-
jaseci/jsorc/live_actions.py,sha256=
|
|
133
|
+
jaseci/jsorc/live_actions.py,sha256=p3A3XQpBhUYVyMWKkp6PEV5Uc2UJslB3CNthCqBxFbY,12303
|
|
133
134
|
jaseci/jsorc/memory.py,sha256=_2KQzlRncJby-iZ1fOHd8v4NA4PelD67zCSkvH0P0YA,8265
|
|
134
|
-
jaseci/jsorc/redis.py,sha256=
|
|
135
|
-
jaseci/jsorc/remote_actions.py,sha256=
|
|
135
|
+
jaseci/jsorc/redis.py,sha256=1lzzsmazezI8EFOS2GKNZIa2iLTQu2HN7PAVTRXeOTU,4537
|
|
136
|
+
jaseci/jsorc/remote_actions.py,sha256=Yx2q5go52CuC3Z8aCU75tEMcMdcnbhG9L6-yUkCwMpM,4966
|
|
136
137
|
jaseci/jsorc/manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
137
138
|
jaseci/jsorc/manifests/database.yaml,sha256=T3lDD4s2QR1oKpsc_vihgvzhaYVOfsxPlv8YhQcGLZ4,2234
|
|
138
|
-
jaseci/jsorc/manifests/elastic.yaml,sha256=
|
|
139
|
+
jaseci/jsorc/manifests/elastic.yaml,sha256=dci48gGyILWV-Y3dNPnGSQw-ejQXdsUICqWThaCACBo,484420
|
|
139
140
|
jaseci/jsorc/manifests/prometheus.yaml,sha256=QqmL39UEcwO5V1NjyhZZtQHgQuPgQELB7OemnlD7v1Y,37855
|
|
140
141
|
jaseci/jsorc/manifests/redis.yaml,sha256=Rc-0fjjDInPZVRMb0R2eElT_C8jPJUqtTi1yq7rH-PU,1305
|
|
141
142
|
jaseci/jsorc/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
142
143
|
jaseci/jsorc/tests/test_actions.py,sha256=AYZG5-W6VexH_OctUqqJqpVYZxPABgT-8Mi-Pycvsao,16275
|
|
143
144
|
jaseci/jsorc/tests/test_jsorc.py,sha256=HAwDmI7NuuUJrFFdADYjpCCnr58cd9qPy1AZQ-wsH3s,4054
|
|
144
145
|
jaseci/prim/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
145
|
-
jaseci/prim/ability.py,sha256=
|
|
146
|
-
jaseci/prim/architype.py,sha256=
|
|
147
|
-
jaseci/prim/edge.py,sha256=
|
|
146
|
+
jaseci/prim/ability.py,sha256=0yr29Qlrm0uyXRmNeyy1qh4GpX93ioxzRLffcVHisQg,3205
|
|
147
|
+
jaseci/prim/architype.py,sha256=7pVpBBJCly3aRWvaUMmgj40QOYQNdNFffD7-pUCKiMY,2707
|
|
148
|
+
jaseci/prim/edge.py,sha256=QNRnZTQBFLuiQUw99q5-J3DieGniy61Z1z8S72gDzBI,5170
|
|
148
149
|
jaseci/prim/element.py,sha256=XFGw0vVFdIe-KkBMILYWI-KkaltASdo6nm9NHLPYfSo,7669
|
|
149
|
-
jaseci/prim/graph.py,sha256=
|
|
150
|
-
jaseci/prim/master.py,sha256=
|
|
151
|
-
jaseci/prim/node.py,sha256=
|
|
152
|
-
jaseci/prim/obj_mixins.py,sha256=
|
|
153
|
-
jaseci/prim/sentinel.py,sha256=
|
|
150
|
+
jaseci/prim/graph.py,sha256=I7uuuBvGK4JAbcj1u1i0EiQJ4IUXYGfHJsDKlmARRxQ,597
|
|
151
|
+
jaseci/prim/master.py,sha256=ogjKkh2Nkn3YeKRSoVpOU4Fn-0p2zdPaEZhUmG7WXIA,1996
|
|
152
|
+
jaseci/prim/node.py,sha256=VT3U4B1NNdWsXVblE5xzj7mEmLrBFyYMtlgXsqmLXak,18288
|
|
153
|
+
jaseci/prim/obj_mixins.py,sha256=_OpnALlP18_89_4RXnBP6OCMZojAk8uOe7hnyBQpFXs,7327
|
|
154
|
+
jaseci/prim/sentinel.py,sha256=27ts4-eZvcEuP52ASzKguAY0jTROeQ7heziYemoTzv8,9532
|
|
154
155
|
jaseci/prim/super_master.py,sha256=KHSD1YoF1OKWw3ob8qdS9Amxf38N0FpYfCkT1mk_DDQ,852
|
|
155
156
|
jaseci/prim/walker.py,sha256=gUCOiqdM6YaZpoSMUPErpb4UwDrQoa-DhqfwEVqACSw,8884
|
|
156
157
|
jaseci/svc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -163,22 +164,22 @@ jaseci/tests/test_jac.py,sha256=bE6FLhLV0-TnxLlS7HdPxe65wMj65Pa_qGLySpuVIJA,3275
|
|
|
163
164
|
jaseci/tests/test_node.py,sha256=tXnRbc3lHGPidzE45BIF1LiTkC5aB5idxbyzRj06Ufs,3710
|
|
164
165
|
jaseci/tests/test_progs.py,sha256=URIOMa17JhBOP2navnepYQo54H2IltSLy-p9K5nQn54,25401
|
|
165
166
|
jaseci/tests/test_stack.py,sha256=CrNbcRpRA5jhQw44wKsjWwfgbMXodJglY48TyoNYu5U,8453
|
|
166
|
-
jaseci/tests/test_stripe.py,sha256=
|
|
167
|
+
jaseci/tests/test_stripe.py,sha256=Bzz-TjP4QKi4BXWxulhAGAyX9TFR4-5Gt2o9MZKM4pU,8913
|
|
167
168
|
jaseci/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
168
169
|
jaseci/utils/file_handler.py,sha256=b1_zCVO37h1eKjaa_P9jKkx0lwJfrsWKRGkv68lYpY8,4797
|
|
169
170
|
jaseci/utils/gprof2dot.py,sha256=NwoCm318NFS169fvJhfltsIINxzpd6bS7_9b1-Fy4Xg,119142
|
|
170
|
-
jaseci/utils/id_list.py,sha256=
|
|
171
|
+
jaseci/utils/id_list.py,sha256=pCUZ_WZfbE2Di5gselOry6dpev6EovaqkCkiacSyZfc,5401
|
|
171
172
|
jaseci/utils/json_handler.py,sha256=-MmExFTpbr5hlS9i_0DAUZK-rgWI2wpDAA4rI3idv74,2234
|
|
172
173
|
jaseci/utils/log_utils.py,sha256=U46KspmCbX6S7YzEk1LB20iB4G1DPHfpV5RFim04Mbg,1629
|
|
173
174
|
jaseci/utils/test_core.py,sha256=DG0mW2GRc2l0M1A1-vCgTUFnZh8ip_0-h7eOfKMxlXQ,1549
|
|
174
175
|
jaseci/utils/utils.py,sha256=yKGryU2NmlWz037qop-l2H1xqoBMUS1b3ojvauA3r5U,10454
|
|
175
176
|
jaseci/utils/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
176
177
|
jaseci/utils/actions/actions_manager.py,sha256=sKfWk9zRpDpkLo3-mKpVMKrqx7kpRG7hRi5tfDTcqb8,8527
|
|
177
|
-
jaseci/utils/actions/actions_optimizer.py,sha256=
|
|
178
|
+
jaseci/utils/actions/actions_optimizer.py,sha256=59Q2KNlLAzuqHZBlRLjOXOHXSEUbUo6ltHn_qBIXaWE,21565
|
|
178
179
|
jaseci/utils/actions/actions_state.py,sha256=5p080-DtDXS9QUd2FwkrtN6-7LBqT2tmJDOKVKjDEbU,2963
|
|
179
|
-
jaseci-1.4.2.
|
|
180
|
-
jaseci-1.4.2.
|
|
181
|
-
jaseci-1.4.2.
|
|
182
|
-
jaseci-1.4.2.
|
|
183
|
-
jaseci-1.4.2.
|
|
184
|
-
jaseci-1.4.2.
|
|
180
|
+
jaseci-1.4.2.6.dist-info/LICENSE,sha256=2b_qOOd7ak6x49HwOzCAmRLSPJehiBJdqj9HDX1Jp7U,1072
|
|
181
|
+
jaseci-1.4.2.6.dist-info/METADATA,sha256=5GKxz1txehpx324JJPSFzwvqM8G8V-qEMilW3G77uMA,1223
|
|
182
|
+
jaseci-1.4.2.6.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
183
|
+
jaseci-1.4.2.6.dist-info/entry_points.txt,sha256=nryZyKQLUJzlTOcA9knRGoXHGmNUCQxvvuDIEj5ePyg,88
|
|
184
|
+
jaseci-1.4.2.6.dist-info/top_level.txt,sha256=0WZh7RF_ruiaZHQSi8IWOiLRUvKKDlhcnLe-by6EyFc,7
|
|
185
|
+
jaseci-1.4.2.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|