X-Git-Url: https://plomlompom.com/repos/do_day?a=blobdiff_plain;f=enhance_table.py;h=46e0b41b85b9fe5eddc1935204c435b7838ca1ce;hb=ac2a6b52cc241f80322745693ca6e2e12de2503a;hp=03382554e2dbfc538aca8107777ed15ee789546c;hpb=6fb8fb729535839b201527cc04662588df3ea425;p=berlin-corona-table diff --git a/enhance_table.py b/enhance_table.py index 0338255..46e0b41 100755 --- a/enhance_table.py +++ b/enhance_table.py @@ -131,14 +131,19 @@ 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. -

+Berlin's Corona infection numbers, development by districts + +

Berlin's Corona infection numbers, development by districts

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

@@ -160,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'] @@ -169,15 +174,16 @@ table, tr, th, td { border: 1px solid black; } if 'week_incidence' in district_data: week_inc = '%.1f' % district_data['week_incidence'] print('
') - print(new_infections) - if district == sum_district: - print('
') - else: - print('
') + print('%s' % new_infections) + if district != sum_district: + print('
') + print('
') print('' % (long_wsum, week_sum)) print('' % (long_wavg, week_avg)) print('' % (long_winc, week_inc)) - print('
%s%s
%s%s
%s%s
') + print('
') + if district != sum_district: + print('') print('') print('') print('') @@ -189,7 +195,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. Abbrevations/explanations: """