Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
dependencies = [
"ebdamame>=0.1.1",
"ebdamame>=0.1.3",
"rebdhuhn>=0.2.3"
] # add all the dependencies here
dynamic = ["readme", "version"]
Expand Down
22 changes: 5 additions & 17 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# This file is autogenerated by pip-compile with Python 3.11
# This file is autogenerated by pip-compile with Python 3.12
# by the following command:
#
# pip-compile pyproject.toml
Expand All @@ -8,12 +8,9 @@ attrs==23.2.0
# via
# cattrs
# ebdamame
# ebdtable2graph
# rebdhuhn
cattrs==23.2.3
# via
# ebdtable2graph
# rebdhuhn
# via rebdhuhn
certifi==2024.2.2
# via requests
charset-normalizer==3.3.2
Expand All @@ -24,34 +21,25 @@ colorama==0.4.6
# via click
ebdamame==0.1.3
# via your-favourite-package-name (pyproject.toml)
ebdtable2graph==0.1.20
# via ebdamame
idna==3.7
# via requests
lxml==5.2.1
# via
# ebdtable2graph
# python-docx
# rebdhuhn
# svgutils
more-itertools==10.2.0
# via ebdamame
networkx==3.3
# via
# ebdtable2graph
# rebdhuhn
# via rebdhuhn
python-docx==1.1.2
# via ebdamame
rebdhuhn==0.2.3
# via your-favourite-package-name (pyproject.toml)
requests==2.31.0
# via
# ebdtable2graph
# rebdhuhn
# via rebdhuhn
svgutils==0.3.4
# via
# ebdtable2graph
# rebdhuhn
# via rebdhuhn
typing-extensions==4.11.0
# via python-docx
urllib3==2.2.1
Expand Down
169 changes: 169 additions & 0 deletions src/ebd_toolchain/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,169 @@
"""
A small click-based script to extract all EBDs from a given .docx file (available at edi-energy.de).
"""

# invoke like this:
# main.py -i unittests/test_data/ebd20230619_v33.docx
# -o ../machine-readable_entscheidungsbaumdiagramme/FV2304
# -t json -t dot -t svg -t puml
#
# or
#
# main.py -i unittests/test_data/ebd20230629_v34.docx
# -o ../machine-readable_entscheidungsbaumdiagramme/FV2310
# -t json -t dot -t svg -t puml

import json
from pathlib import Path
from typing import Literal

import cattrs
import click
Comment thread
OLILHR marked this conversation as resolved.

# pylint:disable=import-error
Comment thread
OLILHR marked this conversation as resolved.
Outdated
from ebdamame import TableNotFoundError, get_all_ebd_keys, get_ebd_docx_tables
from ebdamame.docxtableconverter import DocxTableConverter
from rebdhuhn.graph_conversion import convert_table_to_graph
from rebdhuhn.graphviz import convert_dot_to_svg_kroki, convert_graph_to_dot
from rebdhuhn.models.ebd_graph import EbdGraph
from rebdhuhn.models.ebd_table import EbdTable
from rebdhuhn.models.errors import (
EbdCrossReferenceNotSupportedError,
EndeInWrongColumnError,
GraphTooComplexForPlantumlError,
NotExactlyTwoOutgoingEdgesError,
OutcomeCodeAmbiguousError,
PathsNotGreaterThanOneError,
)
from rebdhuhn.plantuml import convert_graph_to_plantuml


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",
)
# pylint:disable=too-many-locals, too-many-branches, too-many-statements,
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="green")
all_ebd_keys = get_all_ebd_keys(input_path)
error_sources: dict[type, list[str]] = {}

def handle_known_error(error: Exception, ebd_key: str) -> None:
click.secho(f"Error while processing EBD {ebd_key}: {error}", fg="yellow")
if type(error) not in error_sources:
error_sources[type(error)] = []
error_sources[type(error)].append(ebd_key)

