diff --git a/index.html b/index.html index 5d42533..f59c01b 100644 --- a/index.html +++ b/index.html @@ -26,7 +26,7 @@

Ofsted SEND Summary

Summarised outcomes of published short and standard SEND inspection reports by Ofsted, refreshed weekly.
An expanded version of the shown summary sheet, refreshed concurrently, is available to download here as an .xlsx file.
Data summary is based on the original SEND Outcomes Summary published periodically by the ADCS: https://adcs.org.uk/inspection/article/ilacs-outcomes-summary. Read the tool/project background details and future work..

Disclaimer: This summary is built from scraped data direct from https://reports.ofsted.gov.uk/ published PDF inspection report files. As a result of the nuances|variance within the inspection report content or pdf encoding, we're noting some problematic data extraction for a small number of LAs*.
*Known LA extraction issues:
Feedback on specific problems|inaccuracies|suggestions welcomed.*

-

Summary data last updated: 07 08 2024 12:47

+

Summary data last updated: 07 08 2024 13:38

LA inspections last updated: []

@@ -37,7 +37,7 @@

Ofsted SEND Summary

- + @@ -48,7 +48,7 @@

Ofsted SEND Summary

- + @@ -57,7 +57,7 @@

Ofsted SEND Summary

- + @@ -66,7 +66,7 @@

Ofsted SEND Summary

- + @@ -75,7 +75,7 @@

Ofsted SEND Summary

- + @@ -84,7 +84,7 @@

Ofsted SEND Summary

- + @@ -93,7 +93,7 @@

Ofsted SEND Summary

- + @@ -102,7 +102,7 @@

Ofsted SEND Summary

- + @@ -111,7 +111,7 @@

Ofsted SEND Summary

- + @@ -120,7 +120,7 @@

Ofsted SEND Summary

- + @@ -129,7 +129,7 @@

Ofsted SEND Summary

- + @@ -138,7 +138,7 @@

Ofsted SEND Summary

- + @@ -147,7 +147,7 @@

Ofsted SEND Summary

- + @@ -156,7 +156,7 @@

Ofsted SEND Summary

- + @@ -165,7 +165,7 @@

Ofsted SEND Summary

- + @@ -174,7 +174,7 @@

Ofsted SEND Summary

- + @@ -183,7 +183,7 @@

Ofsted SEND Summary

- + @@ -192,7 +192,7 @@

Ofsted SEND Summary

- + @@ -201,7 +201,7 @@

Ofsted SEND Summary

- + @@ -210,7 +210,7 @@

Ofsted SEND Summary

- + @@ -219,7 +219,7 @@

Ofsted SEND Summary

- + @@ -228,7 +228,7 @@

Ofsted SEND Summary

- + @@ -237,7 +237,7 @@

Ofsted SEND Summary

- + @@ -246,7 +246,7 @@

Ofsted SEND Summary

- + @@ -255,7 +255,7 @@

Ofsted SEND Summary

- + @@ -264,7 +264,7 @@

Ofsted SEND Summary

- + @@ -273,7 +273,7 @@

Ofsted SEND Summary

- + @@ -282,7 +282,7 @@

Ofsted SEND Summary

- + @@ -291,7 +291,7 @@

Ofsted SEND Summary

- + @@ -300,7 +300,7 @@

Ofsted SEND Summary

- + @@ -309,7 +309,7 @@

Ofsted SEND Summary

- + @@ -318,7 +318,7 @@

Ofsted SEND Summary

- + @@ -327,7 +327,7 @@

Ofsted SEND Summary

- + @@ -336,7 +336,7 @@

Ofsted SEND Summary

- + @@ -345,7 +345,7 @@

Ofsted SEND Summary

- + @@ -354,7 +354,7 @@

Ofsted SEND Summary

- + @@ -363,7 +363,7 @@

Ofsted SEND Summary

- + @@ -372,7 +372,7 @@

Ofsted SEND Summary

- + @@ -381,7 +381,7 @@

Ofsted SEND Summary

- + @@ -390,7 +390,7 @@

