Leonard Michalas
Leonard Michalas

Reputation: 1188

NameError: name 'request' is not defined

I got this Python Code, and somehow I get the Error Message:

File "/app/identidock.py", line 13, in mainpage
if request.method == 'POST':
NameError: name 'request' is not defined

But I really can't find my mistake. Can someone please help me with that?

from flask import Flask, Response
import requests
import hashlib

app = Flask(__name__)
salt = "UNIQUE_SALT"
default_name = 'test'

@app.route('/', methods=['GET', 'POST'])
def mainpage():

    name = default_name
    if request.method == 'POST':
        name = request.form['name']

    salted_name = salt + name
    name_hash = hashlib.sha256(salted_name.encode()).hexdigest()

    header = '<html><head><title>Identidock</title></head><body>'
    body = '''<form method="POST">
              Hallo <input type="text" name="name" value="{0}">
              <input type="submit" value="Abschicken">
              </form>
              <p> Du siehst aus wie ein: </p>
             <img src="/monster/{1}"/>
           '''.format(name, name_hash)
    footer = '</body></html>'

    return header + body + footer

@app.route('/monster/<name>')
def get_identicon(name):

    r = requests.get('http://dnmonster:8080/monster/' \
        + name + '?size=80')
    image = r.content

    return Response(image, mimetype='image/png')

if __name__ == '__main__':
    app.run(debug=True, host='0.0.0.0')

Upvotes: 77

Views: 145532

Answers (3)

shoaib21
shoaib21

Reputation: 505

Use this will Work,

self.request

Upvotes: 2

Martijn Pieters
Martijn Pieters

Reputation: 1121854

You appear to have forgotten to import the flask.request request context object:

from flask import request

Upvotes: 198

willeM_ Van Onsem
willeM_ Van Onsem

Reputation: 476594

You are probably missing the following import statement:

from flask import request

that should be placed in the header of the file.

Upvotes: 23

Related Questions