| from flask import Flask, render_template |
|
|
| app = Flask(__name__) |
| app.debug = False |
|
|
| |
| |
|
|
| |
| |
|
|
| from efficiency_module import blueprint |
| app.register_blueprint(blueprint) |
|
|
| from color2_module import blueprint |
| app.register_blueprint(blueprint) |
|
|
| from color3_module import blueprint |
| app.register_blueprint(blueprint) |
|
|
| from exposure2_module import blueprint |
| app.register_blueprint(blueprint) |
|
|
| from exposure3_module import blueprint |
| app.register_blueprint(blueprint) |
|
|
| from quantity_module import blueprint |
| app.register_blueprint(blueprint) |
|
|
| @app.route('/', methods=['GET']) |
| def app_init(): |
| return render_template('main.html') |
|
|
| if __name__ == '__main__': |
| app.run() |
|
|