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="2025-constituencies",
package_name="parliament_con_2025",
version_name="0.1.2",
file_name="parl_constituencies_2025.csv",)# get a pandas dataframe
df = get_dataset_df(
repo_name="2025-constituencies",
package_name="parliament_con_2025",
version_name="0.1.2",
file_name="parl_constituencies_2025.csv",)