Skip to content

Commit d4966a6

Browse files
sara-rnAna06
andauthored
Apply suggestions from code review
Fix function descriptions and comments Co-authored-by: Ana María Martínez Gómez <[email protected]>
1 parent a884eb0 commit d4966a6

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed

scripts/utils/generate_package_wiki.py

+17-16
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,27 @@
44
import xml.etree.ElementTree as ET
55
from collections import defaultdict
66

7+
# Dict[str (category), list (packages information)]
78
packages_by_category = defaultdict(str)
89

910

1011
def sort_write_wiki_content(file_path):
11-
""" Writes content of packages_by_category to the wiki file
12-
13-
This function retrieves rows pertaining to the key category, as a result of
14-
iterating over packages_by_category.
15-
Writes to the Markdown formatted string:
16-
- header with the category name
17-
- table with two columns: Package and Description of each of the packages
18-
12+
""" Writes package information sorted by category to a Markdown wiki file.
13+
14+
This function iterates through the `packages_by_category` dictionary, which
15+
contains package information organized by category. For each category, it
16+
generates a Markdown header and a table containing package names and
17+
descriptions. The resulting Markdown content is then written to the specified
18+
file.
19+
1920
Args:
20-
file_path: path of the wiki .md file
21+
file_path (str): The path to the output Markdown file.
2122
"""
2223
wikiContent = ""
2324
for category in packages_by_category.keys():
2425
wikiContent += "## " + category + "\n\n"
2526
wikiContent += "| Package | Description |\n"
26-
wikiContent += "|---|---|\n"
27+
wikiContent += "| ------- | ----------- |\n"
2728
wikiContent += packages_by_category[category] + "\n\n"
2829
with open(file_path, "w", encoding="utf-8") as f:
2930
f.write(wikiContent)
@@ -51,12 +52,12 @@ def find_element_text(parent, tag_name):
5152
def process_packages_directory(packages_dir):
5253
""" Obtains the package name, description and category from a directory
5354
54-
This function parses all the nuspec files in the 'packages' directory structure.
55+
This function parses all the nuspec files in the specified packages directory.
5556
It saves into packages_by_category[category] a line containing the package
56-
name and the description separated by |
57+
name and the description separated by "|".
5758
5859
Args:
59-
packages: directory where all the packages reside
60+
packages: directory where the packages reside.
6061
"""
6162
if not os.path.isdir(packages_dir):
6263
raise FileNotFoundError(f"Packages directory not found: {packages_dir}")
@@ -66,16 +67,16 @@ def process_packages_directory(packages_dir):
6667
nuspec_metadata = nuspec_tree.find("{*}metadata")
6768
if nuspec_metadata is not None:
6869
category = find_element_text(nuspec_metadata, "tags")
69-
# we are only interested in the packages with a category
70-
# some packages that assist with the istallation (such as common.vm) do
70+
# We are only interested in the packages with a category.
71+
# Some packages that assist with the istallation (such as common.vm) do
7172
# not contain a category
7273
if not category:
7374
continue
7475
description = find_element_text(nuspec_metadata, "description")
7576
package = find_element_text(nuspec_metadata, "id")
7677
"""packages_by_category is a dictionary of str where each package and description
7778
are appended formatted in Markdown"""
78-
packages_by_category[category] += "|" + package + "|" + description + "|\n"
79+
packages_by_category[category] += "| " + package + " | " + description + " |\n"
7980

8081

8182
if __name__ == "__main__":

0 commit comments

Comments
 (0)