X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=enhance_table.py;h=105e1d52a6c1833ca9c8bb55fed8ed74db9e1289;hb=110bcb27bfd9f6e4a8984ca205f8ddae1e146f26;hp=70a9501cab411936b5644c53a5906b4975bdc32e;hpb=a0908b9bfc9d12ab7b87af794045ebe361a9702f;p=berlin-corona-table diff --git a/enhance_table.py b/enhance_table.py index 70a9501..105e1d5 100755 --- a/enhance_table.py +++ b/enhance_table.py @@ -137,6 +137,9 @@ table, tr, th, td { border: 1px solid black; } .day_row:nth-child(7n+2) { background-color: yellow; } .district_name { writing-mode: vertical-rl; transform: rotate(180deg); } +

Table of Berlin's Corona infection number development by districts. +

+

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

""") @@ -167,14 +170,15 @@ table, tr, th, td { border: 1px solid black; } week_inc = '%.1f' % district_data['week_incidence'] print('
date') print(new_infections) - if district == sum_district: - print('
') - else: - print('
') + 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('') @@ -194,6 +198,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)