for ebd_key, (ebd_title, ebd_kapitel) in all_ebd_keys.items():
click.secho(f"Processing EBD {ebd_kapitel} '{ebd_key}' ({ebd_title})")
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"Table not found: {ebd_key}: {str(table_not_found_error)}; Skip!", fg="yellow")
continue
assert ebd_kapitel is not None
try:
converter = DocxTableConverter(
docx_tables,
ebd_key=ebd_key,
chapter=ebd_kapitel.chapter_title, # type:ignore[arg-type]
# pylint:disable=line-too-long
sub_chapter=f"{ebd_kapitel.chapter}.{ebd_kapitel.section}.{ebd_kapitel.subsection}: {ebd_kapitel.section_title}",
)
ebd_table = converter.convert_docx_tables_to_ebd_table()
except Exception as scraping_error: # pylint:disable=broad-except
click.secho(f"Error while scraping {ebd_key}: {str(scraping_error)}; Skip!", fg="red")
continue
if "json" in export_types:
_dump_json(output_path / Path(f"{ebd_key}.json"), ebd_table)
click.secho(f"💾 Successfully exported '{ebd_key}.json'")
try:
ebd_graph = convert_table_to_graph(ebd_table)
except (EbdCrossReferenceNotSupportedError, EndeInWrongColumnError, OutcomeCodeAmbiguousError) as known_issue:
handle_known_error(known_issue, ebd_key)
continue
except Exception as unknown_error: # pylint:disable=broad-except
click.secho(f"Error while graphing {ebd_key}: {str(unknown_error)}; Skip!", fg="red")
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:
# https://github.com/Hochfrequenz/rebdhuhn/issues/35
click.secho(str(assertion_error), fg="red")
except (NotExactlyTwoOutgoingEdgesError, GraphTooComplexForPlantumlError) as known_issue:
handle_known_error(known_issue, ebd_key)
except Exception as general_error: # pylint:disable=broad-exception-caught
click.secho(f"Error while exporting {ebd_key} as UML: {str(general_error)}; Skip!", fg="yellow")

try:
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'")
except PathsNotGreaterThanOneError as known_issue:
handle_known_error(known_issue, ebd_key)
except AssertionError as assertion_error:
# e.g. AssertionError: If indegree > 1, the number of paths should always be greater than 1 too.
click.secho(str(assertion_error), fg="red")
# both the SVG and dot path require graphviz to work, hence the common error handling block
click.secho(json.dumps({str(k): v for k, v in error_sources.items()}, indent=4))
click.secho("🏁Finished")


if __name__ == "__main__":
# the parameter arguments gets provided over the CLI
main() # pylint:disable=no-value-for-parameter
46 changes: 23 additions & 23 deletions src/ebd_toolchain/mymodule.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
"""
This a docstring for the module.
"""


class MyClass: # pylint: disable=too-few-public-methods
"""
This is a docstring for the class.
"""

def __init__(self):
"""
Initialize for the sake of initializing
"""
self.my_instance_var: str = "abc"

def do_something(self) -> str:
"""
Actually does nothing.
:return: the value of an instance variable
"""
# this is a super long line with: 100 < line length <= 120 to demonstrate the purpose of pyproject.toml
return self.my_instance_var
"""
This a docstring for the module.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hast du andere line endings? CRLF statt LF oder so?

"""
class MyClass: # pylint: disable=too-few-public-methods
"""
This is a docstring for the class.
"""
def __init__(self):
"""
Initialize for the sake of initializing
"""
self.my_instance_var: str = "abc"
def do_something(self) -> str:
"""
Actually does nothing.
:return: the value of an instance variable
"""
# this is a super long line with: 100 < line length <= 120 to demonstrate the purpose of pyproject.toml
return self.my_instance_var
22 changes: 11 additions & 11 deletions unittests/test_myclass.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
from ebd_toolchain.mymodule import MyClass


class TestMyClass:
"""
A class with pytest unit tests.
"""

def test_something(self):
my_class = MyClass()
assert my_class.do_something() == "abc"
from ebd_toolchain.mymodule import MyClass
class TestMyClass:
"""
A class with pytest unit tests.
"""
def test_something(self):
my_class = MyClass()
assert my_class.do_something() == "abc"