| 1. |
Is Flask An Mvc Model And If Yes Give An Example Showing Mvc Pattern For Your Application? |
|
Answer» Basically, FLASK is a minimalistic FRAMEWORK which behaves same as MVC framework. So MVC is a perfect fit for Flask, and the pattern for MVC . we will consider for the following example: from flask import Flask app = Flask(_name_) Basically, Flask is a minimalistic framework which behaves same as MVC framework. So MVC is a perfect fit for Flask, and the pattern for MVC . we will consider for the following example: from flask import Flask app = Flask(_name_) |
|