Flask Restful Application: Getting started for Beginners
To create Flask Restful application use following steps: Pre-requisites before you start creating Flask Application: 1) Your system must have Python installed or updated Click here to download Python 2) Before installing the Python Make sure to click " add to path " then hit install : 3) Upgrade the pip, using the below command in the command prompt: python -m pip install --upgrade pip 4) Install Flask using following command: pip install flask Steps to create Flask Application: First of all, we have to create a Project Repository (Folder) where all our files will be stored. In the Project Repository create static folder, this is where you will store the CSS file i.e cascading style sheet file. And create another folder i.e templates which will hold the HTML file of your projects. 1) Create a Project Repository (Folder) to create Flask application. 2) Create a python file flask_app.py : You can use any name you want ...