Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (1.6k points)

I'm wondering how to go about obtaining the value of a POST/GET request variable using Python with Flask.

With Ruby, I'd do something like this:

variable_name = params["FormFieldValue"]

How would I do this with Flask?

1 Answer

0 votes
by (25.1k points)

If you want to obtain data from a POST request you can use: request.form["var_name"]

If you want to obtain data from a GET request you can use: request.args["var_name"]

Related questions

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
asked Jul 2, 2020 in Python by Sudhir_1997 (55.6k points)

Browse Categories

...