X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=enhance_table.py;h=c2ea18d658abfa5e764d7f1c59d38e2448e7609c;hb=8a5c961404590f6ef2145d6e37906d41775361f0;hp=0b30d216f5105d66391251659427caa7903f316a;hpb=049ba1c6850f9344523f8efd46c837a6c15263ee;p=berlin-corona-table diff --git a/enhance_table.py b/enhance_table.py index 0b30d21..c2ea18d 100755 --- a/enhance_table.py +++ b/enhance_table.py @@ -131,29 +131,53 @@ for i in range(len(sorted_dates)): # Optimized for web browser viewing. if output_type == 'html': - print('') - print('') - print('') - print('') - print('') + print(""" + + + +Berlin's Corona infection numbers, development by districts + +home · contact · privacy +

Berlin's Corona infection numbers, development by districts

+

Updated daily at 9pm based on data from the "Senatsverwaltung für Gesundheit, Pflege und Gleichstellung". Source code. Text view optimized for terminal curl.

+
date
+ +""") + sorted_dates.reverse() + long_wsum = translate['wsum'] + long_wavg = translate['wavg'] + long_winc = translate['winc'] + sum_district = sorted_districts[-1] for district in sorted_districts: long_form = translate[district] - print('' % long_form) + # Wrap in div because the vertical orientation otherwise fails + # in Chromium. + print('' % long_form) + print('') + print('') + # In Chromium, the th only stay fixed if also given this class. + print('') + print('') + for district in sorted_districts: + print('' % district) print('') - sorted_dates.reverse() for date in sorted_dates: - print('') + print('') print('' % date) - long_wsum = translate['wsum'] - long_wavg = translate['wavg'] - long_winc = translate['winc'] + print('') for district in sorted_districts: district_data = db[district][date] - week_sum = week_avg = week_inc = '' + week_sum = week_avg = week_inc = '?' new_infections = district_data['new_infections'] if 'week_sum' in district_data: week_sum = '%s' % district_data['week_sum'] @@ -162,12 +186,12 @@ if output_type == 'html': if 'week_incidence' in district_data: week_inc = '%.1f' % district_data['week_incidence'] print('') print('') print('
%s
%s
date%s
%s') + print('') + print('' % long_wsum) + print('' % long_wavg) + print('' % long_winc) + print('
+
Σ
Ø
i
') - print(new_infections) - print('
') - print('' % (long_wsum, week_sum)) - print('' % (long_wavg, week_avg)) - print('' % (long_winc, week_inc)) - print('
%s%s
%s%s
%s%s
') + print('') + print('' % new_infections) + print('' % week_sum) + print('' % week_avg) + print('' % week_inc) + print('
%s
%s
%s
%s
') print('
') @@ -179,7 +203,7 @@ elif output_type == 'txt': # Explain what this is. intro = \ """Table of Berlin's Corona infection number development by districts. -Updated daily around 9pm. +Updated daily at 9pm based on data from the "Senatsverwaltung für Gesundheit, Pflege und Gleichstellung". Abbrevations/explanations: """ @@ -187,6 +211,8 @@ Abbrevations/explanations: intro += "%s: %s\n" % (k, translate[k]) intro += """ Source code: https://plomlompom.com/repos/?p=berlin-corona-table + +HTML view: https://plomlompom.com/berlin_corona.html """ print(intro)