-
Notifications
You must be signed in to change notification settings - Fork 1
✨Add CLIck script to convert a .docx file into multiple .svg graphs
#37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
627d78a
✨Add CLIck script to convert a `.docx` file into multiple `.svg` graphs
hf-kklein aff3e91
remove unused import
hf-kklein 9fb2f62
Update main.py
hf-kklein 1fffe8d
Add support for "dot"
hf-kklein 132f882
"fine grained" error handling
hf-kklein File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,116 @@ | ||
| """ | ||
| a small click based script to extract all EBDs from a given file. | ||
| """ | ||
| # invoke like this: | ||
| # main.py -i unittests/test_data/ebd20221128.docx -o foo -t json -t svg -t puml | ||
| import json | ||
| from pathlib import Path | ||
| from typing import Literal | ||
|
|
||
| import cattrs | ||
| import click | ||
| from ebdtable2graph import convert_graph_to_plantuml, convert_table_to_graph | ||
| from ebdtable2graph.graphviz import convert_dot_to_svg_kroki, convert_graph_to_dot | ||
| from ebdtable2graph.models import EbdGraph, EbdTable | ||
|
|
||
| # pylint:disable=import-error | ||
| from ebddocx2table import TableNotFoundError, get_all_ebd_keys, get_ebd_docx_tables # type:ignore[import] | ||
| from ebddocx2table.docxtableconverter import DocxTableConverter # type:ignore[import] | ||
|
|
||
|
|
||
| def _dump_puml(puml_path: Path, ebd_graph: EbdGraph) -> None: | ||
| plantuml_code = convert_graph_to_plantuml(ebd_graph) | ||
| with open(puml_path, "w+", encoding="utf-8") as uml_file: | ||
| uml_file.write(plantuml_code) | ||
|
|
||
|
|
||
| def _dump_dot(dot_path: Path, ebd_graph: EbdGraph) -> None: | ||
| dot_code = convert_graph_to_dot(ebd_graph) | ||
| with open(dot_path, "w+", encoding="utf-8") as uml_file: | ||
| uml_file.write(dot_code) | ||
|
|
||
|
|
||
| def _dump_svg(svg_path: Path, ebd_graph: EbdGraph) -> None: | ||
| dot_code = convert_graph_to_dot(ebd_graph) | ||
| svg_code = convert_dot_to_svg_kroki(dot_code) | ||
| with open(svg_path, "w+", encoding="utf-8") as svg_file: | ||
| svg_file.write(svg_code) | ||
|
|
||
|
|
||
| def _dump_json(json_path: Path, ebd_table: EbdTable) -> None: | ||
| with open(json_path, "w+", encoding="utf-8") as json_file: | ||
| json.dump(cattrs.unstructure(ebd_table), json_file, ensure_ascii=False, indent=2, sort_keys=True) | ||
|
|
||
|
|
||
| @click.command() | ||
| @click.option( | ||
| "-i", | ||
| "--input_path", | ||
| type=click.Path(exists=True, dir_okay=False, file_okay=True, path_type=Path), | ||
| prompt="Input DOCX File", | ||
| help="Path of a .docx file from which the EBDs shall be extracted", | ||
| ) | ||
| @click.option( | ||
| "-o", | ||
| "--output_path", | ||
| type=click.Path(exists=False, dir_okay=True, file_okay=False, path_type=Path), | ||
| default="output", | ||
| prompt="Output directory", | ||
| help="Define the path where you want to save the generated files", | ||
| ) | ||
| @click.option( | ||
| "-t", | ||
| "--export_types", | ||
| type=click.Choice(["puml", "dot", "json", "svg"], case_sensitive=False), | ||
| multiple=True, | ||
| help="Choose which file you'd like to create", | ||
| ) | ||
| def main(input_path: Path, output_path: Path, export_types: list[Literal["puml", "dot", "json", "svg"]]): | ||
| """ | ||
| A program to get a machine-readable version of the AHBs docx files published by edi@energy. | ||
| """ | ||
| if output_path.exists(): | ||
| click.secho(f"The output directory '{output_path}' exists already.", fg="yellow") | ||
| else: | ||
| output_path.mkdir(parents=True) | ||
| click.secho(f"Created a new directory at {output_path}", fg="yellow") | ||
| all_ebd_keys = get_all_ebd_keys(input_path) | ||
| for ebd_key in all_ebd_keys: | ||
| click.secho(f"Processing EBD '{ebd_key}'") | ||
| try: | ||
| docx_tables = get_ebd_docx_tables(docx_file_path=input_path, ebd_key=ebd_key) | ||
| except TableNotFoundError as table_not_found_error: | ||
| click.secho(f"Error while scraping {ebd_key}: {str(table_not_found_error)}; Skip!", fg="red") | ||
| continue | ||
| try: | ||
| converter = DocxTableConverter( | ||
| docx_tables, ebd_key=ebd_key, chapter="Dummy Chapter", sub_chapter="Dummy Subchapter" | ||
| ) | ||
| ebd_table = converter.convert_docx_tables_to_ebd_table() | ||
| ebd_graph = convert_table_to_graph(ebd_table) | ||
| except Exception as error: # pylint:disable=broad-except | ||
| click.secho(f"Error while converting {ebd_key}: {str(error)}; Skip!", fg="red") | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. pokemon exception by design |
||
| continue | ||
| if "puml" in export_types: | ||
| try: | ||
| _dump_puml(output_path / Path(f"{ebd_key}.puml"), ebd_graph) | ||
| click.secho(f"💾 Successfully exported '{ebd_key}.puml'") | ||
| except AssertionError as assertion_error: | ||
|
hf-kklein marked this conversation as resolved.
|
||
| # https://github.com/Hochfrequenz/ebdtable2graph/issues/35 | ||
| click.secho(str(assertion_error), fg="red") | ||
|
hf-kklein marked this conversation as resolved.
|
||
| if "dot" in export_types: | ||
| _dump_dot(output_path / Path(f"{ebd_key}.dot"), ebd_graph) | ||
| click.secho(f"💾 Successfully exported '{ebd_key}.dot'") | ||
| if "svg" in export_types: | ||
| _dump_svg(output_path / Path(f"{ebd_key}.svg"), ebd_graph) | ||
| click.secho(f"💾 Successfully exported '{ebd_key}.svg'") | ||
| if "json" in export_types: | ||
| _dump_json(output_path / Path(f"{ebd_key}.json"), ebd_table) | ||
| click.secho(f"💾 Successfully exported '{ebd_key}.json'") | ||
|
|
||
| click.secho("🏁Finished") | ||
|
|
||
|
|
||
| if __name__ == "__main__": | ||
| # the parameter arguments gets provided over the CLI | ||
| main() # pylint:disable=no-value-for-parameter | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| ebdtable2graph>=0.1.5 | ||
| ebdtable2graph>=0.1.7 | ||
| python-docx | ||
| more_itertools | ||
| attrs | ||
| click |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.