Initial commit

This commit is contained in:
Leopold 2026-03-15 10:05:07 +01:00
commit 2afa8027d8
6 changed files with 289 additions and 0 deletions

10
test.py Normal file
View file

@ -0,0 +1,10 @@
valuesFile = 'output'
values = {}
with open(valuesFile,"r") as f:
for line in f:
splitted = line.split('=')
if len(splitted) == 2:
values[splitted[0].strip()] = splitted[1].strip()
print(values)