aboutsummaryrefslogtreecommitdiff
path: root/parse.py
blob: 7181d006e92ba2acdc86b1ac0d4eca6ade54a46e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import json

users = json.loads(open("./users.json", "r").read())

for cid in users:
    clazz = users[cid]
    s = "Nutzername,Password"
    for user in clazz:
        s += f"\n{user['username']},{user['pwd']}"

    open(f"./{cid}.csv", "w").write(s)