Hungary: Nógrád¶

  • Homepage of project: https://oscovida.github.io
  • Plots are explained at http://oscovida.github.io/plots.html
  • Execute this Jupyter Notebook using myBinder
In [1]:
import datetime
import time

start = datetime.datetime.now()
print(f"Notebook executed on: {start.strftime('%d/%m/%Y %H:%M:%S%Z')} {time.tzname[time.daylight]}")
Notebook executed on: 07/03/2023 16:42:02 CEST
In [2]:
%config InlineBackend.figure_formats = ['svg']
from oscovida import *
In [3]:
overview(country="Hungary", region="Nógrád", weeks=5);
2023-03-07T16:42:05.466964 image/svg+xml Matplotlib v3.7.1, https://matplotlib.org/ 21 Nov 28 Nov 05 Dec 12 Dec 19 Dec 60 60 80 80 7-day incidence rate Nógrád, Hungary, last 5 weeks, last data point from 2022-12-21 21 Nov 28 Nov 05 Dec 12 Dec 19 Dec 0 0 20 20 40 40 60 60 80 80 daily change Hungary-Nógrád new cases (rolling 7d mean) Hungary-Nógrád new cases 21 Nov 28 Nov 05 Dec 12 Dec 19 Dec No data available to plot daily change in deaths 21 Nov 28 Nov 05 Dec 12 Dec 19 Dec 0.75 0.75 1.00 1.00 1.25 1.25 1.50 1.50 1.75 1.75 R & growth factor (based on cases) Hungary-Nógrád cases daily growth factor Hungary-Nógrád cases daily growth factor (rolling mean) Hungary-Nógrád estimated R (using cases) 21 Nov 28 Nov 05 Dec 12 Dec 19 Dec No data available to plot R & growth factor (based on deaths) 21 Nov 28 Nov 05 Dec 12 Dec 19 Dec 0 0 2000 2000 4000 4000 cases doubling time [days]
In [4]:
overview(country="Hungary", region="Nógrád");
2023-03-07T16:42:10.093530 image/svg+xml Matplotlib v3.7.1, https://matplotlib.org/ May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 0 0 500 500 1000 1000 1500 1500 2000 2000 7-day incidence rate 94.0 Nógrád, Hungary, last data point from 2022-12-21 May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 0 0 200 200 400 400 600 600 800 800 daily change Hungary-Nógrád new cases (rolling 7d mean) Hungary-Nógrád new cases May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 No data available to plot daily change in deaths May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 0.75 0.75 1.00 1.00 1.25 1.25 1.50 1.50 1.75 1.75 R & growth factor (based on cases) Hungary-Nógrád cases daily growth factor Hungary-Nógrád cases daily growth factor (rolling mean) Hungary-Nógrád estimated R (using cases) May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 No data available to plot R & growth factor (based on deaths) May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 0 0 5000 5000 10000 10000 15000 15000 20000 20000 cases doubling time [days]
In [5]:
compare_plot(country="Hungary", region="Nógrád");
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
Cell In[5], line 1
----> 1 compare_plot(country="Hungary", region="Nógrád");

File /tank/oscovida/work/oscovida.github.io/oscovida.github.io/.venv/lib/python3.9/site-packages/oscovida/oscovida.py:1976, in compare_plot(country, region, subregion, savefig, normalise, dates, align)
   1974 if normalise:
   1975     _population = population(country=country, region=region, subregion=subregion)
-> 1976     c *= 100000 / _population
   1977     d *= 100000 / _population
   1979 if not subregion and not region:    # i.e. not a region of Germany

TypeError: unsupported operand type(s) for /: 'int' and 'NoneType'
In [6]:
# load the data
cases, deaths = get_region_hungary(county="Nógrád")

# get population of the region for future normalisation:
inhabitants = population(country="Hungary", region="Nógrád")
print(f'Population of country="Hungary", region="Nógrád": {inhabitants} people')

# compose into one table
table = compose_dataframe_summary(cases, deaths)

# show tables with up to 1000 rows
pd.set_option("display.max_rows", 1000)

