Talk:List of parliamentary secretaries of Canada

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia

This page seems very out of date. It offers organization in more than one way (chronological, and by ministry/position), but htey are incomplete.

Here's a script for processing the list at https://pm.gc.ca/en/news/news-releases/2019/12/12/prime-minister-welcomes-new-parliamentary-secretaries into a more suitable wiki format:

#!/usr/bin/python3

x= [s.strip().split(' is ') for s in open('tmpps').readlines()]
for a,b in [L for L in x if len(L)==2]:
    print('* '+b)
    print('**  12 December 2019 - Present: [[{}]]'.format(a))