diff options
author | LarsVomMars | 2021-01-24 20:28:24 +0100 |
---|---|---|
committer | LarsVomMars | 2021-01-24 20:28:24 +0100 |
commit | 1846da9edaba43d8eeeab8bf417428464a117a36 (patch) | |
tree | da81db89bbc905cdb73f6df0f7f311c6463261f8 /parse.py | |
parent | b0856c707ec6bf686eee81f245142aa95699c0be (diff) |
Questions
idk welp
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) |