UK Local Authorities (past and current)

uk_la_past_current.xlsx

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="uk_local_authority_names_and_codes",
            package_name="uk_la_past_current",
            version_name="latest",
            file_name="uk_la_past_current.xlsx",
        )
        
        
        # get a pandas dataframe
        df = get_dataset_df(
            repo_name="uk_local_authority_names_and_codes",
            package_name="uk_la_past_current",
            version_name="latest",
            file_name="uk_la_past_current.xlsx",
        )
        
      

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


        mysoc-dataset download \
        --repo uk_local_authority_names_and_codes \
        --package uk_la_past_current \
        --version latest \
        --file uk_la_past_current.xlsx
      

Use mysoc-dataset --help for all options.


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