diff options
Diffstat (limited to 'parse.py')
-rw-r--r-- | parse.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/parse.py b/parse.py deleted file mode 100644 index 7181d00..0000000 --- a/parse.py +++ /dev/null @@ -1,11 +0,0 @@ -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) |