Parliament Constituencies 2025

parl_constituencies_2025.gpkg

Version: latest

Return to data package page.


Integrating with code

Using Python

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="latest",
            file_name="parl_constituencies_2025.gpkg",
        )
        
        
        # if working with geodata
        import geopandas as gdp
        
        gdf = gdp.from_file(url)
        
        
      

You can also use this package as a command-line tool:


        mysoc-dataset download \
        --repo 2025-constituencies \
        --package parliament_con_2025 \
        --version latest \
        --file parl_constituencies_2025.gpkg
      

Use mysoc-dataset --help for all options.


Can you help us with funding by telling us more about yourself?