Install the mysoc-dataset package.
You can then use the
following code to get this file.
from mysoc_dataset import get_dataset_url, get_dataset_df
# get the url of dataset
url = get_dataset_url(
repo_name="composite_uk_imd",
package_name="uk_index",
version_name="3.1",
file_name="UK_IMD_W.csv",)# get a pandas dataframe
df = get_dataset_df(
repo_name="composite_uk_imd",
package_name="uk_index",
version_name="3.1",
file_name="UK_IMD_W.csv",)