Ofsted SEND Summary

- + diff --git a/ofsted_childrens_services_inspection_scrape.py b/ofsted_childrens_services_inspection_scrape.py index 614a22f..6816740 100644 --- a/ofsted_childrens_services_inspection_scrape.py +++ b/ofsted_childrens_services_inspection_scrape.py @@ -511,6 +511,25 @@ def remove_unwanted_sections(pages_content): return cleaned_pages +def extract_inspection_outcome_section(cleaned_text): + pattern = re.compile(r"Inspection outcome(.*?)Information about the local area partnership", re.DOTALL | re.IGNORECASE) + match = pattern.search(cleaned_text) + + if match: + section = match.group(1).strip() + + # Remove the last paragraph (assumes that more than 2 exist!) + # This typically only states strategic progress publishing etc. + # E.g. "Ofsted and CQC ask that the local area partnership updates and publishes ...."" + paragraphs = section.split('\n\n') + if len(paragraphs) > 1: + return '\n\n'.join(paragraphs[:-1]).strip() + else: + return section # No change if there's only one paragraph + else: + return "Inspection outcome section not found." + + def process_provider_links(provider_links): """ @@ -610,6 +629,10 @@ def process_provider_links(provider_links): pdf_content_cleaned = "\n".join(pdf_pages_content_reduced) print(pdf_content_cleaned) + # Extract the "Inspection outcome" section + inspection_outcome_section = extract_inspection_outcome_section(pdf_content_cleaned) + print("\nInspection outcome section:") + print(inspection_outcome_section) # Extract the local authority and inspection link, and add the data to the list if not found_inspection_link: @@ -676,6 +699,7 @@ def process_provider_links(provider_links): 'inspection_end_date': inspection_end_date_formatted, 'publication_date': report_published_date, 'local_link_to_all_inspections': provider_dir_link, + 'inspection_outcome_text': inspection_outcome_section, # 'sentiment_score': sentiment_score, @@ -882,10 +906,10 @@ def save_to_html(data, column_order, local_link_column=None, web_link_column=Non # data = data.drop(columns=col) - # If a local link column is specified, convert that column's values to HTML hyperlinks - # Displaying only the filename as the hyperlink text - if local_link_column: - data[local_link_column] = data[local_link_column].apply(lambda x: 'all_reports\\' + x.split("\\")[-1] + '') + # # If a local link column is specified, convert that column's values to HTML hyperlinks + # # Displaying only the filename as the hyperlink text + # if local_link_column: + # data[local_link_column] = data[local_link_column].apply(lambda x: 'all_reports\\' + x.split("\\")[-1] + '') # If a web link column is specified, convert that column's values to HTML hyperlinks @@ -1046,8 +1070,8 @@ def save_to_html(data, column_order, local_link_column=None, web_link_column=Non # import the needed external/local data local_authorities_lookup_df = import_csv_from_folder(import_la_data_path) # bring external data in -print(local_authorities_lookup_df.head(5)) -print(send_inspection_summary_df) # empty +print(local_authorities_lookup_df.head(3)) +print(send_inspection_summary_df.head(3)) # empty # Ensure key column consistency @@ -1094,7 +1118,8 @@ def save_to_html(data, column_order, local_link_column=None, web_link_column=Non # Remove for now until link fixed applied: 'local_link_to_all_inspections', column_order = [ 'urn','la_code','region_code','ltla23cd','local_authority', - 'local_link_to_all_inspections', + 'inspection_outcome_text', + #'local_link_to_all_inspections', 'inspection_link' ] diff --git a/ofsted_childrens_services_send_overview.xlsx b/ofsted_childrens_services_send_overview.xlsx index ed76420..02cbfaf 100644 Binary files a/ofsted_childrens_services_send_overview.xlsx and b/ofsted_childrens_services_send_overview.xlsx differ
Region Code LTLA23CD Local AuthorityLocal Link To All InspectionsInspection Outcome Text Inspection Link
NW E06000009 blackpoolall_reports\80431_blackpoolThe local area partnership’s arrangements lead to inconsistent experiences and \noutcomes for children and young people with special educational needs and/or \ndisabilities (SEND). The local area partnership must work jointly to make improvements. \n \nThe next full area SEND inspection will be within approximately three years. \n \nOfsted and the Care Quality Commission (CQC) ask that the local area partnership \nupdates and publishes its strategic plan based on the recommendations set out in this \nreport. ofsted.gov.uk/50253401
SE E06000043 brighton and hoveall_reports\80438_brighton and hoveThe local area partnership’s arrangements typically lead to positive experiences and \noutcomes for children and young people with special educational needs and/or \ndisabilities (SEND). The local area partnership is taking action where improvements are \nneeded. \n \nThe next full Area SEND inspection will be within approximately 5 years. \n \nOfsted and Care Quality Commission (CQC) ask that the local area partnership updates \nand publishes its strategic plan based on the recommendations set out in this report. ofsted.gov.uk/50218659
NW E08000002 buryall_reports\80443_buryThere are widespread and/or systemic failings leading to significant concerns about the \nexperiences and outcomes of children and young people with special educational needs \nand/or disabilities (SEND), which the local area partnership must address urgently. \n \nA monitoring inspection will be carried out within approximately 18 months. The next full \nreinspection will be within approximately three years. \n \nAs a result of this inspection, HMCI requires the local area partnership to prepare and \nsubmit a priority action plan (area SEND) to address the identified areas for priority \naction. ofsted.gov.uk/50246030
YH E08000036 wakefieldall_reports\80451_wakefieldThe local area partnership’s special educational needs and/or disabilities (SEND) \narrangements typically lead to positive experiences and outcomes for children and young \npeople with SEND. The local area partnership is taking action where improvements are \nneeded. \n \nThe next full area SEND inspection will be within approximately five years. \n \nOfsted and the Care Quality Commission (CQC) ask that the local area partnership \nupdates and publishes its strategic plan based on the recommendations set out in this \nreport. ofsted.gov.uk/50253460
SW E06000052 cornwallall_reports\80454_cornwallThe local area partnership’s arrangements lead to inconsistent experiences and \noutcomes for children and young people with special educational needs and/or \ndisabilities (SEND). The local area partnership must work jointly to make \nimprovements. \n \nThe next full area SEND inspection will be within approximately 3 years. \n \nOfsted and CQC ask that the local area partnership updates and publishes its strategic \nplan based on the recommendations set out in this report. ofsted.gov.uk/50215730
SW E10000009 dorsetall_reports\2532283_dorsetThe local area partnership’s special educational needs and/or disabilities (SEND) \narrangements typically lead to positive experiences and outcomes for children and young \npeople with SEND. The local area partnership is taking action where improvements are \nneeded. \n \nThe next full area SEND inspection will be within approximately five years. \n \nOfsted and the Quality Care Commission (CQC) ask that the local area partnership \nupdates and publishes its strategic plan based on the recommendations set out in this \nreport. ofsted.gov.uk/50246984
NE E08000037 gatesheadall_reports\80469_gatesheadThe local area partnership’s arrangements lead to inconsistent experiences and outcomes \nfor children and young people with special educational needs and/or disabilities (SEND). \nThe local area partnership must work jointly to make improvements. \n \nThe next full area SEND inspection will be within approximately 3 years. \n \nOfsted and CQC ask that the local area partnership updates and publishes its strategic \nplan based on the recommendations set out in this report. ofsted.gov.uk/50224180
SW E10000013 gloucestershireall_reports\80470_gloucestershireThe local area partnership’s arrangements lead to inconsistent experiences and \noutcomes for children and young people with special educational needs and/or \ndisabilities (SEND). The local area partnership must work jointly to make improvements. \n \nThe next full area SEND inspection will be within approximately three years. \n \nOfsted and the Care Quality Commission (CQC) ask that the local area partnership \nupdates and publishes its strategic plan based on the recommendations set out in this \nreport. ofsted.gov.uk/50240683
NW E06000006 haltonall_reports\80471_haltonThere are widespread and/or systemic failings leading to significant concerns about the \nexperiences and outcomes of children and young people with special educational needs \nand/or disabilities (SEND), which the local area partnership must address urgently. \n \nA monitoring inspection will be carried out within approximately 18 months. The next full \nreinspection will be within approximately three years. \n \nAs a result of this inspection, His Majesty’s Chief Inspector requires the local area \npartnership to prepare and submit a priority action plan (area SEND) to address the \nidentified areas for priority action. ofsted.gov.uk/50238390
NE E06000001 hartlepoolall_reports\80473_hartlepoolThe local area partnership’s arrangements typically lead to positive experiences and \noutcomes for children and young people with special educational needs and/or \ndisabilities (SEND). The local area partnership is taking action where improvements are \nneeded. \n \nThe next full area SEND inspection will be within approximately 5 years. \n \nOfsted and the CQC ask that the local area partnership updates and publishes its \nstrategic plan based on the recommendations set out in this report. ofsted.gov.uk/50216721
E E10000015 hertfordshireall_reports\80475_hertfordshireThere are widespread and/or systemic failings leading to significant concerns about the \nexperiences and outcomes of children and young people with special educational needs \nand/or disabilities (SEND), which the local area partnership must address urgently. \n \nA monitoring inspection will be carried out within approximately 18 months. The next \nfull reinspection will be within approximately 3 years. \n \nAs a result of this inspection, HMCI requires the local area partnership to prepare and \nsubmit a priority action plan (area SEND) to address the identified areas for priority \naction. ofsted.gov.uk/50232445
YH E06000010 kingston upon hullall_reports\80477_kingston upon hullThe local area partnership’s arrangements lead to inconsistent experiences and outcomes \nfor children and young people with special educational needs and/or disabilities (SEND). \nThe local area partnership must work jointly to make improvements. \n \nThe next full area SEND inspection will be within approximately three years. \n \nOfsted and the Care Quality Commission (CQC) ask that the local area partnership \nupdates and publishes its strategic plan based on the recommendations set out in this \nreport. ofsted.gov.uk/50238910
GL E09000004 bexleyall_reports\80488_bexleyThere are widespread and/or systemic failings leading to significant concerns about the \nexperiences and outcomes of children and young people with special educational needs \nand/or disabilities (SEND), which the local area partnership must address urgently. \n \nA monitoring inspection will be carried out within approximately 18 months. The next full \nreinspection will be within approximately three years. \n \nAs a result of this inspection, His Majesty’s Chief Inspector requires the local area \npartnership to prepare and submit a priority action plan (area SEND) to address the \nidentified areas for priority action. ofsted.gov.uk/50240171
GL E09000010 enfieldall_reports\80494_enfieldThe local area partnership’s arrangements lead to inconsistent experiences and \noutcomes for children and young people with special educational needs and/disabilities \n(SEND). The local area partnership must work jointly to make improvements. \n \nThe next full area SEND inspection will take place within approximately 3 years. \n \nOfsted and the CQC ask that the local area partnership updates and publishes its \nstrategic plan based on the recommendations set out in this report. ofsted.gov.uk/50225063
GL E09000011 greenwichall_reports\80495_greenwichThe local area partnership’s special educational needs and/or disability (SEND) \narrangements typically lead to positive experiences and outcomes for children and \nyoung people with SEND. The local area partnership is taking action where \nimprovements are needed. \n \nThe next full area SEND inspection will be within approximately 5 years. \n \nOfsted and CQC ask that the local area partnership updates and publishes its strategic \nplan based on the recommendations set out in this report. ofsted.gov.uk/50222861
GL E09000014 haringeyall_reports\80498_haringeyThe local area partnership’s special educational needs and/or disabilities (SEND) \narrangements typically lead to positive experiences and outcomes for children and \nyoung people with SEND. The local area partnership is taking action where \nimprovements are needed. \n \nThe next full area SEND inspection will be within approximately five years. \n \nOfsted and the Care Quality Commission (CQC) ask that the local area partnership \nupdates and publishes its strategic plan based on the recommendations set out in this \nreport. ofsted.gov.uk/50243302
GL E09000017 hillingdonall_reports\80501_hillingdonThe local area partnership’s arrangements lead to inconsistent experiences and \noutcomes for children and young people with special educational needs and/or \ndisabilities (SEND). The local area partnership must work jointly to make improvements. \n \nThe next full area SEND inspection will be within approximately three years. \n \nOfsted and the Care Quality Commission (CQC) ask that the local area partnership \nupdates and publishes its strategic plan based on the recommendations set out in this \nreport. ofsted.gov.uk/50252397
GL E09000027 richmond upon thamesall_reports\80513_richmond upon thamesThe local area partnership’s special educational needs and/or disability (SEND) \narrangements typically lead to positive experiences and outcomes for children and young \npeople with SEND. The local area partnership is taking action where improvements are \nneeded. \n \nThe next full area SEND inspection will be within approximately 5 years. \n \nOfsted and CQC ask that the local area partnership updates and publishes its strategic \nplan based on the recommendations set out in this report. ofsted.gov.uk/50234459
NaN E06000035 medwayall_reports\80522_medwayThe local area partnership’s arrangements lead to inconsistent experiences and \noutcomes for children and young people with special educational needs and/or \ndisabilities (SEND). The local area partnership must work jointly to make improvements. \n \nThe next full area SEND inspection will be within approximately three years. \n \nOfsted and the Care Quality Commission (CQC) ask that the local area partnership \nupdates and publishes its strategic plan based on the recommendations set out in this \nreport. ofsted.gov.uk/50243176
NE E06000002 middlesbroughall_reports\80523_middlesbroughThe local area partnership’s special educational needs and/or disabilities (SEND) \narrangements typically lead to positive experiences and outcomes for children and young \npeople with SEND. The local area partnership is taking action where improvements are \nneeded. \n \nThe next full area SEND inspection will be within approximately five years. \n \nOfsted and Care Quality Commission (CQC) ask that the local area partnership updates \nand publishes its strategic plan, based on the recommendations set out in this report. ofsted.gov.uk/50234957
SE E06000042 milton keynesall_reports\80524_milton keynesThe local area partnership’s arrangements lead to inconsistent experiences and outcomes \nfor children and young people with special educational needs and/or disabilities (SEND). \nThe local area partnership must work jointly to make improvements. \n \nThe next full area SEND inspection will be within approximately three years. \n \nOfsted and Care Quality Commission (CQC) ask that the local area partnership updates \nand publishes its strategic plan based on the recommendations set out in this report. ofsted.gov.uk/50247473
EM E06000061 north northamptonshireall_reports\2637539_north northamptonshireThere are widespread and/or systemic failings leading to significant concerns about the \nexperiences and outcomes of children and young people with special educational needs \nand/or disabilities (SEND), which the local area partnership must address urgently. \n \nA monitoring inspection will be carried out within approximately 18 months. The next \nfull reinspection will be within approximately three years. \n \nAs a result of this inspection, His Majesty’s Chief Inspector requires the local area \npartnership to prepare and submit a priority action plan (area SEND) to address the \nidentified areas for priority action. ofsted.gov.uk/50242696
EM E10000024 nottinghamshireall_reports\80534_nottinghamshireThere are widespread and/or systemic failings leading to significant concerns about the \nexperiences and outcomes of children and young people with special educational needs \nand/or disabilities (SEND) which the local area partnership must address urgently. \n \nA monitoring inspection will be carried out within approximately 18 months. The next full \narea SEND inspection will take place within approximately 3 years. \n \nHMCI requires the local area partnership to prepare and submit a priority action plan (area \nSEND) to address the identified areas for priority action. ofsted.gov.uk/50216722
NW E08000004 oldhamall_reports\80535_oldhamThere are widespread and/or systemic failings leading to significant concerns about the \nexperiences and outcomes of children and young people with special educational needs \nand/or disabilities (SEND), which the local area partnership must address urgently. \n \nA monitoring inspection will be carried out within approximately 18 months. The next \nfull reinspection will be within approximately 3 years. \n \nAs a result of this inspection, HMCI requires the local area partnership to prepare and \nsubmit a priority action plan (area SEND) to address the identified areas for priority \naction. ofsted.gov.uk/50226808
SE E10000025 oxfordshireall_reports\80536_oxfordshireThere are widespread and/or systemic failings leading to significant concerns about the \nexperiences and outcomes of children and young people with special educational needs \nand/or disabilities (SEND), which the local area partnership must address urgently. \n \nA monitoring inspection will be carried out within approximately 18 months. The next \nfull reinspection will be within approximately 3 years. \n \nAs a result of this inspection, HMCI requires the local area partnership to prepare and \nsubmit a priority action plan (area SEND) to address the identified areas for priority \naction. ofsted.gov.uk/50228374
SW E06000026 plymouthall_reports\80538_plymouthThere are widespread and/or systemic failings leading to significant concerns about the \nexperiences and outcomes of children and young people with special educational needs \nand/or disabilities (SEND), which the local area partnership must address urgently. \n \nA monitoring inspection will be carried out within approximately 18 months. The next \nfull reinspection will be within approximately 3 years. \n \nAs a result of this inspection, HMCI requires the local area partnership to prepare and \nsubmit a priority action plan (area SEND) to address the identified areas for priority \naction. ofsted.gov.uk/50226534
EM E06000017 rutlandall_reports\80547_rutlandThe local area partnership’s arrangements typically lead to positive experiences and \noutcomes for children and young people with special educational needs and/or \ndisabilities (SEND). The local area partnership is taking action where improvements are \nneeded. \n \nThe next full Area SEND inspection will be within approximately 5 years. \n \nOfsted and CQC ask that the local area partnership updates and publishes its strategic \nplan based on the recommendations set out in this report. ofsted.gov.uk/50225252
WM E08000028 sandwellall_reports\80549_sandwellThe local area partnership’s arrangements lead to inconsistent experiences and outcomes for \nchildren and young people with special educational needs and/or disabilities (SEND). The local \narea partnership must work jointly to make improvements. \n \nThe next full area SEND inspection will be within approximately 3 years. \n \nOfsted and CQC ask that the local area partnership updates and publishes its strategic plan \nbased on the recommendations set out in this report. ofsted.gov.uk/50227802
SE E06000045 southamptonall_reports\80558_southamptonThe local area partnership’s arrangements lead to inconsistent experiences and outcomes \nfor children and young people with special educational needs and/or disabilities (SEND). \nThe local area partnership must work jointly to make improvements. \n \nThe next full area SEND inspection will be within approximately three years. \n \nOfsted and the Care Quality Commission (CQC) ask that the local area partnership \nupdates and publishes its strategic plan based on the recommendations set out in this \nreport. ofsted.gov.uk/50252575
E E06000033 southend-on-seaall_reports\80559_southend-on-seaThe local area partnership’s arrangements lead to inconsistent experiences and outcomes \nfor children and young people with special educational needs and/or disabilities (SEND). \nThe local area partnership must work jointly to make improvements. \n \nThe next full area SEND inspection will be within approximately 3 years. \n \nOfsted and the Care Quality Commission (CQC) ask that the local area partnership \nupdates and publishes its strategic plan based on the recommendations set out in this \nreport. ofsted.gov.uk/50219405
WM E06000021 stoke-on-trentall_reports\80564_stoke-on-trentThe local area partnership’s arrangements lead to inconsistent experiences and outcomes \nfor children and young people with special educational needs and/or disabilities (SEND). \nThe local area partnership must work jointly to make improvements. \n \nThe next full area SEND inspection will be within approximately three years. \n \nOfsted and Care Quality Commission (CQC) ask that the local area partnership updates \nand publishes its strategic plan based on the recommendations set out in this report. ofsted.gov.uk/50243303
E E10000029 suffolkall_reports\80565_suffolkThere are widespread and/or systemic failings leading to significant concerns about the \nexperiences and outcomes of children and young people with special educational needs \nand/or disabilities (SEND), which the local area partnership must address urgently. \n \nA monitoring inspection will be carried out within approximately 18 months. The next full \nreinspection will be within approximately three years. \n \nAs a result of this inspection, His Majesty’s Chief Inspector requires the local area \npartnership to prepare and submit a priority action plan (area SEND) to address the \nidentified areas for priority action. ofsted.gov.uk/50238584
SE E10000030 surreyall_reports\80567_surreyThe local area partnership’s arrangements lead to inconsistent experiences and \noutcomes for children and young people with special educational needs and/or \ndisabilities (SEND). The local area partnership must work jointly to make improvements. \n \nThe next full area SEND inspection will be within approximately 3 years. \n \nOfsted and CQC ask that the local area partnership updates and publishes its strategic \nplan based on the recommendations set out in this report. ofsted.gov.uk/50233738
WM E06000020 telford & wrekinall_reports\80570_telford & wrekinThe local area partnership’s arrangements typically lead to positive experiences and \noutcomes for children and young people with special educational needs and/or \ndisabilities (SEND). The local area partnership is taking action where improvements are \nneeded. \n \nThe next full Area SEND inspection will be within approximately 5 years. \n \nOfsted and CQC ask that the local area partnership updates and publishes its strategic \nplan based on the recommendations set out in this report. ofsted.gov.uk/50221953
NW E08000009 traffordall_reports\80573_traffordThe local area partnership’s arrangements lead to inconsistent experiences and \noutcomes for children and young people with special educational needs and/or \ndisabilities (SEND). The local area partnership must work jointly to make improvements. \n \nThe next full area SEND inspection will be within approximately 3 years. \n \nOfsted and CQC ask that the local area partnership updates and publishes its strategic \nplan based on the recommendations set out in this report. ofsted.gov.uk/50236174
NW E06000007 warringtonall_reports\80575_warringtonThe local area partnership’s arrangements lead to inconsistent experiences and \noutcomes for children and young people with special educational needs and/or \ndisabilities (SEND). The local area partnership must work jointly to make improvements. \n \nThe next full area SEND inspection will be within approximately 3 years. \n \nOfsted and CQC ask that the local area partnership updates and publishes its strategic \nplan based on the recommendations set out in this report. ofsted.gov.uk/50215729
EM E06000062 west northamptonshireall_reports\2637548_west northamptonshireThere are widespread and/or systemic failings leading to significant concerns about the \nexperiences and outcomes of children and young people with special educational needs \nand/or disabilities (SEND), which the local area partnership must address urgently. \n \nA monitoring inspection will be carried out within approximately 18 months. The next \nfull reinspection will be within approximately three years. \n \nAs a result of this inspection, His Majesty’s Chief Inspector requires the local area \npartnership to prepare and submit a priority action plan (area SEND) to address the \nidentified areas for priority action. ofsted.gov.uk/50252240
SE E10000032 west sussexall_reports\80578_west sussexThe local area partnership’s arrangements lead to inconsistent experiences and \noutcomes for children and young people with special educational needs and/or \ndisabilities (SEND). The local area partnership must work jointly to make improvements. \n \nThe next full area SEND inspection will be within approximately three years. \n \nOfsted and the Care Quality Commission ask that the local area partnership updates and \npublishes its strategic plan based on the recommendations set out in this report. ofsted.gov.uk/50240577
WM E10000034 worcestershireall_reports\80584_worcestershireThere are widespread and/or systemic failings leading to significant concerns about the \nexperiences and outcomes of children and young people with special educational needs \nand/or disabilities (SEND), which the local area partnership must address urgently. \n \nA monitoring inspection will be carried out within approximately 18 months. The next \nfull reinspection will be within approximately three years. \n \nAs a result of this inspection, His Majesty’s Chief Inspector requires the local area \npartnership to prepare and submit a priority action plan (area SEND) to address the \nidentified areas for priority action. ofsted.gov.uk/50252437