jaseci 1.4.1.8__py3-none-any.whl → 1.4.2__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/extens/act_lib/request.py +6 -6
- jaseci/extens/act_lib/stripe.py +10 -2
- jaseci/extens/act_lib/task.py +2 -2
- jaseci/extens/act_lib/url.py +1 -1
- jaseci/extens/api/global_api.py +11 -2
- jaseci/extens/api/user_api.py +1 -1
- jaseci/extens/api/webhook_api.py +3 -2
- jaseci/extens/svc/elastic_svc.py +30 -8
- jaseci/jac/interpreter/architype_interp.py +0 -1
- jaseci/jac/interpreter/interp.py +5 -22
- jaseci/jac/interpreter/sentinel_interp.py +0 -2
- jaseci/jac/interpreter/walker_interp.py +0 -1
- jaseci/jac/machine/machine_state.py +5 -4
- jaseci/jsorc/jsorc_settings.py +2 -0
- jaseci/jsorc/live_actions.py +29 -7
- jaseci/jsorc/remote_actions.py +57 -6
- jaseci/jsorc/tests/test_actions.py +462 -0
- jaseci/prim/ability.py +0 -6
- jaseci/prim/edge.py +5 -0
- jaseci/prim/node.py +17 -10
- jaseci/prim/sentinel.py +4 -1
- jaseci/tests/jac_test_code.py +105 -0
- jaseci/tests/test_stripe.py +5 -0
- jaseci/utils/id_list.py +9 -5
- jaseci-1.4.2.dist-info/METADATA +36 -0
- {jaseci-1.4.1.8.dist-info → jaseci-1.4.2.dist-info}/RECORD +31 -31
- {jaseci-1.4.1.8.dist-info → jaseci-1.4.2.dist-info}/WHEEL +1 -1
- jaseci-1.4.1.8.dist-info/METADATA +0 -36
- {jaseci-1.4.1.8.dist-info → jaseci-1.4.2.dist-info}/LICENSE +0 -0
- {jaseci-1.4.1.8.dist-info → jaseci-1.4.2.dist-info}/entry_points.txt +0 -0
- {jaseci-1.4.1.8.dist-info → jaseci-1.4.2.dist-info}/top_level.txt +0 -0
jaseci/utils/id_list.py
CHANGED
|
@@ -27,7 +27,9 @@ class IdList(list):
|
|
|
27
27
|
def cache_reset(self):
|
|
28
28
|
self.cached_objects = []
|
|
29
29
|
|
|
30
|
-
def add_obj(
|
|
30
|
+
def add_obj(
|
|
31
|
+
self, obj, push_front=False, allow_dups=False, silent=False, bypass=False
|
|
32
|
+
):
|
|
31
33
|
"""Adds a obj obj to Jaseci object"""
|
|
32
34
|
self.parent_obj.check_hooks_match(obj)
|
|
33
35
|
if not allow_dups and obj.jid in self:
|
|
@@ -39,10 +41,12 @@ class IdList(list):
|
|
|
39
41
|
self.insert(0, obj.jid)
|
|
40
42
|
else:
|
|
41
43
|
self.append(obj.jid)
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
44
|
+
|
|
45
|
+
if not bypass:
|
|
46
|
+
if not obj.j_parent:
|
|
47
|
+
obj.j_parent = self.parent_obj.jid
|
|
48
|
+
self.save(obj)
|
|
49
|
+
self.save()
|
|
46
50
|
|
|
47
51
|
def add_obj_list(self, obj_list, push_front=False, allow_dups=False, silent=False):
|
|
48
52
|
self.cache_reset()
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: jaseci
|
|
3
|
+
Version: 1.4.2
|
|
4
|
+
Home-page: https://github.com/Jaseci-Labs/jaseci
|
|
5
|
+
Author: Jason Mars
|
|
6
|
+
Author-email: jason@jaseci.org
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Requires-Dist: click <8.2.0,>=8.1.0
|
|
9
|
+
Requires-Dist: click-shell <2.2,>=2.1
|
|
10
|
+
Requires-Dist: numpy <1.24.0,>=1.23.0
|
|
11
|
+
Requires-Dist: antlr4-python3-runtime <4.10.0,>=4.9.3
|
|
12
|
+
Requires-Dist: fastapi[all] <1.0.0,>=0.75.0
|
|
13
|
+
Requires-Dist: requests
|
|
14
|
+
Requires-Dist: redis
|
|
15
|
+
Requires-Dist: celery <6,>=5
|
|
16
|
+
Requires-Dist: flake8
|
|
17
|
+
Requires-Dist: pep8-naming
|
|
18
|
+
Requires-Dist: stripe
|
|
19
|
+
Requires-Dist: pydantic <2.0.0
|
|
20
|
+
Requires-Dist: docstring-parser
|
|
21
|
+
Requires-Dist: prometheus-api-client ==0.5.1
|
|
22
|
+
Requires-Dist: prometheus-client ==0.14.1
|
|
23
|
+
Requires-Dist: kubernetes ==23.6.0
|
|
24
|
+
Requires-Dist: pytest
|
|
25
|
+
Requires-Dist: pytest-xdist
|
|
26
|
+
Requires-Dist: pytest-cov
|
|
27
|
+
Requires-Dist: validators ==0.21.2
|
|
28
|
+
Requires-Dist: psycopg2-binary ==2.9.5
|
|
29
|
+
Requires-Dist: pygls
|
|
30
|
+
Requires-Dist: mock
|
|
31
|
+
Requires-Dist: beautifulsoup4 <4.13.0,>=4.12.2
|
|
32
|
+
Requires-Dist: lxml <4.10.0,>=4.9.2
|
|
33
|
+
Requires-Dist: html5lib <1.2,>=1.1
|
|
34
|
+
Requires-Dist: prettytable <3.8.0,>=3.7.0
|
|
35
|
+
Requires-Dist: apache-libcloud ==3.7.0
|
|
36
|
+
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
jaseci/VERSION,sha256=
|
|
1
|
+
jaseci/VERSION,sha256=uZtMfN8jb1m8n2XZY96uyuOxan2th5OcrLkFf3Zk2u4,6
|
|
2
2
|
jaseci/__init__.py,sha256=tFVuF0i901L-YymidhuSjyE24IWOhIiJA5G18DuAP2g,1246
|
|
3
3
|
jaseci/cli_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
jaseci/cli_tools/book_tools.py,sha256=4xeNRhKufKJgAaKI5miPTezdBDWeA-iB_H5F5cqyIB8,16103
|
|
@@ -18,12 +18,12 @@ jaseci/extens/act_lib/maths.py,sha256=fmqmiD_b7pUkHXZT7mt9th5QzvLmTFE_eO_UB3rN4S
|
|
|
18
18
|
jaseci/extens/act_lib/net.py,sha256=Wil8umf3y8WCVe8ujbJst5JAgMj01Y7qxo-A9d4EJRA,7162
|
|
19
19
|
jaseci/extens/act_lib/rand.py,sha256=ffvqZ1kgtbWk25-u7u6Yxyo4DUB1IikMVE4cOZwIxXI,2119
|
|
20
20
|
jaseci/extens/act_lib/regex.py,sha256=bY8cpdNf-uYknQwAP2B4EBv9pvtnbhmdd5jBlB3QHQ4,2050
|
|
21
|
-
jaseci/extens/act_lib/request.py,sha256=
|
|
21
|
+
jaseci/extens/act_lib/request.py,sha256=ORxgNBgp2-O-b4pRO1dGjm1R3xjjJj4k9D-iSGzU2Ck,3953
|
|
22
22
|
jaseci/extens/act_lib/std.py,sha256=oXyPvlLAKRFuVM0i5Xt3eoguhBmNGh6L1zIHAZgtRPs,5915
|
|
23
23
|
jaseci/extens/act_lib/storage.py,sha256=pxHm71nxR_tWSCsDG7midc9hDuy4vsg8JRkcLy9y3hg,1330
|
|
24
|
-
jaseci/extens/act_lib/stripe.py,sha256=
|
|
25
|
-
jaseci/extens/act_lib/task.py,sha256=
|
|
26
|
-
jaseci/extens/act_lib/url.py,sha256=
|
|
24
|
+
jaseci/extens/act_lib/stripe.py,sha256=mlfUeDR76wJETqUoSzshOdU8iG_iiw7RjeqhlKsOagw,7832
|
|
25
|
+
jaseci/extens/act_lib/task.py,sha256=rTg6qHvliMbkJh54_zVxiae-HcgLcqSvzX3BMktrJRY,376
|
|
26
|
+
jaseci/extens/act_lib/url.py,sha256=8ancdLY1N7f9vGGGLYVlKlf_AMuE-c7a6vAdt9aCpss,1851
|
|
27
27
|
jaseci/extens/act_lib/vector.py,sha256=ekTtYx3sHP6j23m1otVeKfqWynfLNsGg6271IIvfE-I,4636
|
|
28
28
|
jaseci/extens/act_lib/webtool.py,sha256=1gJJJ8r86YQpRmSAY6_L6JUwLGl8ZcGWKtydSRemDnY,1038
|
|
29
29
|
jaseci/extens/act_lib/zip.py,sha256=re6jUmkFZaOsrCpum8BMnLFltavrclv-rjfvhbl67i4,942
|
|
@@ -48,7 +48,7 @@ jaseci/extens/api/actions_api.py,sha256=Ml2wRROmXofEXWTOXy0PQCxRcjDLkxz163p7Z13z
|
|
|
48
48
|
jaseci/extens/api/alias_api.py,sha256=kfO9wxfp_HF5-_1TeIgU5KYAcn-7vZ91GOJiDRUv6gs,5157
|
|
49
49
|
jaseci/extens/api/architype_api.py,sha256=GozQuyFJYaG-7Ee1JT_62Pc0InCR2KcLD_esrkIdeGM,7237
|
|
50
50
|
jaseci/extens/api/config_api.py,sha256=OgIkXUKc34HfgetmHtJxKMae8sB2XCl66kI8brtarb0,3581
|
|
51
|
-
jaseci/extens/api/global_api.py,sha256=
|
|
51
|
+
jaseci/extens/api/global_api.py,sha256=yPPG3LKeifDvbd2fQvjRhL1Bn-gZf4QqRtozb3oCgVk,2226
|
|
52
52
|
jaseci/extens/api/graph_api.py,sha256=mGuUr22tGys-NypaW0AEZE-vZ6_OzSnqESVxhQrEI60,5074
|
|
53
53
|
jaseci/extens/api/interface.py,sha256=KnYbClPGe0iTlENdr0LHL8RBuPJGyyuaPspnRvggcXo,9587
|
|
54
54
|
jaseci/extens/api/jac_api.py,sha256=95w0sh08BHHXv5avMa5xngNo06iipU9Fk08D3TiBHj0,5816
|
|
@@ -60,9 +60,9 @@ jaseci/extens/api/prometheus_api.py,sha256=KF0jBHkxup21e8jhDoLiW3cwefDu0D6X0kBtS
|
|
|
60
60
|
jaseci/extens/api/queue_api.py,sha256=tq3KuiWdDmIh4qWuX8md-Cuqyu5LzWHFRoalcGmuBDk,5435
|
|
61
61
|
jaseci/extens/api/sentinel_api.py,sha256=wGbG9GZ-snis9cYBi2CJEYc85KTsldKgNqyxW9N4EkM,9632
|
|
62
62
|
jaseci/extens/api/super_api.py,sha256=Zk0n0W6XfLFFn8G1dw7oaRFmK7AchFy3krANrwz9_yI,1998
|
|
63
|
-
jaseci/extens/api/user_api.py,sha256=
|
|
63
|
+
jaseci/extens/api/user_api.py,sha256=2Hb3K0RbLO8SERwEfPQfccUcmC5s9QHEurBvsmq8nJQ,5449
|
|
64
64
|
jaseci/extens/api/walker_api.py,sha256=4zOm9C5u3hia_B_kkM5W4F37QW56C65G4MkUiycMPSk,9556
|
|
65
|
-
jaseci/extens/api/webhook_api.py,sha256=
|
|
65
|
+
jaseci/extens/api/webhook_api.py,sha256=5UmDOLANN-SETNC4jBXFS5yKq83aub8u7bbhIMz5pvM,2375
|
|
66
66
|
jaseci/extens/api/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
67
67
|
jaseci/extens/api/tests/test_architype_api.py,sha256=zq3_lwFQUWC8ZULWX-pWsR9MP7PgZrB_C9dqdlyAJUY,1820
|
|
68
68
|
jaseci/extens/api/tests/test_global_api.py,sha256=qmQMHCAOpwhcEhsTgQnpdqCJrnaTAtP56Ns4ca0PNuc,6742
|
|
@@ -74,7 +74,7 @@ jaseci/extens/api/tests/test_uncommon.py,sha256=x6JB9tGcD1IIQEOoYuXDO6HCbBji7ynL
|
|
|
74
74
|
jaseci/extens/api/tests/test_user_api.py,sha256=4MXXjd48uRbZs0CvEkuVIisCjIM4QrIiARt3mgafXGk,873
|
|
75
75
|
jaseci/extens/api/tests/test_walker_api.py,sha256=KgWNP5hP4niiMDG0pAoJWPu-thhSarcj6X7MN3BMWJw,12622
|
|
76
76
|
jaseci/extens/svc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
|
-
jaseci/extens/svc/elastic_svc.py,sha256=
|
|
77
|
+
jaseci/extens/svc/elastic_svc.py,sha256=b34FWYep-4ef7XolF8p5GrSk_Sc-mUSXmFeVlIBHZLo,13389
|
|
78
78
|
jaseci/extens/svc/kube_svc.py,sha256=o39b_1lrbfUl3yASIkRZStv3X77QudA5hj-ZfYnlcUM,15612
|
|
79
79
|
jaseci/extens/svc/mail_svc.py,sha256=g7lvUpEDc8mEYIE4cs_Kh3oPp7CAKd437Kgtklo0f8I,5064
|
|
80
80
|
jaseci/extens/svc/prome_svc.py,sha256=btnYPRI7gFoXzbp0-VJDQn1O4RR8sPlT0iPJpjBkRZ4,12467
|
|
@@ -87,10 +87,10 @@ jaseci/jac/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
87
87
|
jaseci/jac/jac.g4,sha256=Nr-M3lxfr4nd4VQwxdcQYid6mg-TPMngU1ZW3trvUFE,8916
|
|
88
88
|
jaseci/jac/jac_set.py,sha256=Reg1QkRQEAyzd6F8r-2cD0LvslgOF2Pc8mS-xalmEt0,3357
|
|
89
89
|
jaseci/jac/interpreter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
90
|
-
jaseci/jac/interpreter/architype_interp.py,sha256=
|
|
91
|
-
jaseci/jac/interpreter/interp.py,sha256=
|
|
92
|
-
jaseci/jac/interpreter/sentinel_interp.py,sha256
|
|
93
|
-
jaseci/jac/interpreter/walker_interp.py,sha256=
|
|
90
|
+
jaseci/jac/interpreter/architype_interp.py,sha256=O_HA5BmgCMfxjIwUlNocp0Gcd8a4mF46GNIOljTyFX0,7370
|
|
91
|
+
jaseci/jac/interpreter/interp.py,sha256=3PZtplMYmkvgrQJz369iUIB0c9WRspKDHFYgJKZ7jgY,66728
|
|
92
|
+
jaseci/jac/interpreter/sentinel_interp.py,sha256=alnPidl4Zomybfi-SWT0U2Xa6xq48JebArjeYhFIJHs,9414
|
|
93
|
+
jaseci/jac/interpreter/walker_interp.py,sha256=fmA9G5T_xZqn3q3xLcs9RAuG0LpD059QwHb6vj1rsRI,8451
|
|
94
94
|
jaseci/jac/interpreter/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
95
|
jaseci/jac/interpreter/tests/test_interp.py,sha256=sQGSZNrQgLuEp-PaE8w5urMIM1I4zEFLcug84HEnh0o,1546
|
|
96
96
|
jaseci/jac/ir/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -119,54 +119,54 @@ jaseci/jac/jsci_vm/tests/test_codegen.py,sha256=sqBPy2qkQ8UWxUap4ZF5YJ3_RYzEXvFA
|
|
|
119
119
|
jaseci/jac/machine/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
120
120
|
jaseci/jac/machine/jac_scope.py,sha256=vs2nMxE89IAdI1zOtDe_KKHmf8JCUTTpecWf_mXXiSE,2934
|
|
121
121
|
jaseci/jac/machine/jac_value.py,sha256=3lTdzyVg2XB7g7sb5nqC5IiECCu4EE_710E56kwCN6Q,6899
|
|
122
|
-
jaseci/jac/machine/machine_state.py,sha256=
|
|
122
|
+
jaseci/jac/machine/machine_state.py,sha256=NI9GZsHL4_Z-VInWT1_MMvl4zT-wsnwbDJuZvA2zoSQ,13331
|
|
123
123
|
jaseci/jac/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
124
124
|
jaseci/jac/tests/book_code.py,sha256=VZ_WL9dLGhK7wuZtAvgW6_rDC1OluiHZXuu7pX77njI,13323
|
|
125
125
|
jaseci/jac/tests/test_book.py,sha256=7P5YSSq7HUxNl6KmFh6UM2ZYsBaq-If06KpN0o618YY,13870
|
|
126
126
|
jaseci/jac/tests/test_lang_14.py,sha256=haw5hvFe4mR1IDHPZGtCvIAMAFLHF0bdg11nl-JP2aQ,1885
|
|
127
127
|
jaseci/jsorc/__init__.py,sha256=575FXvIbY1S4j1idZn7iqc8z3Gvo1A7FPZNA_1I5Ru4,134
|
|
128
128
|
jaseci/jsorc/jsorc.py,sha256=moWROfP3MgYLTevBUYBT5llQUYQ8Gj09VHc9TOsb-RI,21601
|
|
129
|
-
jaseci/jsorc/jsorc_settings.py,sha256=
|
|
129
|
+
jaseci/jsorc/jsorc_settings.py,sha256=eUYEt4CNoPfvHMSYqUtyggQi6snSX7kwwW0ECnOEp_0,8915
|
|
130
130
|
jaseci/jsorc/jsorc_utils.py,sha256=hie_5ttXKM_MqBumFbRFzszAAzdksIUuQbNLpLvOFX0,8945
|
|
131
|
-
jaseci/jsorc/live_actions.py,sha256=
|
|
131
|
+
jaseci/jsorc/live_actions.py,sha256=_hHPfjzu4fE1uA7oP6aOs-5XT0_2KV5mFf7fWbJq69s,12302
|
|
132
132
|
jaseci/jsorc/memory.py,sha256=b-jX452YN3-EqrKXTPC676xL9BoGNpLAgu9h3OJxeV0,8254
|
|
133
133
|
jaseci/jsorc/redis.py,sha256=m0lntrk-JL_hr5fG5BAwdsYH6QeJ8NV9EptMN_APx94,4570
|
|
134
|
-
jaseci/jsorc/remote_actions.py,sha256=
|
|
134
|
+
jaseci/jsorc/remote_actions.py,sha256=x9yYaH9eZj-p2dX6PV7huJo6w8dL-BmNm8VoXLcmdb4,4965
|
|
135
135
|
jaseci/jsorc/manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
136
136
|
jaseci/jsorc/manifests/database.yaml,sha256=T3lDD4s2QR1oKpsc_vihgvzhaYVOfsxPlv8YhQcGLZ4,2234
|
|
137
137
|
jaseci/jsorc/manifests/elastic.yaml,sha256=gJ1f4_RKLNO4GCtGWYWsPPlS-Pyafx6q4UJ8J2wB4cg,484138
|
|
138
138
|
jaseci/jsorc/manifests/prometheus.yaml,sha256=QqmL39UEcwO5V1NjyhZZtQHgQuPgQELB7OemnlD7v1Y,37855
|
|
139
139
|
jaseci/jsorc/manifests/redis.yaml,sha256=Rc-0fjjDInPZVRMb0R2eElT_C8jPJUqtTi1yq7rH-PU,1305
|
|
140
140
|
jaseci/jsorc/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
141
|
-
jaseci/jsorc/tests/test_actions.py,sha256=
|
|
141
|
+
jaseci/jsorc/tests/test_actions.py,sha256=AYZG5-W6VexH_OctUqqJqpVYZxPABgT-8Mi-Pycvsao,16275
|
|
142
142
|
jaseci/jsorc/tests/test_jsorc.py,sha256=HAwDmI7NuuUJrFFdADYjpCCnr58cd9qPy1AZQ-wsH3s,4054
|
|
143
143
|
jaseci/prim/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
144
|
-
jaseci/prim/ability.py,sha256=
|
|
144
|
+
jaseci/prim/ability.py,sha256=XkHpKCsCjZ9Je7oiL0X_Mkbz_FSiVBxGaAVLZv7LCXI,3405
|
|
145
145
|
jaseci/prim/architype.py,sha256=mscTCsXTKh4ZBGyQTGHxEbQl1FFRJs3eoHs7koxLhm4,2706
|
|
146
|
-
jaseci/prim/edge.py,sha256=
|
|
146
|
+
jaseci/prim/edge.py,sha256=GzKLZVio28sCF65zfDzFDHyjDPlfcTbQA5L3RkItcR0,5169
|
|
147
147
|
jaseci/prim/element.py,sha256=XFGw0vVFdIe-KkBMILYWI-KkaltASdo6nm9NHLPYfSo,7669
|
|
148
148
|
jaseci/prim/graph.py,sha256=uZZLyq9jmQilCrAMUKpSwDXqrhVR8JGlIcu8bmPbCjY,596
|
|
149
149
|
jaseci/prim/master.py,sha256=WCfMqWJ9D1V_6Zny96it_6FcDcia3iUZp9qRwYa2Vs0,1835
|
|
150
|
-
jaseci/prim/node.py,sha256=
|
|
150
|
+
jaseci/prim/node.py,sha256=TtDRCBy8azHKclwpdmpDMcQUZi0XdtGn3A5iv4r8Q8o,18139
|
|
151
151
|
jaseci/prim/obj_mixins.py,sha256=BNvNzUGjWKtJ2jJSizPdvELW-TEupsueGA7VMr-tU8A,7286
|
|
152
|
-
jaseci/prim/sentinel.py,sha256=
|
|
152
|
+
jaseci/prim/sentinel.py,sha256=ERWM-7p9xVRj1oAvQlv6gvMeudS0qqlhRi_06VD7uMs,9531
|
|
153
153
|
jaseci/prim/super_master.py,sha256=KHSD1YoF1OKWw3ob8qdS9Amxf38N0FpYfCkT1mk_DDQ,852
|
|
154
154
|
jaseci/prim/walker.py,sha256=gUCOiqdM6YaZpoSMUPErpb4UwDrQoa-DhqfwEVqACSw,8884
|
|
155
155
|
jaseci/svc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
156
156
|
jaseci/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
157
157
|
jaseci/tests/infer.py,sha256=3TAwXO1W5s4yLDV5p_Izxbp5PvyQYR2oaMcB_aYza4c,1006
|
|
158
|
-
jaseci/tests/jac_test_code.py,sha256=
|
|
158
|
+
jaseci/tests/jac_test_code.py,sha256=d8WycjXqmqQJr07abJBIinuyTTDwXdYZxUU6qkhfrBY,27903
|
|
159
159
|
jaseci/tests/jac_test_progs.py,sha256=U7RwFdZUsEpZMdv-PUhBZ8CuRmTusRvKmNKNLRO_mfA,14672
|
|
160
160
|
jaseci/tests/test_core.py,sha256=fYoIF-xQizO8qrMnFpwhzMgScJAx5XTOL7SdvCx7do4,5888
|
|
161
161
|
jaseci/tests/test_jac.py,sha256=bE6FLhLV0-TnxLlS7HdPxe65wMj65Pa_qGLySpuVIJA,32750
|
|
162
162
|
jaseci/tests/test_node.py,sha256=tXnRbc3lHGPidzE45BIF1LiTkC5aB5idxbyzRj06Ufs,3710
|
|
163
163
|
jaseci/tests/test_progs.py,sha256=bnShoB-aFVf6hxCqH771vAR0XQvZwALeHBVD6UVd0dM,25398
|
|
164
164
|
jaseci/tests/test_stack.py,sha256=CrNbcRpRA5jhQw44wKsjWwfgbMXodJglY48TyoNYu5U,8453
|
|
165
|
-
jaseci/tests/test_stripe.py,sha256=
|
|
165
|
+
jaseci/tests/test_stripe.py,sha256=bXq4m7AIRquWu7ZCzzp4Qz99NccuZTt_Tjjg-Kx1isE,8465
|
|
166
166
|
jaseci/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
167
167
|
jaseci/utils/file_handler.py,sha256=b1_zCVO37h1eKjaa_P9jKkx0lwJfrsWKRGkv68lYpY8,4797
|
|
168
168
|
jaseci/utils/gprof2dot.py,sha256=NwoCm318NFS169fvJhfltsIINxzpd6bS7_9b1-Fy4Xg,119142
|
|
169
|
-
jaseci/utils/id_list.py,sha256=
|
|
169
|
+
jaseci/utils/id_list.py,sha256=vknSJi-xtIMPW8O3SjJb7l_Jg3Fw4kMjCAm6tS9KZ9s,5400
|
|
170
170
|
jaseci/utils/json_handler.py,sha256=-MmExFTpbr5hlS9i_0DAUZK-rgWI2wpDAA4rI3idv74,2234
|
|
171
171
|
jaseci/utils/log_utils.py,sha256=U46KspmCbX6S7YzEk1LB20iB4G1DPHfpV5RFim04Mbg,1629
|
|
172
172
|
jaseci/utils/test_core.py,sha256=DG0mW2GRc2l0M1A1-vCgTUFnZh8ip_0-h7eOfKMxlXQ,1549
|
|
@@ -175,9 +175,9 @@ jaseci/utils/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
|
|
|
175
175
|
jaseci/utils/actions/actions_manager.py,sha256=sKfWk9zRpDpkLo3-mKpVMKrqx7kpRG7hRi5tfDTcqb8,8527
|
|
176
176
|
jaseci/utils/actions/actions_optimizer.py,sha256=ddj6zF6pfcYD3OeLiOBTeDU07764-bLy7RXn7c71JrI,21564
|
|
177
177
|
jaseci/utils/actions/actions_state.py,sha256=5p080-DtDXS9QUd2FwkrtN6-7LBqT2tmJDOKVKjDEbU,2963
|
|
178
|
-
jaseci-1.4.
|
|
179
|
-
jaseci-1.4.
|
|
180
|
-
jaseci-1.4.
|
|
181
|
-
jaseci-1.4.
|
|
182
|
-
jaseci-1.4.
|
|
183
|
-
jaseci-1.4.
|
|
178
|
+
jaseci-1.4.2.dist-info/LICENSE,sha256=2b_qOOd7ak6x49HwOzCAmRLSPJehiBJdqj9HDX1Jp7U,1072
|
|
179
|
+
jaseci-1.4.2.dist-info/METADATA,sha256=hdA3vhSDn6vQtv778-nZv_Siruc_xieemJWESSkbA44,1102
|
|
180
|
+
jaseci-1.4.2.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
181
|
+
jaseci-1.4.2.dist-info/entry_points.txt,sha256=nryZyKQLUJzlTOcA9knRGoXHGmNUCQxvvuDIEj5ePyg,88
|
|
182
|
+
jaseci-1.4.2.dist-info/top_level.txt,sha256=0WZh7RF_ruiaZHQSi8IWOiLRUvKKDlhcnLe-by6EyFc,7
|
|
183
|
+
jaseci-1.4.2.dist-info/RECORD,,
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: jaseci
|
|
3
|
-
Version: 1.4.1.8
|
|
4
|
-
Home-page: https://github.com/Jaseci-Labs/jaseci
|
|
5
|
-
Author: Jason Mars
|
|
6
|
-
Author-email: jason@jaseci.org
|
|
7
|
-
License-File: LICENSE
|
|
8
|
-
Requires-Dist: click (<8.2.0,>=8.1.0)
|
|
9
|
-
Requires-Dist: click-shell (<2.2,>=2.1)
|
|
10
|
-
Requires-Dist: numpy (<1.24.0,>=1.23.0)
|
|
11
|
-
Requires-Dist: antlr4-python3-runtime (<4.10.0,>=4.9.3)
|
|
12
|
-
Requires-Dist: fastapi[all] (<1.0.0,>=0.75.0)
|
|
13
|
-
Requires-Dist: requests
|
|
14
|
-
Requires-Dist: redis
|
|
15
|
-
Requires-Dist: celery (<6,>=5)
|
|
16
|
-
Requires-Dist: flake8
|
|
17
|
-
Requires-Dist: pep8-naming
|
|
18
|
-
Requires-Dist: stripe
|
|
19
|
-
Requires-Dist: pydantic (<2.0.0)
|
|
20
|
-
Requires-Dist: docstring-parser
|
|
21
|
-
Requires-Dist: prometheus-api-client (==0.5.1)
|
|
22
|
-
Requires-Dist: prometheus-client (==0.14.1)
|
|
23
|
-
Requires-Dist: kubernetes (==23.6.0)
|
|
24
|
-
Requires-Dist: pytest
|
|
25
|
-
Requires-Dist: pytest-xdist
|
|
26
|
-
Requires-Dist: pytest-cov
|
|
27
|
-
Requires-Dist: validators
|
|
28
|
-
Requires-Dist: psycopg2-binary (==2.9.5)
|
|
29
|
-
Requires-Dist: pygls
|
|
30
|
-
Requires-Dist: mock
|
|
31
|
-
Requires-Dist: beautifulsoup4 (<4.13.0,>=4.12.2)
|
|
32
|
-
Requires-Dist: lxml (<4.10.0,>=4.9.2)
|
|
33
|
-
Requires-Dist: html5lib (<1.2,>=1.1)
|
|
34
|
-
Requires-Dist: prettytable (<3.8.0,>=3.7.0)
|
|
35
|
-
Requires-Dist: apache-libcloud (==3.7.0)
|
|
36
|
-
|
|
File without changes
|
|
File without changes
|
|
File without changes
|