special handling of Hackney links

This commit is contained in:
Mateusz Konieczny 2022-11-01 20:19:15 +01:00
parent ae56933462
commit b8adaecf39

View File

@ -64,6 +64,10 @@ def load_data_into_database(cursor, data):
"data_source": "Greater London Authority's Planning London DataHub", "data_source": "Greater London Authority's Planning London DataHub",
"data_source_link": None "data_source_link": None
} }
if "Hackney" in entry["application_id"]:
entry["application_url"] != None:
if "https://" not in entry["application_url"]:
entry["application_url"] = "https://developmentandhousing.hackney.gov.uk" + entry["application_url"]
insert_entry(cursor, entry) insert_entry(cursor, entry)
except TypeError as e: except TypeError as e:
print() print()