X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=enhance_table.py;h=7fe22b3cf04195dff574a14084b6f71b165c7ce6;hb=2b686eda23627862965e73c1abfd097a2ef0411a;hp=c5c11c22bfe1d52518243e13a279ad800c77301d;hpb=dc7fd6818afda18eb8e2d0c8c99af29ccf3655c1;p=berlin-corona-table diff --git a/enhance_table.py b/enhance_table.py index c5c11c2..7fe22b3 100755 --- a/enhance_table.py +++ b/enhance_table.py @@ -134,22 +134,22 @@ for i in range(len(sorted_dates)): db[district][date]['week_incidence'] = (week_sum / district_pop) * 100000 # Optimized for web browser viewing. +import calendar if output_type == 'html': 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.

+

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

""") @@ -160,17 +160,19 @@ th { text-align: left; vertical-align: bottom; } print('' % translate[district]) print('') - print('') - # In Chromium, the th only stay fixed if also given this class. - print('') - print('') - for district in sorted_districts: - print('' % - (translate[district], district)) - print('') + weekday_count = 0 for date in sorted_dates: + if weekday_count == 0: + print('') + print('') + print('') + for district in sorted_districts: + print('' % + (translate[district], district)) + print('') print('') - print('' % date) + weekday = calendar.day_name[datetime.date.fromisoformat(date).weekday()] + print('' % (date, weekday)) print('') print('') + weekday_count += 1 + if weekday_count != 7: + continue + weekday_count = 0 print('
%s
date?%s
date?%s
%s%s
%s
') for abbr in ['+', 'Σ', 'Ø', 'i']: print('' % @@ -195,6 +197,10 @@ th { text-align: left; vertical-align: bottom; } print('
%s
') print('
') print('

Symbols

') print('
') @@ -233,7 +239,8 @@ HTML view: https://plomlompom.com/berlin_corona.html""" print('-'*77) # Day table. - print(date) + weekday = calendar.day_name[datetime.date.fromisoformat(date).weekday()] + print('%s (%s)' % (date, weekday)) new_infections = [] weekly_sums = [] weekly_avgs = []