Skip to content

Commit 4793372

Browse files
authored
Update write-metrics-md.py with comments
1 parent a801315 commit 4793372

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/write-metrics-md.py

+10-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33

44
def process_user_data(json_file, top_pages, this_year, map, md_file):
5+
"""
6+
Function for writing portal/metrics.md from saved files output by get-metrics.py
7+
"""
58
with open(json_file, 'r') as f:
69
user_data = json.load(f)
710

@@ -12,6 +15,7 @@ def process_user_data(json_file, top_pages, this_year, map, md_file):
1215
user_data.pop('Now')
1316
f.write('\n\n')
1417

18+
# Markdown table
1519
headers = '| Project | Users |'
1620
separator = '| ' + ' | '.join(['-----'] * 2) + ' |'
1721
rows = []
@@ -21,6 +25,7 @@ def process_user_data(json_file, top_pages, this_year, map, md_file):
2125
f.write(table)
2226
f.write('\n\n')
2327

28+
# Add plots
2429
f.write(f'![Users this Year]({this_year})\n\n')
2530
f.write(f'![Top Pages]({top_pages})\n\n')
2631
f.write(f'![Users by Country]({map})\n\n')
@@ -29,9 +34,12 @@ def process_user_data(json_file, top_pages, this_year, map, md_file):
2934

3035

3136
if __name__ == '__main__':
32-
json_file = 'portal/metrics/user_metrics.json'
37+
json_file = 'portal/metrics/user_metrics.json' # Accessed from root repository
38+
39+
# HTML is built from within `portal/` directory, so paths differ from json file.
3340
top_pages = 'metrics/toppages.png'
3441
this_year = 'metrics/thisyear.png'
3542
map = 'metrics/bycountry.png'
36-
md_file = 'portal/metrics.md'
43+
44+
md_file = 'portal/metrics.md' # Written from root repository
3745
process_user_data(json_file, top_pages, this_year, map, md_file)

0 commit comments

Comments
 (0)