Hello everyone, In this post, you will learn, How to get path variable value in Python Flask framework. The example program has been tested and shared in the same post.

Example Program

from flask import Flask
app = Flask(__name__)
@app.route('/<name>')
def hello(name):
return 'Hello '+name
app.run()

Output

* Serving Flask app "app" (lazy loading)
* Environment: production
WARNING: Do not use the development server in a production environment.
Use a production WSGI server instead.
* Debug mode: off
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
Python Flask – Getting Path Variable Value

No responses yet

Leave a Reply

Your email address will not be published. Required fields are marked *