Added response encoding

pull/2/head
Illia Chub 2021-01-05 13:27:00 +02:00
parent 0f9947a274
commit b82a5fe3d0
1 changed files with 2 additions and 4 deletions

View File

@ -19,10 +19,8 @@ def getDkimKey():
domain = domain.rstrip("\n")
catProcess = subprocess.Popen(["cat", "/var/dkim/" + domain + ".selector.txt"], stdout=subprocess.PIPE)
dkim = catProcess.communicate()[0]
#dkim = str(dkim, "utf-8")
#dkim = base64.b64encode(dkim)
print(dkim)
return "0"
dkim = base64.b64encode(dkim)
return jsonify(dkim)
@app.route("/pythonVersion", methods=["GET"])
def getPythonVersion():
pythonVersion = subprocess.check_output(["python","--version"])