pyegeria 1.5.1.1.56__py3-none-any.whl → 1.5.1.1.57__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.
- pyegeria/commands/cli/egeria.py +0 -6
- pyegeria/commands/cli/egeria_cat.py +0 -13
- pyegeria/commands/cli/egeria_my.py +0 -13
- pyegeria/commands/cli/egeria_ops.py +0 -13
- pyegeria/commands/cli/egeria_tech.py +0 -13
- pyegeria/commands/cli/ops_config.py +18 -9
- pyegeria/commands/doc/glossary/images/hey_egeria 2024-11-12 at 20.38.43.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/CleanShot 2024-11-12 at 20.38.43@2x.png +0 -0
- {pyegeria-1.5.1.1.56.dist-info → pyegeria-1.5.1.1.57.dist-info}/METADATA +1 -1
- {pyegeria-1.5.1.1.56.dist-info → pyegeria-1.5.1.1.57.dist-info}/RECORD +13 -11
- {pyegeria-1.5.1.1.56.dist-info → pyegeria-1.5.1.1.57.dist-info}/LICENSE +0 -0
- {pyegeria-1.5.1.1.56.dist-info → pyegeria-1.5.1.1.57.dist-info}/WHEEL +0 -0
- {pyegeria-1.5.1.1.56.dist-info → pyegeria-1.5.1.1.57.dist-info}/entry_points.txt +0 -0
pyegeria/commands/cli/egeria.py
CHANGED
@@ -214,8 +214,6 @@ def cli(
|
|
214
214
|
userid,
|
215
215
|
password,
|
216
216
|
timeout,
|
217
|
-
paging,
|
218
|
-
verbose,
|
219
217
|
jupyter,
|
220
218
|
width,
|
221
219
|
):
|
@@ -234,15 +232,11 @@ def cli(
|
|
234
232
|
userid,
|
235
233
|
password,
|
236
234
|
timeout,
|
237
|
-
paging,
|
238
|
-
verbose,
|
239
235
|
jupyter,
|
240
236
|
width,
|
241
237
|
)
|
242
238
|
ctx.max_content_width = 200
|
243
239
|
ctx.ensure_object(Config)
|
244
|
-
if verbose:
|
245
|
-
click.echo(f"we are in verbose mode - server is {server}")
|
246
240
|
|
247
241
|
|
248
242
|
#
|
@@ -140,13 +140,6 @@ from pyegeria.commands.tech.list_asset_types import display_asset_types
|
|
140
140
|
help="Egeria user password",
|
141
141
|
)
|
142
142
|
@click.option("--timeout", default=60, help="Number of seconds to wait")
|
143
|
-
@click.option("--verbose", is_flag=True, default=False, help="Enable verbose mode")
|
144
|
-
@click.option(
|
145
|
-
"--paging",
|
146
|
-
is_flag=True,
|
147
|
-
default=False,
|
148
|
-
help="Enable paging snapshots vs live updates",
|
149
|
-
)
|
150
143
|
@click.option(
|
151
144
|
"--jupyter",
|
152
145
|
is_flag=True,
|
@@ -176,8 +169,6 @@ def cli(
|
|
176
169
|
userid,
|
177
170
|
password,
|
178
171
|
timeout,
|
179
|
-
paging,
|
180
|
-
verbose,
|
181
172
|
jupyter,
|
182
173
|
width,
|
183
174
|
):
|
@@ -196,15 +187,11 @@ def cli(
|
|
196
187
|
userid,
|
197
188
|
password,
|
198
189
|
timeout,
|
199
|
-
paging,
|
200
|
-
verbose,
|
201
190
|
jupyter,
|
202
191
|
width,
|
203
192
|
)
|
204
193
|
ctx.max_content_width = 200
|
205
194
|
ctx.ensure_object(Config)
|
206
|
-
if verbose:
|
207
|
-
click.echo(f"we are in verbose mode - server is {server}")
|
208
195
|
|
209
196
|
|
210
197
|
@cli.group("show")
|
@@ -115,13 +115,6 @@ from pyegeria.commands.my.todo_actions import (
|
|
115
115
|
help="Egeria user password",
|
116
116
|
)
|
117
117
|
@click.option("--timeout", default=60, help="Number of seconds to wait")
|
118
|
-
@click.option("--verbose", is_flag=True, default=False, help="Enable verbose mode")
|
119
|
-
@click.option(
|
120
|
-
"--paging",
|
121
|
-
is_flag=True,
|
122
|
-
default=False,
|
123
|
-
help="Enable paging snapshots vs live updates",
|
124
|
-
)
|
125
118
|
@click.option(
|
126
119
|
"--jupyter",
|
127
120
|
is_flag=True,
|
@@ -151,8 +144,6 @@ def cli(
|
|
151
144
|
userid,
|
152
145
|
password,
|
153
146
|
timeout,
|
154
|
-
paging,
|
155
|
-
verbose,
|
156
147
|
jupyter,
|
157
148
|
width,
|
158
149
|
):
|
@@ -171,15 +162,11 @@ def cli(
|
|
171
162
|
userid,
|
172
163
|
password,
|
173
164
|
timeout,
|
174
|
-
paging,
|
175
|
-
verbose,
|
176
165
|
jupyter,
|
177
166
|
width,
|
178
167
|
)
|
179
168
|
ctx.max_content_width = 200
|
180
169
|
ctx.ensure_object(Config)
|
181
|
-
if verbose:
|
182
|
-
click.echo(f"we are in verbose mode - server is {server}")
|
183
170
|
|
184
171
|
|
185
172
|
@cli.group("show")
|
@@ -129,13 +129,6 @@ from pyegeria.commands.ops.list_archives import display_archive_list
|
|
129
129
|
help="Egeria user password",
|
130
130
|
)
|
131
131
|
@click.option("--timeout", default=60, help="Number of seconds to wait")
|
132
|
-
@click.option("--verbose", is_flag=True, default=False, help="Enable verbose mode")
|
133
|
-
@click.option(
|
134
|
-
"--paging",
|
135
|
-
is_flag=True,
|
136
|
-
default=False,
|
137
|
-
help="Enable paging snapshots vs live updates",
|
138
|
-
)
|
139
132
|
@click.option(
|
140
133
|
"--jupyter",
|
141
134
|
is_flag=True,
|
@@ -165,8 +158,6 @@ def cli(
|
|
165
158
|
userid,
|
166
159
|
password,
|
167
160
|
timeout,
|
168
|
-
paging,
|
169
|
-
verbose,
|
170
161
|
jupyter,
|
171
162
|
width,
|
172
163
|
):
|
@@ -185,15 +176,11 @@ def cli(
|
|
185
176
|
userid,
|
186
177
|
password,
|
187
178
|
timeout,
|
188
|
-
paging,
|
189
|
-
verbose,
|
190
179
|
jupyter,
|
191
180
|
width,
|
192
181
|
)
|
193
182
|
ctx.max_content_width = 200
|
194
183
|
ctx.ensure_object(Config)
|
195
|
-
if verbose:
|
196
|
-
click.echo(f"we are in verbose mode - server is {server}")
|
197
184
|
|
198
185
|
|
199
186
|
@cli.group("show")
|
@@ -126,13 +126,6 @@ from pyegeria.commands.tech.get_tech_type_template import template_viewer
|
|
126
126
|
help="Egeria user password",
|
127
127
|
)
|
128
128
|
@click.option("--timeout", default=60, help="Number of seconds to wait")
|
129
|
-
@click.option("--verbose", is_flag=True, default=False, help="Enable verbose mode")
|
130
|
-
@click.option(
|
131
|
-
"--paging",
|
132
|
-
is_flag=True,
|
133
|
-
default=False,
|
134
|
-
help="Enable paging snapshots vs live updates",
|
135
|
-
)
|
136
129
|
@click.option(
|
137
130
|
"--jupyter",
|
138
131
|
is_flag=True,
|
@@ -162,8 +155,6 @@ def cli(
|
|
162
155
|
userid,
|
163
156
|
password,
|
164
157
|
timeout,
|
165
|
-
paging,
|
166
|
-
verbose,
|
167
158
|
jupyter,
|
168
159
|
width,
|
169
160
|
):
|
@@ -182,15 +173,11 @@ def cli(
|
|
182
173
|
userid,
|
183
174
|
password,
|
184
175
|
timeout,
|
185
|
-
paging,
|
186
|
-
verbose,
|
187
176
|
jupyter,
|
188
177
|
width,
|
189
178
|
)
|
190
179
|
ctx.max_content_width = 200
|
191
180
|
ctx.ensure_object(Config)
|
192
|
-
if verbose:
|
193
|
-
click.echo(f"we are in verbose mode - server is {server}")
|
194
181
|
|
195
182
|
|
196
183
|
@cli.group("show")
|
@@ -2,13 +2,24 @@ import click
|
|
2
2
|
|
3
3
|
|
4
4
|
class Config(object):
|
5
|
-
def __init__(
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
5
|
+
def __init__(
|
6
|
+
self,
|
7
|
+
server: str = None,
|
8
|
+
url: str = None,
|
9
|
+
view_server: str = "view-server",
|
10
|
+
view_server_url: str = "https://localhost:9443",
|
11
|
+
integration_daemon: str = "integration-daemon",
|
12
|
+
integration_daemon_url: str = "https://localhost:9443",
|
13
|
+
engine_host: str = "engine-host",
|
14
|
+
engine_host_url: str = "https://localhost:9443",
|
15
|
+
admin_user: str = "garygeeke",
|
16
|
+
admin_user_password: str = "secret",
|
17
|
+
userid: str = None,
|
18
|
+
password: str = None,
|
19
|
+
timeout: int = 30,
|
20
|
+
jupyter: bool = False,
|
21
|
+
width: int = 200,
|
22
|
+
):
|
12
23
|
self.metadata_store = server
|
13
24
|
self.metadata_store_url = url
|
14
25
|
self.view_server = view_server
|
@@ -22,8 +33,6 @@ class Config(object):
|
|
22
33
|
self.userid = userid
|
23
34
|
self.password = password
|
24
35
|
self.timeout = timeout
|
25
|
-
self.paging = paging
|
26
|
-
self.verbose = verbose
|
27
36
|
self.jupyter = jupyter
|
28
37
|
self.width = width
|
29
38
|
self.server = server
|
Binary file
|
@@ -34,12 +34,12 @@ pyegeria/commands/cat/list_terms.py,sha256=1xHNMgB03OVxskj63vDS7-p1OEhMNyxvlTmg8
|
|
34
34
|
pyegeria/commands/cat/list_todos.py,sha256=iPxHRyW3X5tiREio4TUOwRPvNPjU0gxm3pVnUI79ir4,6542
|
35
35
|
pyegeria/commands/cat/list_user_ids.py,sha256=7JinL7rknPbGusIb8ikXKEaV1vvbuvx_WWtbmlfS_DY,5093
|
36
36
|
pyegeria/commands/cli/__init__.py,sha256=hpTVSMP2gnPRhcAZPdeUEsQ-eaDySlXlk239dNWYmng,292
|
37
|
-
pyegeria/commands/cli/egeria.py,sha256
|
38
|
-
pyegeria/commands/cli/egeria_cat.py,sha256=
|
39
|
-
pyegeria/commands/cli/egeria_my.py,sha256=
|
40
|
-
pyegeria/commands/cli/egeria_ops.py,sha256=
|
41
|
-
pyegeria/commands/cli/egeria_tech.py,sha256=
|
42
|
-
pyegeria/commands/cli/ops_config.py,sha256
|
37
|
+
pyegeria/commands/cli/egeria.py,sha256=aqAOPdgFZ4JVmudF2uLWmVz2u7Nhd9wr6SpLcID7GLw,44508
|
38
|
+
pyegeria/commands/cli/egeria_cat.py,sha256=OjV9w9g0r8JbiWA-alC0K2XKkRKDcIgoSuWHnIE8hU4,15871
|
39
|
+
pyegeria/commands/cli/egeria_my.py,sha256=YsOy1rqDr9MFOoxpleXAo9dMlLI3NfHYf_NobKEdKk8,5888
|
40
|
+
pyegeria/commands/cli/egeria_ops.py,sha256=xw7C63jPgjQaogl7UZZJHoDnMzoZEMwy6oh1px053Cs,12265
|
41
|
+
pyegeria/commands/cli/egeria_tech.py,sha256=oky6p9SnAMw-oCLd2revcXMOLJ-lg9884vLM8PG4A84,13968
|
42
|
+
pyegeria/commands/cli/ops_config.py,sha256=-fTndSzs1zDmWwKk8hu6FMtBwOyXrZKpIemgykhpigI,1379
|
43
43
|
pyegeria/commands/doc/.DS_Store,sha256=8NYo_wnhWZfLpkPld7Y2BV4ZsmywSTUkalhulBRf3qY,10244
|
44
44
|
pyegeria/commands/doc/command-overview.md,sha256=tnefqWz88GUMRi0TpcE5KAmeMCpvdSF6z4gVt8y_yzs,6673
|
45
45
|
pyegeria/commands/doc/glossary/.DS_Store,sha256=Wnz12QQr0lWsmfViLDHaDin30-503borBxFmXt1ST-o,6148
|
@@ -50,6 +50,7 @@ pyegeria/commands/doc/glossary/images/delete-glossary-step1 2024-11-06 at 15.47.
|
|
50
50
|
pyegeria/commands/doc/glossary/images/delete-glossary-step2 2024-11-06 at 15.51.29@2x.png,sha256=tV0h6i1eRAbvAzye8iuWt0eJ14y1Crk9DovaJLGJCSA,299425
|
51
51
|
pyegeria/commands/doc/glossary/images/delete-glossary-step3 2024-11-06 at 15.53.19@2x.png,sha256=i_SJAW_CeM0fNfZ3fLrZAKdrE9LHG1zHHui86pejlkg,22826
|
52
52
|
pyegeria/commands/doc/glossary/images/delete-glossary-step4 2024-11-06 at 15.55.11@2x.png,sha256=Tp3Obg86JmsKIijn4lE_NBjX9v_C1AXPU0w0Qr3cSak,169412
|
53
|
+
pyegeria/commands/doc/glossary/images/hey_egeria 2024-11-12 at 20.38.43.png,sha256=J9g754NN27AOk_OYUPI4o0A7cM5oHUqO-P5sjUmBsxM,387071
|
53
54
|
pyegeria/commands/doc/glossary/images/out-create-glossary example 2024-11-05 at 20.38.04@2x.png,sha256=OH-Lsh2wOP-6XoFOHc3aAKIRZcY9usvTzNFbfjhdVzU,28900
|
54
55
|
pyegeria/commands/doc/glossary/images/out-create-term 2024-11-06 at 20.48.29.png,sha256=C8VHV3Dynig-ACrezeCK-24WqbKkK45U8cBbN54RQRY,36189
|
55
56
|
pyegeria/commands/doc/glossary/images/out-delete-term 2024-11-07 at 03.57.25.png,sha256=eN4Py_yZpr_t-OJatHk19eaxRiG_zy4l8KyC6uVwSF8,33081
|
@@ -83,6 +84,7 @@ pyegeria/commands/doc/glossary/images/upsert-example.om-terms 2024-11-07 at 11.4
|
|
83
84
|
pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/.DS_Store,sha256=A7HmN0yPuXFNPV4Ztmp7X2mtEux6abma1DUlmHHntt4,6148
|
84
85
|
pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/hey_egeria: overview.md,sha256=A-FRkpNaWMyVRZzmZYoqQZi1LB8zwsX2qVZggXDVjPk,16368
|
85
86
|
pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
|
87
|
+
pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/CleanShot 2024-11-12 at 20.38.43@2x.png,sha256=YfgarGybJkKH2BSxIHDwKreCfsm3GnjJ0SgYLCrxbFI,401029
|
86
88
|
pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/Xmind 1731421782704.png,sha256=8lfyO8prtahjTqqT4Uk3HSICipBpf1ly2bXp00csRb8,314990
|
87
89
|
pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/Xmind 1731422134920.png,sha256=Ri4xBHuYzsMrOpoq48-3UkfQNLm9coJxLT_LJGNIU80,745535
|
88
90
|
pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/out-integ-status-list 2024-11-12 at 16.45.26.png,sha256=BJ1oK6Ds-Flyz5G2ve_OXUjwzyCjvUM6BrdP3wvFs7c,571445
|
@@ -165,8 +167,8 @@ pyegeria/template_manager_omvs.py,sha256=heqbKeum5hPCHap4r1RUZU8YB3QaQlxVNbq4GZi
|
|
165
167
|
pyegeria/utils.py,sha256=1h6bwveadd6GpbnGLTmqPBmBk68QvxdjGTI9RfbrgKY,5415
|
166
168
|
pyegeria/valid_metadata_omvs.py,sha256=tfCGXed5LLt59YA8uZNNtd9UJ-lRZfPU_uZxK31Yux0,65069
|
167
169
|
pyegeria/x_action_author_omvs.py,sha256=xu1IQ0YbhIKi17C5a7Aq9u1Az2czwahNPpX9czmyVxE,6454
|
168
|
-
pyegeria-1.5.1.1.
|
169
|
-
pyegeria-1.5.1.1.
|
170
|
-
pyegeria-1.5.1.1.
|
171
|
-
pyegeria-1.5.1.1.
|
172
|
-
pyegeria-1.5.1.1.
|
170
|
+
pyegeria-1.5.1.1.57.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
171
|
+
pyegeria-1.5.1.1.57.dist-info/METADATA,sha256=NB8Fc9jPZTejjc96abN1ZLVUHmCBoBPdG9aRZlxfAnw,2998
|
172
|
+
pyegeria-1.5.1.1.57.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
173
|
+
pyegeria-1.5.1.1.57.dist-info/entry_points.txt,sha256=w9RxNxRMM8fmX_DFKDFRPTWTqeujjbEuGHfqORT7law,5170
|
174
|
+
pyegeria-1.5.1.1.57.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|