Hungary: Veszprém¶

  • 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:18 CEST
In [2]:
%config InlineBackend.figure_formats = ['svg']
from oscovida import *
In [3]:
overview(country="Hungary", region="Veszprém", weeks=5);
2023-03-07T16:42:20.886875 image/svg+xml Matplotlib v3.7.1, https://matplotlib.org/ 21 Nov 28 Nov 05 Dec 12 Dec 19 Dec 140 140 160 160 180 180 7-day incidence rate 147.0 Veszprém, Hungary, last 5 weeks, last data point from 2022-12-21 21 Nov 28 Nov 05 Dec 12 Dec 19 Dec 0 0 50 50 100 100 150 150 200 200 daily change Hungary-Veszprém new cases (rolling 7d mean) Hungary-Veszprém 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.8 0.8 1.0 1.0 1.2 1.2 R & growth factor (based on cases) Hungary-Veszprém cases daily growth factor Hungary-Veszprém cases daily growth factor (rolling mean) Hungary-Veszprém 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 1000 1000 2000 2000 3000 3000 cases doubling time [days]
In [4]:
overview(country="Hungary", region="Veszprém");
2023-03-07T16:42:24.990337 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 2000 2000 4000 4000 7-day incidence rate 147.0 Veszprém, 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 500 500 1000 1000 1500 1500 2000 2000 daily change Hungary-Veszprém new cases (rolling 7d mean) Hungary-Veszprém 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.8 0.8 1.0 1.0 1.2 1.2 R & growth factor (based on cases) Hungary-Veszprém cases daily growth factor Hungary-Veszprém cases daily growth factor (rolling mean) Hungary-Veszprém 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 10000 10000 20000 20000 cases doubling time [days]
In [5]:
compare_plot(country="Hungary", region="Veszprém");
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
Cell In[5], line 1
----> 1 compare_plot(country="Hungary", region="Veszprém");

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="Veszprém")

