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="climate_mrp_polling",
package_name="local_authority_climate_polling",
version_name="0",
file_name="local_authority_climate_polling.csv",)# get a pandas dataframe
df = get_dataset_df(
repo_name="climate_mrp_polling",
package_name="local_authority_climate_polling",
version_name="0",
file_name="local_authority_climate_polling.csv",)