pyegeria 5.4.0.dev7__py3-none-any.whl → 5.4.0.dev8__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.
- commands/cat/debug_log +4773 -0
- commands/cat/dr_egeria_md.py +2 -2
- md_processing/data/commands.json +1216 -82
- md_processing/md_commands/data_designer_commands.py +22 -1
- md_processing/md_processing_utils/debug_log +0 -0
- md_processing/md_processing_utils/generated_help_terms.md +842 -0
- pyegeria/data_designer_omvs.py +2 -2
- {pyegeria-5.4.0.dev7.dist-info → pyegeria-5.4.0.dev8.dist-info}/METADATA +1 -1
- {pyegeria-5.4.0.dev7.dist-info → pyegeria-5.4.0.dev8.dist-info}/RECORD +12 -9
- {pyegeria-5.4.0.dev7.dist-info → pyegeria-5.4.0.dev8.dist-info}/LICENSE +0 -0
- {pyegeria-5.4.0.dev7.dist-info → pyegeria-5.4.0.dev8.dist-info}/WHEEL +0 -0
- {pyegeria-5.4.0.dev7.dist-info → pyegeria-5.4.0.dev8.dist-info}/entry_points.txt +0 -0
commands/cat/dr_egeria_md.py
CHANGED
@@ -55,9 +55,9 @@ EGERIA_OUTBOX_PATH = os.environ.get("EGERIA_OUTBOX_PATH", "md_processing/dr_eger
|
|
55
55
|
|
56
56
|
|
57
57
|
@click.command("process_markdown_file", help="Process a markdown file and return the output as a string.")
|
58
|
-
@click.option("--file
|
58
|
+
@click.option("--input-file", help="Markdown file to process.", default="dr_egeria_intro_part1.md", required=True,
|
59
59
|
prompt=False)
|
60
|
-
@click.option("--directive", default="
|
60
|
+
@click.option("--directive", default="process", help="How to process the file",
|
61
61
|
type=click.Choice(["display", "validate", "process"], case_sensitive=False), prompt=False, )
|
62
62
|
@click.option("--server", default=EGERIA_VIEW_SERVER, help="Egeria view server to use.")
|
63
63
|
@click.option("--url", default=EGERIA_VIEW_SERVER_URL, help="URL of Egeria platform to connect to")
|