First half of space weather screen. Still missing values updates on screen

This commit is contained in:
alessandro90
2019-03-30 23:40:34 +01:00
parent 432116a13d
commit f04aec4926
5 changed files with 64 additions and 14 deletions

View File

@@ -107,3 +107,6 @@ def format_numbers(lower, upper):
return f"{lower:,} {units[lower_factor]} - {upper:,} {units[upper_factor]}"
else:
return f"{lower:,} {units[lower_factor]}"
def double_split(string):
return [i.split() for i in string.splitlines()]