-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.py
executable file
·29 lines (24 loc) · 949 Bytes
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
"""
Sendet informationen an einem Webservice
"""
import json, os
def createConfigFile():
config = {}
print("Es wird nun eine Konfigurationsdatei config.json erstellt.")
config['token'] = input("Gib deinen generierten Mantis API-Token ein: ")
config['standort'] = input("Gib den Standort ein, der bei jedem Gerät automatisch gewählt werden soll: ")
config['mantisapi'] = "https://assets.computerspende-regensburg.de/api/rest/"
with open ('config.json', 'w+') as file:
json.dump(config, file, indent=2)
print("Konfigurationsdatei erfolgreich erstellt.")
def readConfig():
if os.path.exists('config.json'):
pass
# print("Es ist bereits eine Konfigurationsdatei vorhanden.")
# isavailable = input("Möchtest du eine neue erzeugen? (j/n): ")
# if isavailable == "j":
# createConfigFile()
# else:
# pass
else:
createConfigFile()