I got this Python Code, and somehow I get the Error Message:
File \"/app/identidock.py\", line 13, in mainpage if request.method == \'POST\': N
You appear to have forgotten to import the flask.request request context object:
flask.request
from flask import request
You are probably missing the following import statement:
import
that should be placed in the header of the file.
Use this will Work,
self.request