X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=enhance_table.py;h=6fe12d4282fb8c0816756673041b33e57c076a7d;hb=46e399e76a33e978ff50cdfd735d4701093c1976;hp=66614c36433a9e64422fe1768ee11ef217624fde;hpb=e8850998bd3f831bf1291b0d5ea02d53cc7f2802;p=berlin-corona-table diff --git a/enhance_table.py b/enhance_table.py index 66614c3..6fe12d4 100755 --- a/enhance_table.py +++ b/enhance_table.py @@ -131,16 +131,24 @@ 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() sum_district = sorted_districts[-1] for district in sorted_districts: @@ -158,7 +166,7 @@ if output_type == 'html': 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,15 +175,16 @@ if output_type == 'html': if 'week_incidence' in district_data: week_inc = '%.1f' % district_data['week_incidence'] print('
date') - 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('') @@ -187,7 +196,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: """ @@ -195,6 +204,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)