mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-28 22:30:44 -05:00
Taken from: https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/655371/List_of_.gov.uk_domain_names_as_at_26_October_2017.csv/preview Then filtered down to councils using this script: ```python import clipboard import csv with open('List_of_.gov.uk_domain_names_as_at_26_October_2017.csv') as l: f = csv.reader(l) s = '' for row in f: if 'council' in row[1].lower(): s = s + "{}:\n sector: local\n owner: {}\n".format(*row) clipboard.copy(s) ```