MHCLG publishes the EFS lists only as HTML tables on the pages above — there is no CSV/ODS/XLSX download. The CSVs in data/ were therefore derived by us: raw pages saved in data/raw-html/efs-<year>.html, tables extracted verbatim (Python html.parser, no reinterpretation) to data/efs-<year>.csv, and stacked into data/efs-all-years.csv. Multiple <br>-separated entries within one cell are joined with " | ". The amount column keeps the original free text (e.g. "£79.6m (support agreed in-principle)", revision notes), so parse amounts downstream with care.
for y in 2020-21 2021-22 2022-23 2023-24 2024-25 2025-26 2026-27; do
curl -sL "https://www.gov.uk/guidance/exceptional-financial-support-for-local-authorities-for-$y" \
-o "data/raw-html/efs-$y.html"
done
# then re-run the table-extraction step (see git history / regenerate with any HTML table parser)
There is no official government register of section 114 notices. Notices are issued by each council's s151 officer and published on the council's own website; GOV.UK/MHCLG maintains no consolidated list (confirmed by search 2026-08-13). Trackers exist at the House of Commons Library ("Why are local authorities going bankrupt?", https://commonslibrary.parliament.uk/why-are-local-authorities-going-bankrupt/) and the Institute for Government (https://www.instituteforgovernment.org.uk/explainer/local-authority-section-114-notices), but these are secondary compilations, not official datasets.
data/s114-notices-compiled.csv is a hand-compiled list (12 notices, 8 councils, 2018–2023) assembled from the Commons Library page and the issuing councils' own statements (Croydon, Woking, Birmingham pages listed in the CSV). Dates are as widely reported; treat as unofficial. No notices after Nottingham (29 Nov 2023) were identified as of compilation; unconfirmed for 2024–2026 — the EFS regime has largely substituted for new s114s.data/| File | Content |
|---|---|
raw-html/efs-*.html (7 files) |
Raw GOV.UK pages as fetched, 2026-08-13 |
efs-<year>.csv (7 files) |
Extracted tables per year |
efs-all-years.csv |
All years stacked |
s114-notices-compiled.csv |
Hand-compiled s114 notices (unofficial; see above) |