Posts by Cristopher Gollmann • 3 points
3 posts
-
0
votes2
answers858
viewsA: Flask - sending form back to another function
I found the solution by doing so: @app.route("/index", methods=["GET", "POST"]) def load(): form = ReqForm() if request.method == 'POST': output = request.form['field'] print(output) endPoint =…
-
0
votes2
answers858
viewsQ: Flask - sending form back to another function
Below is my default.py where I set the end-point; What I’m trying to do is get the information from FORM that’s on "/" send to the return_request() and append the result of Request in "/output" def…
-
-4
votes1
answer77
viewsQ: Python - I would like some examples of using "APLICATION/LD+JSON"
I’ve always worked with REST for integrations, now I’m using a new system where I can’t use only pure JSON, they use LD Json, and I still don’t quite understand this concept and I’m having some…