A silly question that I suppose the answer is no but to be safe. is it possible to mix in python flask and django? and another question is can i pass app flask to django?
Thank you.
Can you define precisely what you mean by “mixing” them?
What exactly is the degree of interaction that you are expecting between the two?
For example, I can easily set up a web server where some urls are handled by Flask and some are handled by Django - and even sharing the same database. Is that the type of thing you’re looking for, or are you looking for something else?
The thing is that I have an app in a flask where I generate an embedded powerbi report
What I would like to know is if I can add this code (only the code where it is embedded) to my django app.
I am sure you can easily convert that code from Flask to a Django-based function. How much work that will be depends upon how much of Flask the original code is using.