X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D?a=blobdiff_plain;ds=sidebyside;f=enhance_table.py;h=fd401671a3723ed5798b4f49927e43e0e6b34aaa;hb=bdc52bdeda5f03066adb764c810a37dff408f2ff;hp=14c0134ebb323a7218b6a69730cdbe1e23e9ba7a;hpb=3e0c98e1d945f82a92df64e4493ccf054c674cae;p=berlin-corona-table diff --git a/enhance_table.py b/enhance_table.py index 14c0134..fd40167 100755 --- a/enhance_table.py +++ b/enhance_table.py @@ -131,13 +131,20 @@ for i in range(len(sorted_dates)): # Optimized for web browser viewing. if output_type == 'html': - print(""" + print(""" + +

Table of Berlin's Corona infection number development by districts

-

Updated daily at 9pm. Source code. Text view optimized for terminal curl.

+.bonus_data th { font-weight: normal; } +.new_infections { font-weight: bold; } + +Berlin's Corona infection numbers, development by districts + +

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.

""") @@ -158,7 +165,7 @@ table, tr, th, td { border: 1px solid black; } long_winc = translate['winc'] for district in sorted_districts: district_data = db[district][date] - week_sum = week_avg = week_inc = '' + week_sum = week_avg = week_inc = '(not enough data)' new_infections = district_data['new_infections'] if 'week_sum' in district_data: week_sum = '%s' % district_data['week_sum'] @@ -167,10 +174,10 @@ table, tr, th, td { border: 1px solid black; } if 'week_incidence' in district_data: week_inc = '%.1f' % district_data['week_incidence'] print('
date') - print(new_infections) + print('%s' % new_infections) if district != sum_district: print('
') - print('') + print('
') print('' % (long_wsum, week_sum)) print('' % (long_wavg, week_avg)) print('' % (long_winc, week_inc)) @@ -188,7 +195,7 @@ elif output_type == 'txt': # Explain what this is. intro = \ """Table of Berlin's Corona infection number development by districts. -Updated daily at 9pm. +Updated daily at 9pm based on data from the "Senatsverwaltung für Gesundheit, Pflege und Gleichstellung". Abbrevations/explanations: """
%s%s
%s%s
%s%s