Pandas experiment to chart some COVID data.
This was ported to Kaggle as a Kaggle Notebook, which was maintained until SRC deprecated their data source and stopped updating it on 9 Aptil 2022. This project is now archived.
pip install -r requirements.txt
py main.py
A silly late-night experiment with Pandas to make my own charts.
Probably don't use it for anything serious.
This scrapes the publically-available (but undocumented) SRC data source.
(Thank you for making it public 💖)
"History": [
{
"Date": "2020-10-15",
"C": "89963",
"D": "6005",
"H": "493",
"I": "83",
"P": "0",
"R": "75467",
"T": "2713686"
}
]
Key | Type | Represents |
---|---|---|
C |
Number |
Confirmed Cases (Total) |
D |
Number |
Deaths (Total) |
H |
Number |
Hospitalizations (Total, including ICU) |
I |
Number |
ICU Admissions (Total) |
P |
Float |
(Unknown) |
R |
Number |
Recoveries (Total) |
T |
Number |
Tests Conducted (Total, delayed 48h) |