@app.route("/information/<input>", methods=['GET'])
def deserialization(input):
return render_template("information/index.html")
yaml_file = base64.b64decode(input)
content = yaml.load(yaml_file)
content = "The application was unable to to deserialize the object!"
return render_template("index.html", content = content['yaml'])