Tag: flask

  • Serving Flask helloworld using uwsgi

    uwsgi is a high performance, low-resource usage web server for deploying python application. In this post, i am going to show how to serve a simple HelloWorld application in flask using uwsgi   Prerequisites pip install flask pip install uwsgi Now lets create our app.py from flask import Flask app = Flask(__name__) @app.route(“/”) def hello(): return…