-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathinput.json
executable file
·2225 lines (2225 loc) · 114 KB
/
input.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"AberdeenCityCouncil": {
"uprn": "9051156186",
"url": "https://www.aberdeencity.gov.uk",
"wiki_name": "Aberdeen City Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"AberdeenshireCouncil": {
"uprn": "151176430",
"url": "https://online.aberdeenshire.gov.uk",
"wiki_command_url_override": "https://online.aberdeenshire.gov.uk",
"wiki_name": "Aberdeenshire Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"AdurAndWorthingCouncils": {
"url": "https://www.adur-worthing.gov.uk/bin-day/?brlu-selected-address=100061878829",
"wiki_command_url_override": "https://www.adur-worthing.gov.uk/bin-day/?brlu-selected-address=XXXXXXXX",
"wiki_name": "Adur and Worthing Councils",
"wiki_note": "Replace XXXXXXXX with your UPRN. You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find it."
},
"AmberValleyBoroughCouncil": {
"url": "https://ambervalley.gov.uk",
"uprn": "100030026621",
"wiki_name": "Amber Valley Borough Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"AntrimAndNewtonabbeyCouncil": {
"url": "https://antrimandnewtownabbey.gov.uk/residents/bins-recycling/bins-schedule/?Id=643",
"wiki_command_url_override": "https://antrimandnewtownabbey.gov.uk/residents/bins-recycling/bins-schedule/?Id=XXXX",
"wiki_name": "Antrim & Newtonabbey Council",
"wiki_note": "Navigate to [https://antrimandnewtownabbey.gov.uk/residents/bins-recycling/bins-schedule] and search for your street name. Use the URL with the ID to replace XXXXXXXX with your specific ID."
},
"ArdsAndNorthDownCouncil": {
"uprn": "187136177",
"url": "https://www.ardsandnorthdown.gov.uk",
"wiki_command_url_override": "https://www.ardsandnorthdown.gov.uk",
"wiki_name": "Ards and North Down Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"ArgyllandButeCouncil": {
"skip_get_url": true,
"uprn": "125061759",
"url": "https://www.argyll-bute.gov.uk",
"wiki_name": "Argyll and Bute Council",
"wiki_note": "Pass the UPRN. You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"ArmaghBanbridgeCraigavonCouncil": {
"uprn": "185625284",
"url": "https://www.armaghbanbridgecraigavon.gov.uk/",
"wiki_command_url_override": "https://www.armaghbanbridgecraigavon.gov.uk/",
"wiki_name": "Armagh Banbridge Craigavon Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"ArunCouncil": {
"house_number": "1",
"postcode": "BN16 4DA",
"skip_get_url": true,
"url": "https://www1.arun.gov.uk/when-are-my-bins-collected",
"web_driver": "http://selenium:4444",
"wiki_name": "Arun Council",
"wiki_note": "Pass the house name/number and postcode in their respective parameters, both wrapped in double quotes. This parser requires a Selenium webdriver."
},
"AshfieldDistrictCouncil": {
"house_number": "1",
"postcode": "NG16 6RH",
"url": "https://www.ashfield.gov.uk",
"web_driver": "http://selenium:4444",
"wiki_name": "Ashfield District Council",
"wiki_note": "Pass the house name/number and postcode in their respective parameters, both wrapped in double quotes. This parser requires a Selenium webdriver"
},
"AshfordBoroughCouncil": {
"postcode": "TN23 7SP",
"uprn": "100060777899",
"web_driver": "http://selenium:4444",
"url": "https://ashford.gov.uk",
"wiki_command_url_override": "https://ashford.gov.uk",
"wiki_name": "Ashford Borough Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"AylesburyValeCouncil": {
"skip_get_url": true,
"uprn": "766252532",
"url": "http://avdcbins.web-labs.co.uk/RefuseApi.asmx",
"wiki_name": "Aylesbury Vale Council (Buckinghamshire)",
"wiki_note": "To get the UPRN, please use [FindMyAddress](https://www.findmyaddress.co.uk/search). Returns all published collections in the past, present, future."
},
"BCPCouncil": {
"skip_get_url": true,
"uprn": "100040810214",
"url": "https://online.bcpcouncil.gov.uk/bindaylookup/",
"wiki_name": "BCP Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"BaberghDistrictCouncil": {
"house_number": "Monday",
"postcode": "Week 1",
"skip_get_url": true,
"uprn": "Tuesday",
"url": "https://www.babergh.gov.uk",
"wiki_name": "Babergh District Council",
"wiki_note": "Use the House Number field to pass the DAY of the week for your NORMAL collections. [Monday/Tuesday/Wednesday/Thursday/Friday]. [OPTIONAL] Use the 'postcode' field to pass the WEEK for your garden collection. [Week 1/Week 2]. [OPTIONAL] Use the 'uprn' field to pass the DAY for your garden collection. [Monday/Tuesday/Wednesday/Thursday/Friday]"
},
"BarnetCouncil": {
"house_number": "HA8 7NA, 2, MANOR PARK GARDENS, EDGWARE, BARNET",
"postcode": "HA8 7NA",
"skip_get_url": true,
"url": "https://www.barnet.gov.uk/recycling-and-waste/bin-collections/find-your-bin-collection-day",
"web_driver": "http://selenium:4444",
"wiki_name": "Barnet Council",
"wiki_note": "Follow the instructions [here](https://www.barnet.gov.uk/recycling-and-waste/bin-collections/find-your-bin-collection-day) until you get the page listing your address, then copy the entire address text and use that in the house number field. This parser requires a Selenium webdriver."
},
"BarnsleyMBCouncil": {
"postcode": "S36 9AN",
"skip_get_url": true,
"uprn": "2007004502",
"url": "https://waste.barnsley.gov.uk/ViewCollection/Collections",
"wiki_name": "Barnsley Metropolitan Borough Council",
"wiki_note": "To get the UPRN, you will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"BasildonCouncil": {
"skip_get_url": true,
"uprn": "10013350430",
"url": "https://basildonportal.azurewebsites.net/api/getPropertyRefuseInformation",
"wiki_name": "Basildon Council",
"wiki_note": "To get the UPRN, you will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"BasingstokeCouncil": {
"skip_get_url": true,
"uprn": "100060220926",
"url": "https://www.basingstoke.gov.uk/bincollection",
"wiki_name": "Basingstoke Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"BathAndNorthEastSomersetCouncil": {
"skip_get_url": true,
"uprn": "100120000855",
"url": "https://www.bathnes.gov.uk/webforms/waste/collectionday/",
"wiki_name": "Bath and North East Somerset Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"BedfordBoroughCouncil": {
"skip_get_url": true,
"uprn": "10024232065",
"url": "https://www.bedford.gov.uk/bins-and-recycling/household-bins-and-recycling/check-your-bin-day",
"wiki_name": "Bedford Borough Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"BedfordshireCouncil": {
"postcode": "SG19 2UP",
"skip_get_url": true,
"uprn": "10000802040",
"url": "https://www.centralbedfordshire.gov.uk/info/163/bins_and_waste_collections_-_check_bin_collection_day",
"wiki_name": "Bedfordshire Council",
"wiki_note": "In order to use this parser, you must provide a valid postcode and a UPRN retrieved from the council's website for your specific address."
},
"BelfastCityCouncil": {
"postcode": "BT10 0GY",
"skip_get_url": true,
"uprn": "185086469",
"url": "https://online.belfastcity.gov.uk/find-bin-collection-day/Default.aspx",
"wiki_name": "Belfast City Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"BexleyCouncil": {
"house_number": "1 Dorchester Avenue, Bexley",
"postcode": "DA5 3AH",
"skip_get_url": true,
"uprn": "100020196143",
"url": "https://mybexley.bexley.gov.uk/service/When_is_my_collection_day",
"web_driver": "http://selenium:4444",
"wiki_name": "Bexley Council",
"wiki_note": "In order to use this parser, you will need to sign up to [Bexley's @Home app](https://www.bexley.gov.uk/services/rubbish-and-recycling/bexley-home-recycling-app/about-app). Complete the setup by entering your email and setting your address with postcode and address line. Once you can see the calendar, you should be good to run the parser. Just pass the email you used in quotes in the UPRN parameter."
},
"BirminghamCityCouncil": {
"postcode": "B5 7XE",
"uprn": "100070445256",
"url": "https://www.birmingham.gov.uk/xfp/form/619",
"wiki_name": "Birmingham City Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"BlabyDistrictCouncil": {
"uprn": "100030401782",
"url": "https://www.blaby.gov.uk",
"wiki_command_url_override": "https://www.blaby.gov.uk",
"wiki_name": "Blaby District Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"BlackburnCouncil": {
"skip_get_url": true,
"uprn": "100010733027",
"url": "https://mybins.blackburn.gov.uk/api/mybins/getbincollectiondays?uprn=100010733027&month=8&year=2022",
"web_driver": "http://selenium:4444",
"wiki_command_url_override": "https://www.blackburn.gov.uk",
"wiki_name": "Blackburn Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"BlaenauGwentCountyBoroughCouncil": {
"postcode": "NP23 7TE",
"skip_get_url": false,
"uprn": "100100471367",
"url": "https://www.blaenau-gwent.gov.uk",
"web_driver": "http://selenium:4444",
"wiki_name": "Blaenau Gwent County Borough Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"BolsoverCouncil": {
"url": "https://bolsover.gov.uk",
"uprn": "100030066827",
"wiki_name": "Bolsover Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"BoltonCouncil": {
"postcode": "BL1 5PQ",
"skip_get_url": true,
"uprn": "100010886936",
"url": "https://carehomes.bolton.gov.uk/bins.aspx",
"web_driver": "http://selenium:4444",
"wiki_name": "Bolton Council",
"wiki_note": "To get the UPRN, you will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search). Previously required a single field that was UPRN and full address; now requires UPRN and postcode as separate fields."
},
"BostonBoroughCouncil": {
"house_number": "CEDAR",
"postcode": "PE20 1AY",
"skip_get_url": true,
"url": "https://www.boston.gov.uk/findwastecollections",
"web_driver": "http://selenium:4444",
"wiki_name": "Boston Borough Council",
"wiki_note": "Provide your house number in the `house_number` parameter and postcode in the `postcode` parameter."
},
"BracknellForestCouncil": {
"house_number": "57",
"paon": "57",
"postcode": "GU47 9BS",
"skip_get_url": true,
"url": "https://selfservice.mybfc.bracknell-forest.gov.uk/w/webpage/waste-collection-days",
"wiki_name": "Bracknell Forest Council",
"wiki_note": "Pass the house number and postcode in their respective parameters."
},
"BradfordMDC": {
"custom_component_show_url_field": false,
"skip_get_url": true,
"uprn": "100051146921",
"url": "https://onlineforms.bradford.gov.uk/ufs/collectiondates.eb",
"wiki_name": "Bradford MDC",
"wiki_note": "To get the UPRN, you will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search). Postcode isn't parsed by this script, but you can pass it in double quotes."
},
"BraintreeDistrictCouncil": {
"postcode": "CO5 9BD",
"skip_get_url": true,
"uprn": "10006930172",
"url": "https://www.braintree.gov.uk/",
"wiki_name": "Braintree District Council",
"wiki_note": "Provide your UPRN and postcode. Use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find your UPRN."
},
"BrecklandCouncil": {
"uprn": "100091495479",
"url": "https://www.breckland.gov.uk",
"wiki_command_url_override": "https://www.breckland.gov.uk",
"wiki_name": "Breckland Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"BrentCouncil": {
"house_number": "25",
"postcode": "HA3 0QU",
"url": "https://recyclingservices.brent.gov.uk/waste",
"wiki_name": "Brent Council",
"wiki_note": "Pass the house number and postcode in their respective parameters."
},
"BrightonandHoveCityCouncil": {
"house_number": "44 Carden Avenue, Brighton, BN1 8NE",
"postcode": "BN1 8NE",
"skip_get_url": true,
"uprn": "22060199",
"url": "https://cityclean.brighton-hove.gov.uk/link/collections",
"web_driver": "http://selenium:4444",
"wiki_name": "Brighton and Hove City Council",
"wiki_note": "Use the full address as it appears on the drop-down on the site when you search by postcode."
},
"BristolCityCouncil": {
"skip_get_url": true,
"uprn": "137547",
"url": "https://bristolcouncil.powerappsportals.com/completedynamicformunauth/?servicetypeid=7dce896c-b3ba-ea11-a812-000d3a7f1cdc",
"wiki_name": "Bristol City Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"BromleyBoroughCouncil": {
"url": "https://recyclingservices.bromley.gov.uk/waste/6087017",
"web_driver": "http://selenium:4444",
"wiki_command_url_override": "https://recyclingservices.bromley.gov.uk/waste/XXXXXXX",
"wiki_name": "Bromley Borough Council",
"wiki_note": "Follow the instructions [here](https://recyclingservices.bromley.gov.uk/waste) until the \"Your bin days\" page then copy the URL and replace the URL in the command."
},
"BromsgroveDistrictCouncil": {
"uprn": "100120584652",
"url": "https://www.bromsgrove.gov.uk",
"wiki_command_url_override": "https://www.bromsgrove.gov.uk",
"wiki_name": "Bromsgrove District Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"BroxbourneCouncil": {
"postcode": "EN8 7FL",
"uprn": "148048608",
"url": "https://www.broxbourne.gov.uk",
"wiki_name": "Broxbourne Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"BroxtoweBoroughCouncil": {
"postcode": "NG16 2LY",
"skip_get_url": true,
"uprn": "100031325997",
"url": "https://www.broxtowe.gov.uk/",
"web_driver": "http://selenium:4444",
"wiki_name": "Broxtowe Borough Council",
"wiki_note": "Pass the UPRN and postcode. To get the UPRN, you can use [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"BuckinghamshireCouncil": {
"house_number": "2",
"postcode": "HP13 7BA",
"skip_get_url": true,
"url": "https://iapp.itouchvision.com/iappcollectionday/collection-day/?uuid=FA353FC74600CBE61BE409534D00A8EC09BDA3AC&lang=en",
"web_driver": "http://selenium:4444",
"wiki_name": "Buckinghamshire Council (Chiltern, South Bucks, Wycombe)",
"wiki_note": "Pass the house name/number and postcode in their respective arguments, both wrapped in quotes."
},
"BurnleyBoroughCouncil": {
"uprn": "100010347165",
"url": "https://www.burnley.gov.uk",
"wiki_name": "Burnley Borough Council",
"wiki_note": "Pass the UPRN. You can find it using [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"BuryCouncil": {
"house_number": "3",
"postcode": "M26 3XY",
"skip_get_url": true,
"url": "https://www.bury.gov.uk/waste-and-recycling/bin-collection-days-and-alerts",
"wiki_name": "Bury Council",
"wiki_note": "Pass the postcode and house number in their respective arguments, both wrapped in quotes."
},
"CalderdaleCouncil": {
"postcode": "OL14 7EX",
"skip_get_url": true,
"uprn": "010035034598",
"url": "https://www.calderdale.gov.uk/environment/waste/household-collections/collectiondayfinder.jsp",
"web_driver": "http://selenium:4444",
"wiki_name": "Calderdale Council",
"wiki_note": "Pass the UPRN and postcode. To get the UPRN, you can use [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"CannockChaseDistrictCouncil": {
"postcode": "WS15 1JA",
"skip_get_url": true,
"uprn": "200003095389",
"url": "https://www.cannockchasedc.gov.uk/",
"wiki_name": "Cannock Chase District Council",
"wiki_note": "To get the UPRN, you can use [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"CanterburyCityCouncil": {
"uprn": "10094583181",
"url": "https://www.canterbury.gov.uk",
"wiki_command_url_override": "https://www.canterbury.gov.uk",
"wiki_name": "Canterbury City Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"CardiffCouncil": {
"skip_get_url": true,
"uprn": "100100112419",
"url": "https://www.gov.uk",
"wiki_name": "Cardiff Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"CarmarthenshireCountyCouncil": {
"uprn": "10004859302",
"url": "https://www.carmarthenshire.gov.wales",
"wiki_command_url_override": "https://www.carmarthenshire.gov.wales",
"wiki_name": "Carmarthenshire County Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"CastlepointDistrictCouncil": {
"skip_get_url": true,
"uprn": "4525",
"url": "https://apps.castlepoint.gov.uk/cpapps/index.cfm?fa=wastecalendar",
"wiki_name": "Castlepoint District Council",
"wiki_note": "For this council, 'uprn' is actually a 4-digit code for your street. Go [here](https://apps.castlepoint.gov.uk/cpapps/index.cfm?fa=wastecalendar) and inspect the source of the dropdown box to find the 4-digit number for your street."
},
"CharnwoodBoroughCouncil": {
"url": "https://my.charnwood.gov.uk/location?put=cbc10070067259&rememberme=0&redirect=%2F",
"wiki_command_url_override": "https://my.charnwood.gov.uk/location?put=cbcXXXXXXXX&rememberme=0&redirect=%2F",
"wiki_name": "Charnwood Borough Council",
"wiki_note": "Replace XXXXXXXX with your UPRN, keeping \"cbc\" before it."
},
"ChelmsfordCityCouncil": {
"house_number": "1 Celeborn Street, South Woodham Ferrers, Chelmsford, CM3 7AE",
"postcode": "CM3 7AE",
"url": "https://www.chelmsford.gov.uk/myhome/",
"web_driver": "http://selenium:4444",
"wiki_name": "Chelmsford City Council",
"wiki_note": "Follow the instructions [here](https://www.chelmsford.gov.uk/myhome/) until you get the page listing your address, then copy the entire address text and use that in the house number field."
},
"CheltenhamBoroughCouncil": {
"uprn": "100120372027",
"postcode": "GL51 3NA",
"skip_get_url": true,
"url": "https://www.cheltenham.gov.uk",
"wiki_name": "Cheltenham Borough Council",
"wiki_note": "Pass the UPRN. You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"CherwellDistrictCouncil": {
"uprn": "100121292407",
"url": "https://www.cherwell.gov.uk",
"wiki_name": "Cherwell District Council",
"wiki_note": "Use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find your UPRN."
},
"CheshireEastCouncil": {
"url": "https://online.cheshireeast.gov.uk/MyCollectionDay/SearchByAjax/GetBartecJobList?uprn=100012791226&onelineaddress=3%20COBBLERS%20YARD,%20SK9%207DZ&_=1689413260149",
"wiki_command_url_override": "https://online.cheshireeast.gov.uk/MyCollectionDay/SearchByAjax/GetBartecJobList?uprn=XXXXXXXX&onelineaddress=XXXXXXXX&_=1689413260149",
"wiki_name": "Cheshire East Council",
"wiki_note": "Both the UPRN and a one-line address are passed in the URL, which needs to be wrapped in double quotes. The one-line address is made up of the house number, street name, and postcode. Use the form [here](https://online.cheshireeast.gov.uk/mycollectionday/) to find them, then take the first line and postcode and replace all spaces with `%20`."
},
"CheshireWestAndChesterCouncil": {
"skip_get_url": true,
"uprn": "100012346655",
"url": "https://my.cheshirewestandchester.gov.uk",
"wiki_name": "Cheshire West and Chester Council",
"wiki_note": "Pass the UPRN. You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"ChesterfieldBoroughCouncil": {
"skip_get_url": true,
"uprn": "74008234",
"url": "https://www.chesterfield.gov.uk",
"wiki_name": "Chesterfield Borough Council",
"wiki_note": "Pass the UPRN. You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"ChichesterDistrictCouncil": {
"house_number": "7, Plaistow Road, Kirdford, Billingshurst, West Sussex",
"postcode": "RH14 0JT",
"skip_get_url": true,
"url": "https://www.chichester.gov.uk/checkyourbinday",
"web_driver": "http://selenium:4444",
"wiki_name": "Chichester District Council",
"wiki_note": "Needs the full address and postcode as it appears on [this page](https://www.chichester.gov.uk/checkyourbinday)."
},
"ChorleyCouncil": {
"postcode": "PR6 7PG",
"skip_get_url": true,
"uprn": "UPRN100010382247",
"url": "https://myaccount.chorley.gov.uk/wastecollections.aspx",
"web_driver": "http://selenium:4444",
"wiki_name": "Chorley Council",
"wiki_note": "Chorley needs to be passed both a Postcode & UPRN in the format of UPRNXXXXXX to work. Find this on [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"ColchesterCityCouncil": {
"house_number": "29",
"paon": "29",
"postcode": "CO2 8UN",
"skip_get_url": false,
"url": "https://www.colchester.gov.uk/your-recycling-calendar",
"web_driver": "http://selenium:4444",
"wiki_name": "Colchester City Council",
"wiki_note": "Pass the house name/number in the house number parameter, wrapped in double quotes."
},
"ConwyCountyBorough": {
"uprn": "100100429249",
"url": "https://www.conwy.gov.uk",
"wiki_name": "Conwy County Borough Council",
"wiki_note": "Use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find your UPRN."
},
"CopelandBoroughCouncil": {
"uprn": "100110734613",
"url": "https://www.copeland.gov.uk",
"wiki_name": "Copeland Borough Council",
"wiki_note": "*****This has now been replaced by Cumberland Council****"
},
"CornwallCouncil": {
"skip_get_url": true,
"uprn": "100040128734",
"url": "https://www.cornwall.gov.uk/my-area/",
"wiki_name": "Cornwall Council",
"wiki_note": "Use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find your UPRN."
},
"CotswoldDistrictCouncil": {
"house_number": "19",
"postcode": "GL56 0GB",
"skip_get_url": true,
"url": "https://community.cotswold.gov.uk/s/waste-collection-enquiry",
"web_driver": "http://selenium:4444",
"wiki_name": "Cotswold District Council",
"wiki_note": "Pass the full address in the house number and postcode in"
},
"CoventryCityCouncil": {
"url": "https://www.coventry.gov.uk/directory-record/62310/abberton-way-",
"wiki_command_url_override": "https://www.coventry.gov.uk/directory_record/XXXXXX/XXXXXX",
"wiki_name": "Coventry City Council",
"wiki_note": "Follow the instructions [here](https://www.coventry.gov.uk/bin-collection-calendar) until you get the page that shows the weekly collections for your address then copy the URL and replace the URL in the command."
},
"CrawleyBoroughCouncil": {
"house_number": "9701076",
"skip_get_url": true,
"uprn": "100061785321",
"url": "https://my.crawley.gov.uk/",
"wiki_name": "Crawley Borough Council",
"wiki_note": "Crawley needs to be passed both a UPRN and a USRN to work. Find these on [FindMyAddress](https://www.findmyaddress.co.uk/search) or [FindMyStreet](https://www.findmystreet.co.uk/map)."
},
"CroydonCouncil": {
"house_number": "13",
"postcode": "SE25 5DW",
"skip_get_url": true,
"url": "https://service.croydon.gov.uk/wasteservices/w/webpage/bin-day-enter-address",
"wiki_name": "Croydon Council",
"wiki_note": "Pass the house number and postcode in their respective parameters."
},
"CumberlandAllerdaleCouncil": {
"house_number": "2",
"postcode": "CA13 0DE",
"url": "https://www.allerdale.gov.uk",
"wiki_name": "Cumberland Council - Allerdale District",
"wiki_note": "Pass the house number and postcode in their respective parameters."
},
"CumberlandCouncil": {
"uprn": "100110734613",
"url": "https://waste.cumberland.gov.uk",
"wiki_name": "Cumberland Borough Council",
"wiki_note": "Use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find your UPRN."
},
"DacorumBoroughCouncil": {
"house_number": "13",
"postcode": "HP3 9JY",
"skip_get_url": true,
"url": "https://webapps.dacorum.gov.uk/bincollections/",
"web_driver": "http://selenium:4444",
"wiki_name": "Dacorum Borough Council",
"wiki_note": "Pass the house number and postcode in their respective parameters. This parser requires a Selenium webdriver."
},
"DartfordBoroughCouncil": {
"uprn": "010094157511",
"url": "https://windmz.dartford.gov.uk/ufs/WS_CHECK_COLLECTIONS.eb?UPRN=010094157511",
"wiki_name": "Dartford Borough Council",
"wiki_note": "Use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find your UPRN."
},
"DenbighshireCouncil": {
"uprn": "200004299351",
"url": "https://www.denbighshire.gov.uk/",
"wiki_name": "Denbighshire Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"DerbyCityCouncil": {
"uprn": "10010684240",
"url": "https://www.derby.gov.uk",
"wiki_name": "Derby City Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"DerbyshireDalesDistrictCouncil": {
"postcode": "DE4 3AS",
"skip_get_url": true,
"uprn": "10070102161",
"url": "https://www.derbyshiredales.gov.uk/",
"wiki_name": "Derbyshire Dales District Council",
"wiki_note": "Pass the UPRN and postcode. To get the UPRN, you can use [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"DoncasterCouncil": {
"skip_get_url": true,
"uprn": "100050768956",
"url": "https://www.doncaster.gov.uk/Compass/Entity/Launch/D3/",
"wiki_name": "Doncaster Council",
"wiki_note": "Pass the UPRN. You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"DorsetCouncil": {
"skip_get_url": true,
"uprn": "100040711049",
"url": "https://www.dorsetcouncil.gov.uk/",
"wiki_name": "Dorset Council",
"wiki_note": "Pass the UPRN. You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"DoverDistrictCouncil": {
"url": "https://collections.dover.gov.uk/property/100060908340",
"wiki_command_url_override": "https://collections.dover.gov.uk/property/XXXXXXXXXXX",
"wiki_name": "Dover District Council",
"wiki_note": "Replace XXXXXXXXXXX with your UPRN. To get the UPRN, you can use [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"DudleyCouncil": {
"uprn": "90014244",
"url": "https://my.dudley.gov.uk",
"wiki_command_url_override": "https://my.dudley.gov.uk",
"wiki_name": "Dudley Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"DundeeCityCouncil": {
"uprn": "9059043390",
"url": "https://www.dundeecity.gov.uk/",
"wiki_name": "Dundee City Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"DurhamCouncil": {
"skip_get_url": true,
"uprn": "200003218818",
"url": "https://www.durham.gov.uk/bincollections?uprn=",
"wiki_name": "Durham Council",
"wiki_note": "Pass the UPRN. You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"EalingCouncil": {
"skip_get_url": true,
"uprn": "12073883",
"url": "https://www.ealing.gov.uk/site/custom_scripts/WasteCollectionWS/home/FindCollection",
"wiki_name": "Ealing Council",
"wiki_note": "Pass the UPRN. You can find it using [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"EastAyrshireCouncil": {
"uprn": "127074727",
"url": "https://www.east-ayrshire.gov.uk",
"wiki_command_url_override": "https://www.east-ayrshire.gov.uk",
"wiki_name": "East Ayrshire Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"EastCambridgeshireCouncil": {
"skip_get_url": true,
"uprn": "10002597178",
"url": "https://www.eastcambs.gov.uk/",
"wiki_name": "East Cambridgeshire Council",
"wiki_note": "Pass the UPRN. You can find it using [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"EastDevonDC": {
"url": "https://eastdevon.gov.uk/recycling-and-waste/recycling-waste-information/when-is-my-bin-collected/future-collections-calendar/?UPRN=010090909915",
"wiki_command_url_override": "https://eastdevon.gov.uk/recycling-and-waste/recycling-waste-information/when-is-my-bin-collected/future-collections-calendar/?UPRN=XXXXXXXX",
"wiki_name": "East Devon District Council",
"wiki_note": "Replace XXXXXXXX with your UPRN."
},
"EastHertsCouncil": {
"house_number": "1",
"postcode": "CM20 2FZ",
"skip_get_url": true,
"web_driver": "http://selenium:4444",
"url": "https://www.eastherts.gov.uk",
"wiki_name": "East Herts Council",
"wiki_note": "Pass the house number and postcode in their respective parameters."
},
"EastLindseyDistrictCouncil": {
"house_number": "1",
"postcode": "PE22 0YD",
"skip_get_url": true,
"url": "https://www.e-lindsey.gov.uk/",
"web_driver": "http://selenium:4444",
"wiki_name": "East Lindsey District Council",
"wiki_note": "Pass the house name/number and postcode in their respective parameters. This parser requires a Selenium webdriver."
},
"EastLothianCouncil": {
"house_number": "Flat 1",
"postcode": "EH21 6QA",
"skip_get_url": true,
"url": "https://eastlothian.gov.uk",
"wiki_name": "East Lothian Council",
"wiki_note": "Pass the house number and postcode in their respective parameters"
},
"EastRenfrewshireCouncil": {
"house_number": "23",
"postcode": "G46 6RG",
"skip_get_url": true,
"url": "https://eastrenfrewshire.gov.uk/",
"web_driver": "http://selenium:4444",
"wiki_name": "East Renfrewshire Council",
"wiki_note": "Pass the house name/number and postcode in their respective parameters. This parser requires a Selenium webdriver."
},
"EastRidingCouncil": {
"house_number": "14 THE LEASES BEVERLEY HU17 8LG",
"postcode": "HU17 8LG",
"skip_get_url": true,
"url": "https://wasterecyclingapi.eastriding.gov.uk",
"web_driver": "http://selenium:4444",
"wiki_name": "East Riding Council",
"wiki_note": "Put the full address as it displays on the council website dropdown when you do the check manually."
},
"EastStaffordshireBoroughCouncil": {
"url": "https://www.eaststaffsbc.gov.uk/bins-rubbish-recycling/collection-dates/68382",
"wiki_command_url_override": "https://www.eaststaffsbc.gov.uk/bins-rubbish-recycling/collection-dates/XXXXX",
"wiki_name": "East Staffordshire Borough Council",
"wiki_note": "Replace `XXXXX` with your property's ID when selecting from https://www.eaststaffsbc.gov.uk/bins-rubbish-recycling/collection-dates."
},
"EastSuffolkCouncil": {
"postcode": "IP11 9FJ",
"skip_get_url": true,
"uprn": "10093544720",
"url": "https://my.eastsuffolk.gov.uk/service/Bin_collection_dates_finder",
"web_driver": "http://selenium:4444",
"wiki_name": "East Suffolk Council",
"wiki_note": "To get the UPRN, you can use [FindMyAddress](https://www.findmyaddress.co.uk/search). This parser requires a Selenium webdriver."
},
"EastleighBoroughCouncil": {
"skip_get_url": true,
"uprn": "100060303535",
"url": "https://www.eastleigh.gov.uk/waste-bins-and-recycling/collection-dates/your-waste-bin-and-recycling-collections?uprn=",
"wiki_name": "Eastleigh Borough Council",
"wiki_note": "Pass the UPRN. You can find it using [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"EdinburghCityCouncil": {
"house_number": "Tuesday",
"postcode": "Week 1",
"skip_get_url": true,
"url": "https://www.edinburgh.gov.uk",
"wiki_name": "Edinburgh City Council",
"wiki_note": "Use the House Number field to pass the DAY of the week for your collections. Monday/Tuesday/Wednesday/Thursday/Friday. Use the 'postcode' field to pass the WEEK for your collection. [Week 1/Week 2]"
},
"ElmbridgeBoroughCouncil": {
"uprn": "10013119164",
"url": "https://www.elmbridge.gov.uk",
"wiki_command_url_override": "https://www.elmbridge.gov.uk",
"wiki_name": "Elmbridge Borough Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"EnfieldCouncil": {
"house_number": "111",
"postcode": "N13 5AJ",
"skip_get_url": true,
"url": "https://www.enfield.gov.uk/services/rubbish-and-recycling/find-my-collection-day",
"web_driver": "http://selenium:4444",
"wiki_name": "Enfield Council",
"wiki_note": "Pass the house number and postcode in their respective parameters. This parser requires a Selenium webdriver."
},
"EnvironmentFirst": {
"url": "https://environmentfirst.co.uk/house.php?uprn=100060055444",
"wiki_command_url_override": "https://environmentfirst.co.uk/house.php?uprn=XXXXXXXXXX",
"wiki_name": "Environment First",
"wiki_note": "For properties with collections managed by Environment First, such as Lewes and Eastbourne. Replace the XXXXXXXXXX with the UPRN of your property\u2014you can use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find this."
},
"EppingForestDistrictCouncil": {
"postcode": "IG9 6EP",
"web_driver": "http://selenium:4444",
"url": "https://eppingforestdc.maps.arcgis.com/apps/instant/lookup/index.html?appid=bfca32b46e2a47cd9c0a84f2d8cdde17&find=IG9%206EP",
"wiki_name": "Epping Forest District Council",
"wiki_note": "Replace the postcode in the URL with your own."
},
"EpsomandEwellBoroughCouncil": {
"uprn": "100061349083",
"url": "https://www.epsom-ewell.gov.uk",
"wiki_name": "Epsom and Ewell Borough Council",
"wiki_note": "Use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find your UPRN."
},
"ErewashBoroughCouncil": {
"skip_get_url": true,
"uprn": "10003582028",
"url": "https://map.erewash.gov.uk/isharelive.web/myerewash.aspx",
"wiki_name": "Erewash Borough Council",
"wiki_note": "Pass the UPRN. You can find it using [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"ExeterCityCouncil": {
"uprn": "100040212270",
"url": "https://www.exeter.gov.uk",
"wiki_name": "Exeter City Council",
"wiki_note": "Pass the UPRN. You can find it using [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"FalkirkCouncil": {
"uprn": "136065818",
"url": "https://www.falkirk.gov.uk",
"wiki_command_url_override": "https://www.falkirk.gov.uk",
"wiki_name": "Falkirk Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"FarehamBoroughCouncil": {
"postcode": "PO14 4NR",
"skip_get_url": true,
"url": "https://www.fareham.gov.uk/internetlookups/search_data.aspx?type=JSON&list=DomesticBinCollections&Road=&Postcode=PO14%204NR",
"wiki_name": "Fareham Borough Council",
"wiki_note": "Pass the postcode in the postcode parameter, wrapped in double quotes."
},
"FenlandDistrictCouncil": {
"skip_get_url": true,
"uprn": "200002981143",
"url": "https://www.fenland.gov.uk/article/13114/",
"wiki_name": "Fenland District Council",
"wiki_note": "Pass the UPRN. You can find it using [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"FifeCouncil": {
"uprn": "320203521",
"url": "https://www.fife.gov.uk",
"wiki_command_url_override": "https://www.fife.gov.uk",
"wiki_name": "Fife Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"FlintshireCountyCouncil": {
"uprn": "100100213710",
"url": "https://digital.flintshire.gov.uk",
"wiki_command_url_override": "https://digital.flintshire.gov.uk",
"wiki_name": "Flintshire County Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"FolkstoneandHytheDistrictCouncil": {
"skip_get_url": true,
"uprn": "50032097",
"url": "https://www.folkestone-hythe.gov.uk",
"wiki_name": "Folkstone and Hythe District Council",
"wiki_note": "Use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find your UPRN."
},
"ForestOfDeanDistrictCouncil": {
"house_number": "ELMOGAL, PARKEND ROAD, BREAM, LYDNEY",
"postcode": "GL15 6JT",
"skip_get_url": true,
"url": "https://community.fdean.gov.uk/s/waste-collection-enquiry",
"web_driver": "http://selenium:4444",
"wiki_name": "Forest of Dean District Council",
"wiki_note": "Pass the full address in the house number and postcode parameters. This parser requires a Selenium webdriver."
},
"GatesheadCouncil": {
"house_number": "Bracken Cottage",
"postcode": "NE16 5LQ",
"skip_get_url": true,
"url": "https://www.gateshead.gov.uk/",
"web_driver": "http://selenium:4444",
"wiki_name": "Gateshead Council",
"wiki_note": "Pass the house name/number and postcode in their respective parameters. This parser requires a Selenium webdriver."
},
"GedlingBoroughCouncil": {
"house_number": "Friday G4, Friday J",
"skip_get_url": true,
"url": "https://www.gedling.gov.uk/",
"wiki_name": "Gedling Borough Council",
"wiki_note": "Use [this site](https://www.gbcbincalendars.co.uk/) to find the collections for your address. Use the `-n` parameter to add them in a comma-separated list inside quotes, such as: 'Friday G4, Friday J'."
},
"GlasgowCityCouncil": {
"url": "https://onlineservices.glasgow.gov.uk/forms/RefuseAndRecyclingWebApplication/CollectionsCalendar.aspx?UPRN=906700034497",
"wiki_command_url_override": "https://onlineservices.glasgow.gov.uk/forms/RefuseAndRecyclingWebApplication/CollectionsCalendar.aspx?UPRN=XXXXXXXX",
"wiki_name": "Glasgow City Council",
"wiki_note": "Replace XXXXXXXX with your UPRN."
},
"GloucesterCityCouncil": {
"house_number": "111",
"postcode": "GL2 0RR",
"skip_get_url": true,
"uprn": "100120479507",
"url": "https://gloucester-self.achieveservice.com/service/Bins___Check_your_bin_day",
"web_driver": "http://selenium:4444",
"wiki_name": "Gloucester City Council",
"wiki_note": "Pass the house number, postcode, and UPRN in their respective parameters. This parser requires a Selenium webdriver."
},
"GraveshamBoroughCouncil": {
"skip_get_url": true,
"uprn": "100060927046",
"url": "https://www.gravesham.gov.uk",
"wiki_name": "Gravesham Borough Council",
"wiki_note": "Pass the UPRN. You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"GuildfordCouncil": {
"house_number": "THE LODGE, PUTTENHAM HILL HOUSE, PUTTENHAM HILL, PUTTENHAM, GUILDFORD, GU3 1AH",
"postcode": "GU3 1AH",
"skip_get_url": true,
"uprn": "100061372691",
"url": "https://my.guildford.gov.uk/customers/s/view-bin-collections",
"web_driver": "http://selenium:4444",
"wiki_name": "Guildford Council",
"wiki_note": "If the bin day is 'today' then the collectionDate will only show today's date if before 7 AM; else the date will be in 'previousCollectionDate'. To get the UPRN, you will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"GwyneddCouncil": {
"uprn": "10070350463",
"url": "https://diogel.gwynedd.llyw.cymru",
"wiki_name": "Gwynedd Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"HackneyCouncil": {
"house_number": "101",
"postcode": "N16 9AS",
"url": "https://www.hackney.gov.uk",
"wiki_name": "Hackney Council",
"wiki_note": "Pass the postcode and house number in their respective arguments, both wrapped in quotes."
},
"HaltonBoroughCouncil": {
"house_number": "12",
"postcode": "WA7 4HA",
"skip_get_url": true,
"url": "https://webapp.halton.gov.uk/PublicWebForms/WasteServiceSearchv1.aspx#collections",
"web_driver": "http://selenium:4444",
"wiki_name": "Halton Borough Council",
"wiki_note": "Pass the house number and postcode. This parser requires a Selenium webdriver."
},
"HarboroughDistrictCouncil": {
"uprn": "100030489072",
"url": "https://www.harborough.gov.uk",
"wiki_command_url_override": "https://www.harborough.gov.uk",
"wiki_name": "Harborough District Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"HaringeyCouncil": {
"skip_get_url": true,
"uprn": "100021203052",
"url": "https://wastecollections.haringey.gov.uk/property",
"wiki_name": "Haringey Council",
"wiki_note": "Pass the UPRN, which can be found at `https://wastecollections.haringey.gov.uk/property/{uprn}`."
},
"HarrogateBoroughCouncil": {
"skip_get_url": true,
"uprn": "100050414307",
"url": "https://secure.harrogate.gov.uk/inmyarea",
"wiki_name": "Harrogate Borough Council",
"wiki_note": "Pass the UPRN, which can be found at [this site](https://secure.harrogate.gov.uk/inmyarea). URL doesn't need to be passed."
},
"HartDistrictCouncil": {
"skip_get_url": true,
"uprn": "100062349291",
"url": "https://www.hart.gov.uk/",
"wiki_name": "Hart District Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"HartlepoolBoroughCouncil": {
"uprn": "100110019551",
"url": "https://www.hartlepool.gov.uk",
"wiki_name": "Hartlepool Borough Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find your UPRN."
},
"HerefordshireCouncil": {
"url": "https://www.herefordshire.gov.uk/rubbish-recycling/check-bin-collection-day?blpu_uprn=10096232662",
"wiki_command_url_override": "https://www.herefordshire.gov.uk/rubbish-recycling/check-bin-collection-day?blpu_uprn=XXXXXXXXXXXX",
"wiki_name": "Herefordshire Council",
"wiki_note": "Replace 'XXXXXXXXXX' with your property's UPRN. You can find it using [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"HertsmereBoroughCouncil": {
"house_number": "1",
"postcode": "WD7 9HZ",
"skip_get_url": true,
"url": "https://www.hertsmere.gov.uk",
"web_driver": "http://selenium:4444",
"wiki_name": "Hertsmere Borough Council",
"wiki_note": "Provide your house number in the `house_number` parameter and postcode in the `postcode` parameter."
},
"HighPeakCouncil": {
"house_number": "9 Ellison Street, Glossop",
"postcode": "SK13 8BX",
"skip_get_url": true,
"url": "https://www.highpeak.gov.uk/findyourbinday",
"web_driver": "http://selenium:4444",
"wiki_name": "High Peak Council",
"wiki_note": "Pass the name of the street with the house number parameter, wrapped in double quotes. This parser requires a Selenium webdriver."
},
"HighlandCouncil": {
"uprn": "130072429",
"url": "https://www.highland.gov.uk",
"wiki_command_url_override": "https://www.highland.gov.uk",
"wiki_name": "Highland Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"HinckleyandBosworthBoroughCouncil": {
"uprn": "100030533512",
"url": "https://www.hinckley-bosworth.gov.uk",
"wiki_name": "Hinckley and Bosworth Borough Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"HounslowCouncil": {
"house_number": "17A LAMPTON PARK ROAD, HOUNSLOW",
"postcode": "TW3 4HS",
"skip_get_url": true,
"uprn": "10091596698",
"url": "https://www.hounslow.gov.uk/info/20272/recycling_and_waste_collection_day_finder",
"web_driver": "http://selenium:4444",
"wiki_name": "Hounslow Council",
"wiki_note": "Pass the full address as it appears on the council's website. This parser requires a Selenium webdriver."
},
"HullCityCouncil": {
"skip_get_url": true,
"uprn": "21033995",
"url": "https://www.hull.gov.uk/bins-and-recycling/bin-collections/bin-collection-day-checker",
"wiki_name": "Hull City Council",
"wiki_note": "Pass the UPRN. You can find it using [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"HuntingdonDistrictCouncil": {
"url": "http://www.huntingdonshire.gov.uk/refuse-calendar/10012048679",
"wiki_command_url_override": "https://www.huntingdonshire.gov.uk/refuse-calendar/XXXXXXXX",
"wiki_name": "Huntingdon District Council",
"wiki_note": "Replace XXXXXXXX with your UPRN."
},
"IpswichBoroughCouncil": {
"house_number": "Siloam Place",
"url": "https://app.ipswich.gov.uk/bin-collection/",
"wiki_name": "Ipswich Borough Council",
"wiki_note": "Provide only the street name (no house number) as the PAON"
},
"IslingtonCouncil": {
"uprn": "5300094897",
"url": "https://www.islington.gov.uk/your-area?Postcode=unused&Uprn=5300094897",
"wiki_command_url_override": "https://www.islington.gov.uk/your-area?Postcode=unused&Uprn=XXXXXXXX",
"wiki_name": "Islington Council",
"wiki_note": "Replace XXXXXXXX with your UPRN."
},
"KingsLynnandWestNorfolkBC": {
"uprn": "10023636886",
"url": "https://www.west-norfolk.gov.uk/",
"wiki_name": "Kings Lynn and West Norfolk Borough Council",
"wiki_note": "Provide your UPRN. Find your UPRN using [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"KingstonUponThamesCouncil": {
"url": "https://waste-services.kingston.gov.uk/waste/2701097",
"web_driver": "http://selenium:4444",
"wiki_command_url_override": "https://waste-services.kingston.gov.uk/waste/XXXXXXX",
"wiki_name": "Kingston Upon Thames Council",
"wiki_note": "Follow the instructions [here](https://waste-services.kingston.gov.uk/waste) until the \"Your bin days\" page, then copy the URL and replace the URL in the command."
},
"KirkleesCouncil": {
"skip_get_url": true,
"uprn": "83002937",
"url": "https://www.kirklees.gov.uk/beta/your-property-bins-recycling/your-bins",
"wiki_name": "Kirklees Council",
"wiki_note": "Provide your UPRN. Find your UPRN using [FindMyAddress](https://www.findmyaddress.co.uk/search)."
},
"KnowsleyMBCouncil": {
"house_number": "22",
"postcode": "L36 3UY",
"skip_get_url": true,
"url": "https://knowsleytransaction.mendixcloud.com/link/youarebeingredirected?target=bincollectioninformation",