# App initialization from flask_api import FlaskAPI from flask_sqlalchemy import SQLAlchemy from flask_bcrypt import Bcrypt app = FlaskAPI(__name__, instance_relative_config=True) app.config.from_object('config') app.config.from_pyfile('config.py', silent=True) db = SQLAlchemy(app) bcrypt = Bcrypt(app) def setup_blueprints(app): """ Sets up all of the blueprints for application All blueprints should be imported in this method and then added API blueprint should expose all resources, while other blueprints expose other domain specific functionalities They are exposed as blueprints just for consistency, otherwise they are just simple python packages/modules """ from .devices import devices_bp from .accounts import accounts_bp from .api import api_bp app.register_blueprint(devices_bp) app.register_blueprint(accounts_bp) app.register_blueprint(api_bp, url_prefix='/api') setup_blueprints(app) @app.route("/") def hello(): return "Hello World!"