Hi Everyone I hope you know the basics of how to install flask and start a project. Else you can refer the below link https://binaykumarray.wordpress.com/2014/09/18/python-flask-part-1-micro-web-framework/ Ok lets move on to the next step. Go inside the the flaskapp.py file and make the following changes. # Import blocks to import views which will # be called … Continue reading Python/Flask Part-2. Rendering template through URL
Tag: flask
Python/Flask Part-1. (Python micro web-framework)
Flask is python based Micro-framework used for smaller application. I am considering that you are using an unix based system that comes with python pre-installed and virtual environment package installed in the system. Installation: Installing Flask is very simple. In the terminal type: pip install Flask==dev Activate the virtual environment and create the folder structure … Continue reading Python/Flask Part-1. (Python micro web-framework)