#!//usr/bin/env python3
+import sys
+if len(sys.argv) != 2:
+ print('Expecting infections table file path as only argument.')
+ exit(1)
+infections_table = sys.argv[1]
+
# District population numbers as per Wikipedia.
district_pops = {
'CW': 342332,
'sum': 3754418,
}
-f = open('daily_infections_table.txt', 'r')
+f = open(infections_table, 'r')
lines = f.readlines()
f.close()
'END { printf "\n" }' "${filename}" >> "${table_path}"
# Write enhanced table output to directory served by web server.
-./enhance_table.py > /var/www/html/berlin_corona.txt
+./enhance_table.py "${table_path}" > /var/www/html/berlin_corona.txt