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="local-authority-similarity",
package_name="composite_distance",
version_name="1",
file_name="la_labels.parquet",)# get a pandas dataframe
df = get_dataset_df(
repo_name="local-authority-similarity",
package_name="composite_distance",
version_name="1",
file_name="la_labels.parquet",)