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="uk_local_authority_names_and_codes",
package_name="uk_la_future",
version_name="1.4",
file_name="lookup_name_to_registry.parquet",)# get a pandas dataframe
df = get_dataset_df(
repo_name="uk_local_authority_names_and_codes",
package_name="uk_la_future",
version_name="1.4",
file_name="lookup_name_to_registry.parquet",)