How can i combine Flask web application and Nameko microservices?
Let me give you some context. I have flask-based (http://flask.pocoo.org) web application. This application can execute long (5-10 minutes) tasks. I want to be able to write and attach additional modules to this application while it is still running. It is OK if I stop application while in development, but I cannot stop it in production.
I dont have any experience with Nameko (https://nameko.readthedocs.org), is it the best solution to my problem? And if so - can I mix Flask app and Nameko microservices?