To much work here is the easy way with the power of Pandas

>>> import pandas as pd >>> df = pd.read_html('url')[0] >>> df.rename(columns={'Unnamed: 0': 'Tile'}, inplace=True) >>> df
Output: Tile Total Change in last 24 hours
0 Number of confirmed cases in New Zealand 1122 1
1 Number of probable cases 347 -2
2 Number of confirmed and probable cases 1469 -1
3 Number of cases currently in hospital 7 0
4 Number of recovered cases 1180 38
5 Number of deaths (as at 1 pm 27 April) 19 1
Here how it look in a Notebook and it find all tables,so here make a Graph with table 6 and i use Altair.