-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmay15exercise.py
11938 lines (11937 loc) · 524 KB
/
may15exercise.py
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
house = {
"meta": {
"total_count": 336,
"limit": 336,
"next": None,
"offset": 0,
"previous": None,
},
"objects": [
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Jones",
"name": "Yvonne Jones",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 996-7132",
"tel": "1 613 996-4630",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 709 896-9425",
"tel": "1 709 896-2483",
"postal": "217 Hamilton River Road, PO Box 119 Station B (Main Office)\n\nHappy Valley-Goose Bay NL A0P 1E0",
"type": "constituency",
},
{
"fax": "1 709 927-5830",
"tel": "1 709 927-5210",
"postal": "53 Main Highway, PO Box 242\n\nL'Anse au Loup NL A0K 3L0",
"type": "constituency",
},
{
"fax": "1 709 944-7260",
"tel": "1 709 944-2146",
"postal": "201 Humber Avenue\nSuite 202\nLabrador City NL A2V 2Y3",
"type": "constituency",
},
],
"first_name": "Yvonne",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/10004/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://yjones.liberal.ca",
"district_name": "Labrador",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Yvonne-Jones(13218)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/JonesYvonne_Lib.jpg",
"party_name": "Liberal",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "O'Regan",
"name": "Seamus O'Regan",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 995-7858",
"tel": "1 613 992-0927",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 709 772-4776",
"tel": "1 709 772-4608",
"postal": "689 Topsail Road (Main Office)\n2nd Floor\nSt. John's NL A1E 2E3",
"type": "constituency",
},
],
"first_name": "Seamus",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/10007/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://seamus.ca",
"district_name": "St. John's South\u2014Mount Pearl",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Seamus-ORegan(88299)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/OReganSeamus_Lib.jpg",
"party_name": "Liberal",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Blaikie",
"name": "Daniel Blaikie",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 995-6688",
"tel": "1 613 995-6339",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 204 984-2502",
"tel": "1 204 984-2499",
"postal": "1100 Concordia Avenue (Main Office)\nSuite 210\nWinnipeg MB R2K 4B8",
"type": "constituency",
},
],
"first_name": "Daniel",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/46005/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://danielblaikie.ndp.ca",
"district_name": "Elmwood\u2014Transcona",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Daniel-Blaikie(89032)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/BlaikieDaniel_NDP.jpg",
"party_name": "NDP",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Masse",
"name": "Brian Masse",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 992-5397",
"tel": "1 613 996-1541",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 519 255-7913",
"tel": "1 519 255-1631",
"postal": "1398 Ouellette Avenue (Main Office)\nSuite 2\nWindsor ON N8X 1J8",
"type": "constituency",
},
],
"first_name": "Brian",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/35117/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://brianmasse.ca",
"district_name": "Windsor West",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Brian-Masse(9137)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/MasseBrian_NDP.jpg",
"party_name": "NDP",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Van Loan",
"name": "Peter Van Loan",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 992-8351",
"tel": "1 613 996-7752",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 905 898-4600",
"tel": "1 905 898-1600",
"postal": "45 Grist Mill Road (Main Office)\nSuite 10\nHolland Landing ON L9N 1M7",
"type": "constituency",
},
],
"first_name": "Peter",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/35119/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://petervanloan.com",
"district_name": "York\u2014Simcoe",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Peter-Van-Loan(25465)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/VanLoanPeter_CPC.jpg",
"party_name": "Conservative",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Stubbs",
"name": "Shannon Stubbs",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 996-9011",
"tel": "1 613 992-4171",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 780 657-7079",
"tel": "1 780 657-7075",
"postal": "5009 - 50 Street (Main Office)\n\nTwo Hills AB T0B 4K0",
"type": "constituency",
},
],
"first_name": "Shannon",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/48025/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://shannonstubbsmp.ca",
"district_name": "Lakeland",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Shannon-Stubbs(89198)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/StubbsShannon_CPC.jpg",
"party_name": "Conservative",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Hutchings",
"name": "Gudie Hutchings",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 996-9632",
"tel": "1 613 996-5511",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 709 637-4537",
"tel": "1 709 637-4540",
"postal": "49-51 Park Street (Main Office)\n\nCorner Brook NL A2H 2X1",
"type": "constituency",
},
{
"tel": "1 709 643-4189",
"type": "constituency",
"postal": "83 B Main Street\n\nStephenville NL A2N 1H9",
},
{
"tel": "1 709 454-3253",
"type": "constituency",
"postal": "171-173 West Street\n\nSt Anthony NL A0K 4S0",
},
],
"first_name": "Gudie",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/10005/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://ghutchings.liberal.ca",
"district_name": "Long Range Mountains",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Gudie-Hutchings(88292)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/HutchingsGudie_Lib.jpg",
"party_name": "Liberal",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Saganash",
"name": "Romeo Saganash",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 996-0828",
"tel": "1 613 992-3030",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 819 824-2958",
"tel": "1 819 824-2942",
"postal": "888 3rd Avenue (Main Office)\nSuite 204\nVal-d'Or QC J9P 5E6",
"type": "constituency",
},
{
"fax": "1 418 748-7413",
"tel": "1 418 748-7870",
"postal": "333 3rd Street\nSuite 10\nChibougamau QC G8P 1N4",
"type": "constituency",
},
],
"first_name": "Romeo",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/24001/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://romeosaganash.ndp.ca",
"district_name": "Abitibi\u2014Baie-James\u2014Nunavik\u2014Eeyou",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Romeo-Saganash(71482)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/SaganashRomeo_NDP.jpg",
"party_name": "NDP",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "MacAulay",
"name": "Lawrence MacAulay",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 995-2754",
"tel": "1 613 995-9325",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 902 838-3790",
"tel": "1 902 838-4139",
"postal": "551 Main Street (Main Office)\nPO Box 1150\nMontague PE C0A 1R0",
"type": "constituency",
},
],
"first_name": "Lawrence",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/11001/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://lawrencemacaulay.liberal.ca",
"district_name": "Cardigan",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Lawrence-MacAulay(33)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/MacAulayLawrence_Lib.jpg",
"party_name": "Liberal",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Dubourg",
"name": "Emmanuel Dubourg",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 995-9755",
"tel": "1 613 995-6108",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 514 323-2875",
"tel": "1 514 323-1212",
"postal": "5835 Leger Blvd (Main Office)\nSuite 203\nMontreal-Nord QC H1G 6E1",
"type": "constituency",
},
],
"first_name": "Emmanuel",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/24015/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://emmanueldubourg.ca/en",
"district_name": "Bourassa",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Emmanuel-Dubourg(84660)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/DubourgEmmanuel_Lib.jpg",
"party_name": "Liberal",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Gallant",
"name": "Cheryl Gallant",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 995-2561",
"tel": "1 613 992-7712",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 613 732-4697",
"tel": "1 613 732-4404",
"postal": "84 Isabella Street (Main Office)\n1st Floor\nPembroke ON K8A 5S5",
"type": "constituency",
},
],
"first_name": "Cheryl",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/35086/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://cherylgallant.com",
"district_name": "Renfrew\u2014Nipissing\u2014Pembroke",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Cheryl-Gallant(1809)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/GallantCheryl_CPC.jpg",
"party_name": "Conservative",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Alghabra",
"name": "Omar Alghabra",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 992-1321",
"tel": "1 613 992-1301",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 905 848-2712",
"tel": "1 905 848-8595",
"postal": "151 City Centre Drive (Main Office)\nSuite 400\nMississauga ON L5B 1M7",
"type": "constituency",
},
],
"first_name": "Omar",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/35058/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://www.omaralghabra.ca",
"district_name": "Mississauga Centre",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Omar-Alghabra(89535)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/AlghabraOmar_Lib.jpg",
"party_name": "Liberal",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Stetski",
"name": "Wayne Stetski",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 996-9923",
"tel": "1 613 995-7246",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 250 417-2253",
"tel": "1 250 417-2250",
"postal": "111 - 7th Avenue South (Main Office)\n\nCranbrook BC V1C 2J3",
"type": "constituency",
},
{
"fax": "1 250 354-2613",
"tel": "1 250 354-2610",
"postal": "310 Ward Street\nSuite 501\nNelson BC V1L 5S4",
"type": "constituency",
},
],
"first_name": "Wayne",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/59015/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://waynestetski.ndp.ca",
"district_name": "Kootenay\u2014Columbia",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Wayne-Stetski(89281)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/StetskiWayne_NDP.jpg",
"party_name": "NDP",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Berthold",
"name": "Luc Berthold",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 943-1562",
"tel": "1 613 995-1377",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 418 338-3631",
"tel": "1 418 338-2903",
"postal": "105A Notre-Dame Street East (Main Office)\n\nThetford Mines QC G6G 2J9",
"type": "constituency",
},
{
"tel": "1 819 362-0055",
"type": "constituency",
"postal": "1754 Saint-Calixte Street, PO Box 351\n\nPlessisville QC G6L 1R3",
},
{
"tel": "1 819 583-0074",
"type": "constituency",
"postal": "5527 Frontenac Street\nSuite 212\nLac-M\u00e9gantic QC G6B 1H6",
},
],
"first_name": "Luc",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/24047/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "",
"district_name": "M\u00e9gantic\u2014L'\u00c9rable",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Luc-Berthold(88541)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/BertholdLuc_CPC.jpg",
"party_name": "Conservative",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "May",
"name": "Bryan May",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 996-8340",
"tel": "1 613 996-1307",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 519 624-3517",
"tel": "1 519 624-7440",
"postal": "534 Hespeler Road (Main Office)\nSuite A4\nCambridge ON N1R 6J7",
"type": "constituency",
},
],
"first_name": "Bryan",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/35016/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://bryanmaymp.ca",
"district_name": "Cambridge",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Bryan-May(71599)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/MayBryan_Lib.jpg",
"party_name": "Liberal",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Nantel",
"name": "Pierre Nantel",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 992-2744",
"tel": "1 613 992-8514",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 450 928-4293",
"tel": "1 450 928-4288",
"postal": "192 Saint-Jean Street (Main Office)\nSuite 200\nLongueuil QC J4H 2X5",
"type": "constituency",
},
],
"first_name": "Pierre",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/24043/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://pierrenantel.ndp.ca",
"district_name": "Longueuil\u2014Saint-Hubert",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Pierre-Nantel(71447)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/NantelPierre_NDP.jpg",
"party_name": "NDP",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Miller",
"name": "Marc Miller",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 995-6404",
"tel": "1 613 995-6403",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 514 496-8097",
"tel": "1 514 496-4885",
"postal": "3175 Saint-Jacques Street (Main Office)\n\nMontr\u00e9al QC H4C 1G7",
"type": "constituency",
},
],
"first_name": "Marc",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/24077/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://mmiller.liberal.ca/en",
"district_name": "Ville-Marie\u2014Le Sud-Ouest\u2014\u00cele-des-Soeurs",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Marc-Miller(88660)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/MillerMarc_Lib.jpg",
"party_name": "Liberal",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Pauz\u00e9",
"name": "Monique Pauz\u00e9",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 996-4338",
"tel": "1 613 992-5257",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 450 581-9958",
"tel": "1 450 581-3896",
"postal": "184 Notre-Dame Street (Main Office)\nSuite 201\nRepentigny QC J6A 2P9",
"type": "constituency",
},
],
"first_name": "Monique",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/24060/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://moniquepauze.quebec",
"district_name": "Repentigny",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Monique-Pauze(88595)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/Pauz\u00e9Monique_BQ.jpg",
"party_name": "Groupe parlementaire qu\u00e9b\u00e9cois",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Wrzesnewskyj",
"name": "Borys Wrzesnewskyj",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 947-4276",
"tel": "1 613 947-5000",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 416 249-6117",
"tel": "1 416 249-7322",
"postal": "577 Burnhamthorpe Road (Main Office)\nSuite 2\nEtobicoke ON M9C 2Y3",
"type": "constituency",
},
],
"first_name": "Borys",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/35027/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://bwrzesnewskyj.liberal.ca",
"district_name": "Etobicoke Centre",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Borys-Wrzesnewskyj(25468)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/WrzesnewskyjBorys_Lib.jpg",
"party_name": "Liberal",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Bibeau",
"name": "Marie-Claude Bibeau",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 992-1696",
"tel": "1 613 995-2024",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 819 347-3583",
"tel": "1 819 347-2598",
"postal": "175 Queen Street (Main Office)\nSuite 204\nSherbrooke QC J1M 1K1",
"type": "constituency",
},
],
"first_name": "Marie-Claude",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/24023/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://mcbibeau.liberal.ca/en",
"district_name": "Compton\u2014Stanstead",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Marie-Claude-Bibeau(88449)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/BibeauMarieClaude_Lib.jpg",
"party_name": "Liberal",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Harder",
"name": "Rachael Harder",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 992-6181",
"tel": "1 613 992-4516",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 403 380-4026",
"tel": "1 403 320-0070",
"postal": "255 - 8th Street South (Main Office)\n\nLethbridge AB T1J 4Y1",
"type": "constituency",
},
],
"first_name": "Rachael",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/48026/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://rachaelharder.ca",
"district_name": "Lethbridge",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Rachael-Harder(89200)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/HarderRachael_CPC.jpg",
"party_name": "Conservative",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Dhaliwal",
"name": "Sukh Dhaliwal",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 992-1965",
"tel": "1 613 992-0666",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 604 598-2212",
"tel": "1 604 598-2200",
"postal": "12992 - 76th Avenue (Main Office)\nUnit 202\nSurrey BC V3W 2V6",
"type": "constituency",
},
],
"first_name": "Sukh",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/59033/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://sdhaliwal.liberal.ca",
"district_name": "Surrey\u2014Newton",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Sukh-Dhaliwal(31098)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/DhaliwalSukh_Lib.jpg",
"party_name": "Liberal",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Ng",
"name": "Mary Ng",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 992-3921",
"tel": "1 613 996-3374",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 905 479-3440",
"tel": "1 905 479-8100",
"postal": "16 Esna Park Drive (Main Office)\nUnit 107\nMarkham ON L3R 5X1",
"type": "constituency",
},
],
"first_name": "Mary",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/35055/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://maryngmp.ca",
"district_name": "Markham\u2014Thornhill",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Mary-Ng(96352)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/NgMary_LIB.jpg",
"party_name": "Liberal",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Jordan",
"name": "Bernadette Jordan",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 996-0878",
"tel": "1 613 996-0877",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 902 527-5656",
"tel": "1 902 527-5655",
"postal": "129 Aberdeen Road (Main Office)\nSuite 106\nBridgewater NS B4V 2S7",
"type": "constituency",
},
],
"first_name": "Bernadette",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/12009/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://bernadettejordan.ca",
"district_name": "South Shore\u2014St. Margarets",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Bernadette-Jordan(88340)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/JordanBernadette_Lib.jpg",
"party_name": "Liberal",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Albrecht",
"name": "Harold Albrecht",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 992-9932",
"tel": "1 613 992-4633",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 519 578-0138",
"tel": "1 519 578-3777",
"postal": "1187 Fischer-Hallman Road (Main Office)\nUnit 624\nKitchener ON N2E 4H9",
"type": "constituency",
},
],
"first_name": "Harold",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/35046/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://haroldalbrechtmp.ca",
"district_name": "Kitchener\u2014Conestoga",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Harold-Albrecht(35607)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/AlbrechtHarold_CPC.jpg",
"party_name": "Conservative",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Quach",
"name": "Anne Minh-Thu Quach",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 941-3300",
"tel": "1 613 995-2532",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 450 371-3330",
"tel": "1 450 371-0644",
"postal": "47 Jacques Cartier Street (Main Office)\n\nSalaberry-de-Valleyfield QC J6T 4P9",
"type": "constituency",
},
],
"first_name": "Anne Minh-Thu",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/24071/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://anneminhthuquach.ndp.ca",
"district_name": "Salaberry\u2014Suro\u00eet",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Anne-Minh-Thu-Quach(71350)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/QuachAnneMinhThu_NDP.jpg",
"party_name": "NDP",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "McDonald",
"name": "Ken McDonald",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 992-7277",
"tel": "1 613 992-4133",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 709 834-3628",
"tel": "1 709 834-3424",
"postal": "120 Conception Bay Highway (Main Office)\nSuite 105\nConception Bay South NL A1W 3A6",
"type": "constituency",
},
],
"first_name": "Ken",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/10001/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "http://kmcdonald.liberal.ca",
"district_name": "Avalon",
"url": "http://www.parl.gc.ca/Parliamentarians/en/members/Ken-McDonald(88283)",
"photo_url": "http://www.ourcommons.ca/Parliamentarians/Images/OfficialMPPhotos/42/McDonaldKen_Lib.jpg",
"party_name": "Liberal",
"email": "[email protected]",
},
{
"source_url": "http://www.parl.gc.ca/Parliamentarians/en/members?view=ListAll",
"last_name": "Long",
"name": "Wayne Long",
"representative_set_name": "House of Commons",
"offices": [
{
"fax": "1 613 947-4574",
"tel": "1 613 947-2700",
"postal": "House of Commons\nOttawa ON K1A 0A6",
"type": "legislature",
},
{
"fax": "1 506 657-2504",
"tel": "1 506 657-2500",
"postal": "1 Market Square (Main Office)\nSuite N306\nSaint John NB E2L 4Z6",
"type": "constituency",
},
],
"first_name": "Wayne",
"gender": "",
"elected_office": "MP",
"extra": {},
"related": {
"boundary_url": "/boundaries/federal-electoral-districts/13009/",
"representative_set_url": "/representative-sets/house-of-commons/",
},
"personal_url": "",
"district_name": "Saint John\u2014Rothesay",