Dict to Json

Dictionnary maps between the party name and its real name, as well as the meaning of the votation


In [1]:
parties_name_dict = {'Groupe écologiste':'Parti écologiste suisse (Les Verts)', 'Groupe socialiste':'Parti socialiste', 
        "Groupe vert'libéral":'Parti vert-libéral', 'Groupe radical-démocratique':'Parti libéral-radical',
        'Groupe des Paysans, Artisans et Bourgeois':'Union démocratique du centre',
        'Groupe conservateur-catholique':'Parti démocrate-chrétien', 
        'Groupe BD':'Parti Bourgeois-Démocratique', 'Non inscrit':'Non inscrit'}
parties_dict = {'G':'PES', 'S':'PS', 'GL':'PVL', 'RL':'PLR', 
                'V':'UDC', 'CE':'PDC', 'BD':'PBD', 'C':'PDC', '-':'Other', 'CEg':'PDC'}

vote_dict = {1:'Yes',2:'No',3:'Abstention',5:'Did not participate',6:'Excused',7:'President'}

In [9]:
import json
with open('parties_name.json', 'w') as f:
    json.dump(parties_name_dict, f)
    
with open('parties_abbrev.json', 'w') as f:
    json.dump(parties_dict, f)

with open('vote_dict.json', 'w') as f:
    json.dump(vote_dict, f)