4
4
import xml .etree .ElementTree as ET
5
5
from collections import defaultdict
6
6
7
+ # Dict[str (category), list (packages information)]
7
8
packages_by_category = defaultdict (str )
8
9
9
10
10
11
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
+
19
20
Args:
20
- file_path: path of the wiki .md file
21
+ file_path (str): The path to the output Markdown file.
21
22
"""
22
23
wikiContent = ""
23
24
for category in packages_by_category .keys ():
24
25
wikiContent += "## " + category + "\n \n "
25
26
wikiContent += "| Package | Description |\n "
26
- wikiContent += "|---| ---|\n "
27
+ wikiContent += "| ------- | ----------- |\n "
27
28
wikiContent += packages_by_category [category ] + "\n \n "
28
29
with open (file_path , "w" , encoding = "utf-8" ) as f :
29
30
f .write (wikiContent )
@@ -51,12 +52,12 @@ def find_element_text(parent, tag_name):
51
52
def process_packages_directory (packages_dir ):
52
53
""" Obtains the package name, description and category from a directory
53
54
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.
55
56
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 "|".
57
58
58
59
Args:
59
- packages: directory where all the packages reside
60
+ packages: directory where the packages reside.
60
61
"""
61
62
if not os .path .isdir (packages_dir ):
62
63
raise FileNotFoundError (f"Packages directory not found: { packages_dir } " )
@@ -66,16 +67,16 @@ def process_packages_directory(packages_dir):
66
67
nuspec_metadata = nuspec_tree .find ("{*}metadata" )
67
68
if nuspec_metadata is not None :
68
69
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
71
72
# not contain a category
72
73
if not category :
73
74
continue
74
75
description = find_element_text (nuspec_metadata , "description" )
75
76
package = find_element_text (nuspec_metadata , "id" )
76
77
"""packages_by_category is a dictionary of str where each package and description
77
78
are appended formatted in Markdown"""
78
- packages_by_category [category ] += "|" + package + "| " + description + "|\n "
79
+ packages_by_category [category ] += "| " + package + " | " + description + " |\n "
79
80
80
81
81
82
if __name__ == "__main__" :
0 commit comments