# get population of the region for future normalisation:
inhabitants = population(country="Hungary", region="Veszprém")
print(f'Population of country="Hungary", region="Veszprém": {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="Veszprém": None people
Out[6]:
total cases daily new cases
Dátum
2022-12-21 83731 147
2022-12-14 83584 195
2022-12-07 83389 175
2022-11-30 83214 138
2022-11-23 83076 153
2022-11-16 82923 178
2022-11-09 82745 512
2022-10-26 82233 397
2022-10-19 81836 549
2022-10-12 81287 569
2022-10-05 80718 499
2022-09-28 80219 367
2022-09-21 79852 297
2022-09-14 79555 321
2022-09-07 79234 328
2022-08-31 78906 362
2022-08-24 78544 463
2022-08-17 78081 452
2022-08-10 77629 546
2022-08-03 77083 709
2022-07-27 76374 473
2022-07-20 75901 350
2022-07-13 75551 267
2022-07-06 75284 110
2022-06-29 75174 92
2022-06-22 75082 51
2022-06-15 75031 23
2022-06-08 75008 44
2022-06-01 74964 50
2022-05-25 74914 101
2022-05-18 74813 157
2022-05-11 74656 172
2022-05-02 74484 100
2022-04-28 74384 57
2022-04-27 74327 49
2022-04-26 74278 28
2022-04-25 74250 116
2022-04-22 74134 45
2022-04-21 74089 67
2022-04-20 74022 37
2022-04-19 73985 128
2022-04-14 73857 69
2022-04-13 73788 71
2022-04-12 73717 54
2022-04-11 73663 143
2022-04-08 73520 156
2022-04-06 73364 60
2022-04-05 73304 178
2022-04-01 73126 73
2022-03-31 73053 75
2022-03-30 72978 60
2022-03-29 72918 56
2022-03-28 72862 187
2022-03-25 72675 61
2022-03-24 72614 107
2022-03-23 72507 65
2022-03-22 72442 57
2022-03-21 72385 183
2022-03-18 72202 -10
2022-03-17 72212 141
2022-03-16 72071 188
2022-03-11 71883 78
2022-03-10 71805 113
2022-03-09 71692 82
2022-03-08 71610 68
2022-03-07 71542 196
2022-03-04 71346 111
2022-03-03 71235 141
2022-03-02 71094 113
2022-03-01 70981 86
2022-02-28 70895 326
2022-02-25 70569 189
2022-02-24 70380 215
2022-02-23 70165 216
2022-02-22 69949 161
2022-02-21 69788 661
2022-02-18 69127 334
2022-02-17 68793 383
2022-02-16 68410 361
2022-02-15 68049 221
2022-02-14 67828 938
2022-02-11 66890 512
2022-02-10 66378 535
2022-02-09 65843 523
2022-02-08 65320 290
2022-02-07 65030 1508
2022-02-04 63522 697
2022-02-03 62825 771
2022-02-02 62054 709
2022-02-01 61345 508
2022-01-31 60837 2026
2022-01-28 58811 801
2022-01-27 58010 788
2022-01-26 57222 709
2022-01-25 56513 548
2022-01-24 55965 1690
2022-01-21 54275 630
2022-01-20 53645 500
2022-01-19 53145 446
2022-01-18 52699 243
2022-01-17 52456 660
2022-01-14 51796 341
2022-01-13 51455 317
2022-01-12 51138 199
2022-01-11 50939 101
2022-01-10 50838 577
2022-01-07 50261 242
2022-01-06 50019 233
2022-01-05 49786 162
2022-01-04 49624 87
2022-01-03 49537 233
2021-12-31 49304 128
2021-12-30 49176 110
2021-12-29 49066 103
2021-12-28 48963 70
2021-12-27 48893 353
2021-12-23 48540 172
2021-12-22 48368 172
2021-12-21 48196 124
2021-12-20 48072 475
2021-12-17 47597 222
2021-12-16 47375 279
2021-12-15 47096 245
2021-12-14 46851 230
2021-12-13 46621 674
2021-12-10 45947 434
2021-12-09 45513 380
2021-12-08 45133 390
2021-12-07 44743 288
2021-12-06 44455 1254
2021-12-03 43201 617
2021-12-02 42584 503
2021-12-01 42081 559
2021-11-30 41522 354
2021-11-29 41168 1249
2021-11-26 39919 576
2021-11-25 39343 613
2021-11-24 38730 465
2021-11-23 38265 233
2021-11-22 38032 869
2021-11-19 37163 475
2021-11-18 36688 414
2021-11-17 36274 286
2021-11-16 35988 201
2021-11-15 35787 680
2021-11-12 35107 225
2021-11-11 34882 235
2021-11-10 34647 274
2021-11-09 34373 194
2021-11-08 34179 453
2021-11-05 33726 143
2021-11-04 33583 156
2021-11-03 33427 80
2021-11-02 33347 30
2021-11-01 33317 310
2021-10-29 33007 76
2021-10-28 32931 101
2021-10-27 32830 78
2021-10-26 32752 24
2021-10-25 32728 153
2021-10-22 32575 63
2021-10-21 32512 62
2021-10-20 32450 37
2021-10-19 32413 15
2021-10-18 32398 82
2021-10-15 32316 31
2021-10-14 32285 21
2021-10-13 32264 27
2021-10-12 32237 4
2021-10-11 32233 55
2021-10-08 32178 25
2021-10-07 32153 24
2021-10-06 32129 14
2021-10-05 32115 4
2021-10-04 32111 51
2021-10-01 32060 25
2021-09-30 32035 28
2021-09-29 32007 20
2021-09-28 31987 8
2021-09-27 31979 38
2021-09-24 31941 24
2021-09-23 31917 15
2021-09-22 31902 18
2021-09-21 31884 7
2021-09-20 31877 29
2021-09-17 31848 10
2021-09-16 31838 14
2021-09-15 31824 7
2021-09-14 31817 9
2021-09-13 31808 23
2021-09-10 31785 20
2021-09-09 31765 16
2021-09-08 31749 4
2021-09-07 31745 1
2021-09-06 31744 20
2021-09-03 31724 9
2021-09-02 31715 8
2021-09-01 31707 4
2021-08-31 31703 1
2021-08-30 31702 13
2021-08-27 31689 1
2021-08-26 31688 8
2021-08-25 31680 1
2021-08-24 31679 2
2021-08-23 31677 10
2021-08-19 31667 4
2021-08-18 31663 3
2021-08-17 31660 2
2021-08-16 31658 3
2021-08-13 31655 4
2021-08-12 31651 1
2021-08-11 31650 0
2021-08-10 31650 0
2021-08-09 31650 8
2021-08-06 31642 0
2021-08-05 31642 1
2021-08-04 31641 0
2021-08-03 31641 1
2021-08-02 31640 6
2021-07-30 31634 1
2021-07-29 31633 5
2021-07-28 31628 3
2021-07-27 31625 0
2021-07-26 31625 4
2021-07-23 31621 1
2021-07-22 31620 4
2021-07-21 31616 1
2021-07-20 31615 1
2021-07-19 31614 6
2021-07-16 31608 5
2021-07-15 31603 3
2021-07-14 31600 2
2021-07-13 31598 1
2021-07-12 31597 5
2021-07-09 31592 4
2021-07-08 31588 0
2021-07-07 31588 3
2021-07-06 31585 0
2021-07-05 31585 2
2021-07-02 31583 2
2021-07-01 31581 0
2021-06-30 31581 1
2021-06-29 31580 4
2021-06-28 31576 5
2021-06-25 31571 2
2021-06-24 31569 2
2021-06-23 31567 5
2021-06-22 31562 2
2021-06-21 31560 6
2021-06-18 31554 4
2021-06-17 31550 3
2021-06-16 31547 7
2021-06-15 31540 3
2021-06-14 31537 10
2021-06-11 31527 7
2021-06-10 31520 10
2021-06-09 31510 6
2021-06-08 31504 6
2021-06-07 31498 4
2021-06-06 31494 5
2021-06-05 31489 12
2021-06-04 31477 13
2021-06-03 31464 17
2021-06-02 31447 12
2021-06-01 31435 11
2021-05-31 31424 9
2021-05-30 31415 21
2021-05-29 31394 24
2021-05-28 31370 22
2021-05-27 31348 16
2021-05-26 31332 4
2021-05-25 31328 19
2021-05-24 31309 22
2021-05-23 31287 20
2021-05-22 31267 32
2021-05-21 31235 27
2021-05-20 31208 45
2021-05-19 31163 41
2021-05-18 31122 21
2021-05-17 31101 16
2021-05-16 31085 40
2021-05-15 31045 64
2021-05-14 30981 65
2021-05-13 30916 83
2021-05-12 30833 57
2021-05-11 30776 31
2021-05-10 30745 32
2021-05-09 30713 60
2021-05-08 30653 68
2021-05-07 30585 65
2021-05-06 30520 96
2021-05-05 30424 73
2021-05-04 30351 34
2021-05-03 30317 58
2021-05-02 30259 86
2021-05-01 30173 115
2021-04-30 30058 126
2021-04-29 29932 127
2021-04-28 29805 106
2021-04-27 29699 69
2021-04-26 29630 107
2021-04-25 29523 117
2021-04-24 29406 162
2021-04-23 29244 175
2021-04-22 29069 178
2021-04-21 28891 199
2021-04-20 28692 84
2021-04-19 28608 169
2021-04-18 28439 204
2021-04-17 28235 219
2021-04-16 28016 252
2021-04-15 27764 237
2021-04-14 27527 233
2021-04-13 27294 142
2021-04-12 27152 259
2021-04-11 26893 267
2021-04-10 26626 505
2021-04-09 26121 240
2021-04-08 25881 308
2021-04-07 25573 81
2021-04-06 25492 72
2021-04-05 25420 215
2021-04-04 25205 228
2021-04-03 24977 422
2021-04-02 24555 367
2021-04-01 24188 437
2021-03-31 23751 309
2021-03-30 23442 237
2021-03-29 23205 271
2021-03-28 22934 362
2021-03-27 22572 458
2021-03-26 22114 305
2021-03-25 21809 398
2021-03-24 21411 334
2021-03-23 21077 216
2021-03-22 20861 326
2021-03-21 20535 306
2021-03-20 20229 460
2021-03-19 19769 337
2021-03-18 19432 244
2021-03-17 19188 84
2021-03-16 19104 151
2021-03-15 18953 186
2021-03-14 18767 280
2021-03-13 18487 273
2021-03-12 18214 209
2021-03-11 18005 181
2021-03-10 17824 177
2021-03-09 17647 127
2021-03-08 17520 71
2021-03-07 17449 125
2021-03-06 17324 186
2021-03-05 17138 160
2021-03-04 16978 162
2021-03-03 16816 140
2021-03-02 16676 29
2021-03-01 16647 104
2021-02-28 16543 75
2021-02-27 16468 101
2021-02-26 16367 102
2021-02-25 16265 98
2021-02-24 16167 85
2021-02-23 16082 38
2021-02-22 16044 57
2021-02-21 15987 60
2021-02-20 15927 62
2021-02-19 15865 67
2021-02-18 15798 78
2021-02-17 15720 47
2021-02-16 15673 11
2021-02-15 15662 31
2021-02-14 15631 54
2021-02-13 15577 25
2021-02-12 15552 71
2021-02-11 15481 49
2021-02-10 15432 65
2021-02-09 15367 31
2021-02-08 15336 43
2021-02-07 15293 41
2021-02-06 15252 54
2021-02-05 15198 46
2021-02-04 15152 59
2021-02-03 15093 38
2021-02-02 15055 27
2021-02-01 15028 53
2021-01-31 14975 41
2021-01-30 14934 55
2021-01-29 14879 55
2021-01-28 14824 81
2021-01-27 14743 52
2021-01-26 14691 18
2021-01-25 14673 38
2021-01-24 14635 48
2021-01-23 14587 52
2021-01-22 14535 60
2021-01-21 14475 67
2021-01-20 14408 62
2021-01-19 14346 27
2021-01-18 14319 55
2021-01-17 14264 37
2021-01-16 14227 49
2021-01-15 14178 60
2021-01-14 14118 83
2021-01-13 14035 53
2021-01-12 13982 27
2021-01-11 13955 80
2021-01-10 13875 77
2021-01-09 13798 109
2021-01-08 13689 182
2021-01-07 13507 199
2021-01-06 13308 78
2021-01-05 13230 16
2021-01-04 13214 9
2021-01-03 13205 23
2021-01-02 13182 45
2021-01-01 13137 153
2020-12-31 12984 161
2020-12-30 12823 73
2020-12-29 12750 26
2020-12-28 12724 28
2020-12-27 12696 31
2020-12-26 12665 19
2020-12-25 12646 128
2020-12-24 12518 146
2020-12-23 12372 84
2020-12-22 12288 78
2020-12-21 12210 70
2020-12-20 12140 125
2020-12-19 12015 145
2020-12-18 11870 161
2020-12-17 11709 135
2020-12-16 11574 109
2020-12-15 11465 101
2020-12-14 11364 100
2020-12-13 11264 188
2020-12-12 11076 242
2020-12-11 10834 245
2020-12-10 10589 239
2020-12-09 10350 179
2020-12-08 10171 82
2020-12-07 10089 160
2020-12-06 9929 289
2020-12-05 9640 261
2020-12-04 9379 248
2020-12-03 9131 270
2020-12-02 8861 199
2020-12-01 8662 168
2020-11-30 8494 201
2020-11-29 8293 282
2020-11-28 8011 217
2020-11-27 7794 352
2020-11-26 7442 351
2020-11-25 7091 104
2020-11-24 6987 128
2020-11-23 6859 136
2020-11-22 6723 159
2020-11-21 6564 178
2020-11-20 6386 193
2020-11-19 6193 218
2020-11-18 5975 109
2020-11-17 5866 286
2020-11-16 5580 215
2020-11-15 5365 308
2020-11-14 5057 179
2020-11-13 4878 249
2020-11-12 4629 171
2020-11-11 4458 131
2020-11-10 4327 188
2020-11-09 4139 230
2020-11-08 3909 228
2020-11-07 3681 131
2020-11-06 3550 283
2020-11-05 3267 182
2020-11-04 3085 105
2020-11-03 2980 107
2020-11-02 2873 155
2020-11-01 2718 134
2020-10-31 2584 118
2020-10-30 2466 159
2020-10-29 2307 46
2020-10-28 2261 57
2020-10-27 2204 148
2020-10-26 2056 105
2020-10-25 1951 216
2020-10-24 1735 107
2020-10-23 1628 96
2020-10-22 1532 86
2020-10-21 1446 33
2020-10-20 1413 64
2020-10-19 1349 91
2020-10-18 1258 2
2020-10-17 1256 64
2020-10-16 1192 43
2020-10-15 1149 23
2020-10-14 1126 23
2020-10-13 1103 49
2020-10-12 1054 47
2020-10-11 1007 33
2020-10-10 974 30
2020-10-09 944 43
2020-10-08 901 25
2020-10-07 876 11
2020-10-06 865 28
2020-10-05 837 51
2020-10-04 786 30
2020-10-03 756 26
2020-10-02 730 28
2020-10-01 702 6
2020-09-30 696 8
2020-09-29 688 18
2020-09-28 670 16
2020-09-27 654 22
2020-09-26 632 29
2020-09-25 603 27
2020-09-24 576 6
2020-09-23 570 20
2020-09-22 550 9
2020-09-21 541 21
2020-09-20 520 28
2020-09-19 492 18
2020-09-18 474 44
2020-09-17 430 23
2020-09-16 407 29
2020-09-15 378 13
2020-09-14 365 23
2020-09-13 342 9
2020-09-12 333 22
2020-09-11 311 16
2020-09-10 295 16
2020-09-09 279 13
2020-09-08 266 11
2020-09-07 255 7
2020-09-06 248 13
2020-09-05 235 12
2020-09-04 223 19
2020-09-03 204 3
2020-09-02 201 12
2020-09-01 189 10
2020-08-31 179 3
2020-08-30 176 12
2020-08-29 164 3
2020-08-28 161 1
2020-08-27 160 2
2020-08-26 158 4
2020-08-25 154 0
2020-08-24 154 0
2020-08-23 154 0
2020-08-22 154 0
2020-08-21 154 4
2020-08-20 150 2
2020-08-19 148 1
2020-08-18 147 3
2020-08-17 144 2
2020-08-16 142 1
2020-08-15 141 0
2020-08-14 141 3
2020-08-13 138 7
2020-08-12 131 9
2020-08-11 122 8
2020-08-10 114 6
2020-08-09 108 10
2020-08-08 98 7
2020-08-07 91 4
2020-08-06 87 11
2020-08-05 76 2
2020-08-04 74 0
2020-08-03 74 2
2020-08-02 72 1
2020-08-01 71 4
2020-07-31 67 0
2020-07-30 67 0
2020-07-29 67 1
2020-07-28 66 0
2020-07-27 66 0
2020-07-26 66 0
2020-07-25 66 0
2020-07-24 66 0
2020-07-23 66 1
2020-07-22 65 0
2020-07-21 65 0
2020-07-20 65 0
2020-07-19 65 0
2020-07-18 65 2
2020-07-17 63 0
2020-07-16 63 0
2020-07-15 63 0
2020-07-14 63 0
2020-07-13 63 0
2020-07-12 63 0
2020-07-11 63 0
2020-07-10 63 0
2020-07-09 63 0
2020-07-08 63 0
2020-07-06 63 0
2020-07-05 63 0
2020-07-04 63 0
2020-07-03 63 0
2020-07-02 63 0
2020-07-01 63 0
2020-06-30 63 0
2020-06-29 63 0
2020-06-28 63 0
2020-06-27 63 0
2020-06-26 63 0
2020-06-25 63 0
2020-06-24 63 0
2020-06-23 63 0
2020-06-22 63 0
2020-06-21 63 0
2020-06-20 63 0
2020-06-19 63 0
2020-06-18 63 0
2020-06-17 63 0
2020-06-15 63 0
2020-06-14 63 0
2020-06-13 63 -3
2020-06-12 66 -1
2020-06-11 67 0
2020-06-10 67 1
2020-06-09 66 0
2020-06-08 66 0
2020-06-07 66 0
2020-06-06 66 0
2020-06-05 66 0
2020-06-04 66 0
2020-06-03 66 0
2020-06-02 66 0
2020-06-01 66 1
2020-05-31 65 0
2020-05-30 65 0
2020-05-29 65 0
2020-05-28 65 0
2020-05-27 65 0
2020-05-26 65 1
2020-05-25 64 1
2020-05-24 63 0
2020-05-23 63 0
2020-05-22 63 0
2020-05-21 63 0
2020-05-20 63 0
2020-05-19 63 0
2020-05-18 63 0
2020-05-17 63 0
2020-05-16 63 0
2020-05-15 63 1
2020-05-14 62 0
2020-05-13 62 0
2020-05-12 62 2
2020-05-11 60 0
2020-05-10 60 0
2020-05-09 60 1
2020-05-08 59 1
2020-05-07 58 0
2020-05-06 58 0
2020-05-05 58 0
2020-05-04 58 0
2020-05-03 58 0
2020-05-02 58 0
2020-05-01 58 0
2020-04-30 58 2
2020-04-29 56 0
2020-04-28 56 2
2020-04-27 54 0
2020-04-26 54 2
2020-04-25 52 2
2020-04-24 50 0
2020-04-23 50 2
2020-04-22 48 5
2020-04-21 43 0
2020-04-20 43 2
2020-04-19 41 4
2020-04-18 37 1
2020-04-17 36 2
2020-04-16 34 2
2020-04-15 32 0
2020-04-14 32 1
2020-04-13 31 1
2020-04-12 30 2
2020-04-11 28 5
2020-04-10 23 5
2020-04-09 18 4
2020-04-08 14 1
2020-04-07 13 3
2020-04-06 10 0
2020-04-05 10 0
2020-04-04 10 0
2020-04-03 10 0
2020-04-02 10 0
2020-04-01 10 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:08.700031