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="wdtk_authorities_list",
package_name="whatdotheyknow_authorities_dataset",
version_name="0.73.0",
file_name="authorities_id_lookup.parquet",)# get a pandas dataframe
df = get_dataset_df(
repo_name="wdtk_authorities_list",
package_name="whatdotheyknow_authorities_dataset",
version_name="0.73.0",
file_name="authorities_id_lookup.parquet",)