# display the table
table
Population of country="Hungary", region="Nógrád": None people
Out[6]:
total cases daily new cases
Dátum
2022-12-21 46441 94
2022-12-14 46347 79
2022-12-07 46268 92
2022-11-30 46176 76
2022-11-23 46100 44
2022-11-16 46056 50
2022-11-09 46006 158
2022-10-26 45848 146
2022-10-19 45702 163
2022-10-12 45539 206
2022-10-05 45333 212
2022-09-28 45121 167
2022-09-21 44954 252
2022-09-14 44702 218
2022-09-07 44484 231
2022-08-31 44253 311
2022-08-24 43942 406
2022-08-17 43536 353
2022-08-10 43183 344
2022-08-03 42839 367
2022-07-27 42472 298
2022-07-20 42174 110
2022-07-13 42064 79
2022-07-06 41985 56
2022-06-29 41929 44
2022-06-22 41885 14
2022-06-15 41871 45
2022-06-08 41826 41
2022-06-01 41785 39
2022-05-25 41746 50
2022-05-18 41696 82
2022-05-11 41614 112
2022-05-02 41502 54
2022-04-28 41448 23
2022-04-27 41425 60
2022-04-26 41365 25
2022-04-25 41340 49
2022-04-22 41291 44
2022-04-21 41247 38
2022-04-20 41209 11
2022-04-19 41198 60
2022-04-14 41138 36
2022-04-13 41102 35
2022-04-12 41067 17
2022-04-11 41050 88
2022-04-08 40962 75
2022-04-06 40887 37
2022-04-05 40850 95
2022-04-01 40755 35
2022-03-31 40720 43
2022-03-30 40677 35
2022-03-29 40642 23
2022-03-28 40619 92
2022-03-25 40527 29
2022-03-24 40498 37
2022-03-23 40461 36
2022-03-22 40425 18
2022-03-21 40407 86
2022-03-18 40321 55
2022-03-17 40266 29
2022-03-16 40237 112
2022-03-11 40125 48
2022-03-10 40077 57
2022-03-09 40020 48
2022-03-08 39972 26
2022-03-07 39946 140
2022-03-04 39806 53
2022-03-03 39753 71
2022-03-02 39682 96
2022-03-01 39586 37
2022-02-28 39549 192
2022-02-25 39357 108
2022-02-24 39249 147
2022-02-23 39102 155
2022-02-22 38947 40
2022-02-21 38907 296
2022-02-18 38611 191
2022-02-17 38420 224
2022-02-16 38196 250
2022-02-15 37946 50
2022-02-14 37896 492
2022-02-11 37404 248
2022-02-10 37156 291
2022-02-09 36865 358
2022-02-08 36507 73
2022-02-07 36434 771
2022-02-04 35663 404
2022-02-03 35259 416
2022-02-02 34843 384
2022-02-01 34459 141
2022-01-31 34318 866
2022-01-28 33452 355
2022-01-27 33097 336
2022-01-26 32761 275
2022-01-25 32486 89
2022-01-24 32397 697
2022-01-21 31700 267
2022-01-20 31433 259
2022-01-19 31174 205
2022-01-18 30969 81
2022-01-17 30888 250
2022-01-14 30638 108
2022-01-13 30530 170
2022-01-12 30360 146
2022-01-11 30214 29
2022-01-10 30185 237
2022-01-07 29948 112
2022-01-06 29836 132
2022-01-05 29704 98
2022-01-04 29606 39
2022-01-03 29567 120
2021-12-31 29447 57
2021-12-30 29390 73
2021-12-29 29317 59
2021-12-28 29258 21
2021-12-27 29237 132
2021-12-23 29105 90
2021-12-22 29015 77
2021-12-21 28938 40
2021-12-20 28898 183
2021-12-17 28715 114
2021-12-16 28601 125
2021-12-15 28476 108
2021-12-14 28368 52
2021-12-13 28316 306
2021-12-10 28010 151
2021-12-09 27859 157
2021-12-08 27702 203
2021-12-07 27499 67
2021-12-06 27432 533
2021-12-03 26899 151
2021-12-02 26748 221
2021-12-01 26527 179
2021-11-30 26348 102
2021-11-29 26246 599
2021-11-26 25647 163
2021-11-25 25484 250
2021-11-24 25234 237
2021-11-23 24997 140
2021-11-22 24857 500
2021-11-19 24357 195
2021-11-18 24162 208
2021-11-17 23954 201
2021-11-16 23753 59
2021-11-15 23694 466
2021-11-12 23228 187
2021-11-11 23041 158
2021-11-10 22883 163
2021-11-09 22720 111
2021-11-08 22609 385
2021-11-05 22224 163
2021-11-04 22061 113
2021-11-03 21948 31
2021-11-02 21917 33
2021-11-01 21884 176
2021-10-29 21708 94
2021-10-28 21614 82
2021-10-27 21532 64
2021-10-26 21468 28
2021-10-25 21440 132
2021-10-22 21308 54
2021-10-21 21254 61
2021-10-20 21193 53
2021-10-19 21140 5
2021-10-18 21135 63
2021-10-15 21072 31
2021-10-14 21041 27
2021-10-13 21014 33
2021-10-12 20981 3
2021-10-11 20978 41
2021-10-08 20937 21
2021-10-07 20916 32
2021-10-06 20884 36
2021-10-05 20848 9
2021-10-04 20839 59
2021-10-01 20780 29
2021-09-30 20751 20
2021-09-29 20731 16
2021-09-28 20715 8
2021-09-27 20707 33
2021-09-24 20674 15
2021-09-23 20659 18
2021-09-22 20641 14
2021-09-21 20627 5
2021-09-20 20622 31
2021-09-17 20591 13
2021-09-16 20578 9
2021-09-15 20569 17
2021-09-14 20552 12
2021-09-13 20540 26
2021-09-10 20514 10
2021-09-09 20504 13
2021-09-08 20491 11
2021-09-07 20480 3
2021-09-06 20477 19
2021-09-03 20458 7
2021-09-02 20451 9
2021-09-01 20442 9
2021-08-31 20433 1
2021-08-30 20432 12
2021-08-27 20420 4
2021-08-26 20416 3
2021-08-25 20413 7
2021-08-24 20406 0
2021-08-23 20406 9
2021-08-19 20397 5
2021-08-18 20392 2
2021-08-17 20390 0
2021-08-16 20390 4
2021-08-13 20386 2
2021-08-12 20384 2
2021-08-11 20382 1
2021-08-10 20381 1
2021-08-09 20380 2
2021-08-06 20378 2
2021-08-05 20376 0
2021-08-04 20376 2
2021-08-03 20374 0
2021-08-02 20374 5
2021-07-30 20369 2
2021-07-29 20367 0
2021-07-28 20367 0
2021-07-27 20367 0
2021-07-26 20367 2
2021-07-23 20365 1
2021-07-22 20364 1
2021-07-21 20363 1
2021-07-20 20362 1
2021-07-19 20361 0
2021-07-16 20361 0
2021-07-15 20361 0
2021-07-14 20361 0
2021-07-13 20361 1
2021-07-12 20360 3
2021-07-09 20357 2
2021-07-08 20355 1
2021-07-07 20354 2
2021-07-06 20352 0
2021-07-05 20352 1
2021-07-02 20351 2
2021-07-01 20349 0
2021-06-30 20349 2
2021-06-29 20347 1
2021-06-28 20346 3
2021-06-25 20343 2
2021-06-24 20341 3
2021-06-23 20338 2
2021-06-22 20336 2
2021-06-21 20334 7
2021-06-18 20327 2
2021-06-17 20325 4
2021-06-16 20321 3
2021-06-15 20318 2
2021-06-14 20316 6
2021-06-11 20310 4
2021-06-10 20306 4
2021-06-09 20302 7
2021-06-08 20295 2
2021-06-07 20293 4
2021-06-06 20289 4
2021-06-05 20285 13
2021-06-04 20272 4
2021-06-03 20268 8
2021-06-02 20260 5
2021-06-01 20255 12
2021-05-31 20243 2
2021-05-30 20241 4
2021-05-29 20237 10
2021-05-28 20227 12
2021-05-27 20215 9
2021-05-26 20206 4
2021-05-25 20202 1
2021-05-24 20201 6
2021-05-23 20195 12
2021-05-22 20183 8
2021-05-21 20175 20
2021-05-20 20155 13
2021-05-19 20142 20
2021-05-18 20122 5
2021-05-17 20117 0
2021-05-16 20117 26
2021-05-15 20091 14
2021-05-14 20077 18
2021-05-13 20059 30
2021-05-12 20029 28
2021-05-11 20001 7
2021-05-10 19994 18
2021-05-09 19976 20
2021-05-08 19956 31
2021-05-07 19925 30
2021-05-06 19895 48
2021-05-05 19847 27
2021-05-04 19820 34
2021-05-03 19786 10
2021-05-02 19776 25
2021-05-01 19751 36
2021-04-30 19715 57
2021-04-29 19658 78
2021-04-28 19580 52
2021-04-27 19528 47
2021-04-26 19481 19
2021-04-25 19462 57
2021-04-24 19405 75
2021-04-23 19330 72
2021-04-22 19258 98
2021-04-21 19160 74
2021-04-20 19086 39
2021-04-19 19047 19
2021-04-18 19028 63
2021-04-17 18965 85
2021-04-16 18880 144
2021-04-15 18736 181
2021-04-14 18555 122
2021-04-13 18433 77
2021-04-12 18356 32
2021-04-11 18324 151
2021-04-10 18173 164
2021-04-09 18009 212
2021-04-08 17797 247
2021-04-07 17550 36
2021-04-06 17514 49
2021-04-05 17465 30
2021-04-04 17435 91
2021-04-03 17344 227
2021-04-02 17117 185
2021-04-01 16932 211
2021-03-31 16721 180
2021-03-30 16541 63
2021-03-29 16478 132
2021-03-28 16346 220
2021-03-27 16126 257
2021-03-26 15869 158
2021-03-25 15711 283
2021-03-24 15428 198
2021-03-23 15230 138
2021-03-22 15092 134
2021-03-21 14958 258
2021-03-20 14700 371
2021-03-19 14329 325
2021-03-18 14004 242
2021-03-17 13762 120
2021-03-16 13642 81
2021-03-15 13561 177
2021-03-14 13384 213
2021-03-13 13171 281
2021-03-12 12890 241
2021-03-11 12649 241
2021-03-10 12408 176
2021-03-09 12232 113
2021-03-08 12119 32
2021-03-07 12087 202
2021-03-06 11885 259
2021-03-05 11626 168
2021-03-04 11458 208
2021-03-03 11250 191
2021-03-02 11059 65
2021-03-01 10994 65
2021-02-28 10929 154
2021-02-27 10775 167
2021-02-26 10608 178
2021-02-25 10430 177
2021-02-24 10253 124
2021-02-23 10129 52
2021-02-22 10077 29
2021-02-21 10048 106
2021-02-20 9942 102
2021-02-19 9840 82
2021-02-18 9758 116
2021-02-17 9642 100
2021-02-16 9542 25
2021-02-15 9517 17
2021-02-14 9500 46
2021-02-13 9454 37
2021-02-12 9417 54
2021-02-11 9363 46
2021-02-10 9317 49
2021-02-09 9268 32
2021-02-08 9236 22
2021-02-07 9214 33
2021-02-06 9181 26
2021-02-05 9155 44
2021-02-04 9111 55
2021-02-03 9056 40
2021-02-02 9016 13
2021-02-01 9003 9
2021-01-31 8994 35
2021-01-30 8959 36
2021-01-29 8923 32
2021-01-28 8891 41
2021-01-27 8850 38
2021-01-26 8812 7
2021-01-25 8805 16
2021-01-24 8789 29
2021-01-23 8760 40
2021-01-22 8720 40
2021-01-21 8680 37
2021-01-20 8643 31
2021-01-19 8612 9
2021-01-18 8603 13
2021-01-17 8590 26
2021-01-16 8564 27
2021-01-15 8537 35
2021-01-14 8502 48
2021-01-13 8454 42
2021-01-12 8412 6
2021-01-11 8406 39
2021-01-10 8367 43
2021-01-09 8324 20
2021-01-08 8304 74
2021-01-07 8230 97
2021-01-06 8133 70
2021-01-05 8063 11
2021-01-04 8052 3
2021-01-03 8049 3
2021-01-02 8046 28
2021-01-01 8018 55
2020-12-31 7963 114
2020-12-30 7849 60
2020-12-29 7789 10
2020-12-28 7779 24
2020-12-27 7755 1
2020-12-26 7754 2
2020-12-25 7752 60
2020-12-24 7692 74
2020-12-23 7618 81
2020-12-22 7537 12
2020-12-21 7525 45
2020-12-20 7480 58
2020-12-19 7422 154
2020-12-18 7268 94
2020-12-17 7174 118
2020-12-16 7056 127
2020-12-15 6929 26
2020-12-14 6903 115
2020-12-13 6788 126
2020-12-12 6662 161
2020-12-11 6501 190
2020-12-10 6311 206
2020-12-09 6105 88
2020-12-08 6017 50
2020-12-07 5967 82
2020-12-06 5885 152
2020-12-05 5733 123
2020-12-04 5610 171
2020-12-03 5439 201
2020-12-02 5238 139
2020-12-01 5099 69
2020-11-30 5030 78
2020-11-29 4952 234
2020-11-28 4718 89
2020-11-27 4629 163
2020-11-26 4466 160
2020-11-25 4306 118
2020-11-24 4188 26
2020-11-23 4162 57
2020-11-22 4105 64
2020-11-21 4041 58
2020-11-20 3983 104
2020-11-19 3879 52
2020-11-18 3827 45
2020-11-17 3782 71
2020-11-16 3711 53
2020-11-15 3658 165
2020-11-14 3493 273
2020-11-13 3220 161
2020-11-12 3059 113
2020-11-11 2946 153
2020-11-10 2793 87
2020-11-09 2706 35
2020-11-08 2671 142
2020-11-07 2529 61
2020-11-06 2468 79
2020-11-05 2389 143
2020-11-04 2246 86
2020-11-03 2160 102
2020-11-02 2058 140
2020-11-01 1918 61
2020-10-31 1857 90
2020-10-30 1767 56
2020-10-29 1711 41
2020-10-28 1670 55
2020-10-27 1615 115
2020-10-26 1500 86
2020-10-25 1414 104
2020-10-24 1310 37
2020-10-23 1273 83
2020-10-22 1190 64
2020-10-21 1126 31
2020-10-20 1095 34
2020-10-19 1061 33
2020-10-18 1028 90
2020-10-17 938 59
2020-10-16 879 43
2020-10-15 836 16
2020-10-14 820 21
2020-10-13 799 33
2020-10-12 766 43
2020-10-11 723 27
2020-10-10 696 41
2020-10-09 655 50
2020-10-08 605 21
2020-10-07 584 9
2020-10-06 575 19
2020-10-05 556 75
2020-10-04 481 33
2020-10-03 448 20
2020-10-02 428 40
2020-10-01 388 9
2020-09-30 379 17
2020-09-29 362 25
2020-09-28 337 14
2020-09-27 323 12
2020-09-26 311 24
2020-09-25 287 37
2020-09-24 250 8
2020-09-23 242 15
2020-09-22 227 8
2020-09-21 219 12
2020-09-20 207 8
2020-09-19 199 27
2020-09-18 172 4
2020-09-17 168 0
2020-09-16 168 15
2020-09-15 153 4
2020-09-14 149 10
2020-09-13 139 10
2020-09-12 129 16
2020-09-11 113 7
2020-09-10 106 4
2020-09-09 102 0
2020-09-08 102 5
2020-09-07 97 10
2020-09-06 87 3
2020-09-05 84 6
2020-09-04 78 0
2020-09-03 78 7
2020-09-02 71 1
2020-09-01 70 5
2020-08-31 65 2
2020-08-30 63 -1
2020-08-29 64 2
2020-08-28 62 0
2020-08-27 62 0
2020-08-26 62 0
2020-08-25 62 0
2020-08-24 62 0
2020-08-23 62 0
2020-08-22 62 0
2020-08-21 62 3
2020-08-20 59 2
2020-08-19 57 0
2020-08-18 57 0
2020-08-17 57 0
2020-08-16 57 1
2020-08-15 56 0
2020-08-14 56 0
2020-08-13 56 0
2020-08-12 56 0
2020-08-11 56 0
2020-08-10 56 0
2020-08-09 56 2
2020-08-08 54 0
2020-08-07 54 0
2020-08-06 54 1
2020-08-05 53 0
2020-08-04 53 0
2020-08-03 53 0
2020-08-02 53 0
2020-08-01 53 0
2020-07-31 53 -1
2020-07-30 54 1
2020-07-29 53 0
2020-07-28 53 0
2020-07-27 53 0
2020-07-26 53 0
2020-07-25 53 0
2020-07-24 53 0
2020-07-23 53 0
2020-07-22 53 0
2020-07-21 53 0
2020-07-20 53 1
2020-07-19 52 0
2020-07-18 52 0
2020-07-17 52 0
2020-07-16 52 0
2020-07-15 52 0
2020-07-14 52 0
2020-07-13 52 0
2020-07-12 52 0
2020-07-11 52 0
2020-07-10 52 0
2020-07-09 52 0
2020-07-08 52 0
2020-07-06 52 0
2020-07-05 52 0
2020-07-04 52 0
2020-07-03 52 0
2020-07-02 52 0
2020-07-01 52 0
2020-06-30 52 1
2020-06-29 51 0
2020-06-28 51 0
2020-06-27 51 0
2020-06-26 51 0
2020-06-25 51 0
2020-06-24 51 0
2020-06-23 51 0
2020-06-22 51 0
2020-06-21 51 0
2020-06-20 51 0
2020-06-19 51 0
2020-06-18 51 0
2020-06-17 51 0
2020-06-15 51 0
2020-06-14 51 0
2020-06-13 51 2
2020-06-12 49 -3
2020-06-11 52 0
2020-06-10 52 0
2020-06-09 52 0
2020-06-08 52 0
2020-06-07 52 2
2020-06-06 50 3
2020-06-05 47 0
2020-06-04 47 0
2020-06-03 47 4
2020-06-02 43 0
2020-06-01 43 0
2020-05-31 43 1
2020-05-30 42 5
2020-05-29 37 1
2020-05-28 36 1
2020-05-27 35 1
2020-05-26 34 2
2020-05-25 32 0
2020-05-24 32 1
2020-05-23 31 3
2020-05-22 28 1
2020-05-21 27 1
2020-05-20 26 1
2020-05-19 25 0
2020-05-18 25 0
2020-05-17 25 0
2020-05-16 25 0
2020-05-15 25 0
2020-05-14 25 0
2020-05-13 25 0
2020-05-12 25 0
2020-05-11 25 0
2020-05-10 25 0
2020-05-09 25 0
2020-05-08 25 0
2020-05-07 25 0
2020-05-06 25 1
2020-05-05 24 0
2020-05-04 24 0
2020-05-03 24 0
2020-05-02 24 0
2020-05-01 24 0
2020-04-30 24 0
2020-04-29 24 1
2020-04-28 23 0
2020-04-27 23 0
2020-04-26 23 0
2020-04-25 23 0
2020-04-24 23 0
2020-04-23 23 0
2020-04-22 23 0
2020-04-21 23 1
2020-04-20 22 0
2020-04-19 22 2
2020-04-18 20 0
2020-04-17 20 1
2020-04-16 19 0
2020-04-15 19 0
2020-04-14 19 0
2020-04-13 19 1
2020-04-12 18 1
2020-04-11 17 5
2020-04-10 12 0
2020-04-09 12 0
2020-04-08 12 1
2020-04-07 11 1
2020-04-06 10 0
2020-04-05 10 2
2020-04-04 8 1
2020-04-03 7 1
2020-04-02 6 1
2020-04-01 5 0

Explore the data in your web browser¶

  • If you want to execute this notebook, click here to use myBinder
  • and wait (~1 to 2 minutes)
  • Then press SHIFT+RETURN to advance code cell to code cell
  • See http://jupyter.org for more details on how to use Jupyter Notebook

Acknowledgements:¶

  • Johns Hopkins University provides data for countries
  • Robert Koch Institute provides data for within Germany
  • Atlo Team for gathering and providing data from Hungary (https://atlo.team/koronamonitor/)
  • Open source and scientific computing community for the data tools
  • Github for hosting repository and html files
  • Project Jupyter for the Notebook and binder service
  • The H2020 project Photon and Neutron Open Science Cloud (PaNOSC)

In [7]:
print(f"Download of data from Johns Hopkins university: cases at {fetch_cases_last_execution()} and "
      f"deaths at {fetch_deaths_last_execution()}.")
Download of data from Johns Hopkins university: cases at 07/03/2023 09:31:22 and deaths at 07/03/2023 09:31:21.
In [8]:
# to force a fresh download of data, run "clear_cache()"
In [9]:
print(f"Notebook execution took: {datetime.datetime.now()-start}")
Notebook execution took: 0:00:09.901218