Talk:List of parliamentary secretaries of Canada

From WikiProjectMed
Jump to navigation Jump to search

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))