8 lines
174 B
Python
8 lines
174 B
Python
try:
|
|
f = open("hmac_key.txt", "r")
|
|
except FileNotFoundError:
|
|
print("Datei 'hmac_key.txt' fehlt.")
|
|
exit(1)
|
|
SECRET = f.readline().strip().encode("utf-8")
|
|
f.close()
|