Comment by Samuel Oloruntoba on "In which types of web projects should I consider using Python (Django or Flask) over Node.js, assuming I know both to an intermediate level?" | Hashnode
The only time I will suggest you use Node.js over python is when it involves a real-time application. This is due to the fact that node can handle real-time concurrency better than python. But apart from that, it's all personal preference.
When you say real-time concurrency what exactly are you talking about? Are you talking about the connection of users? If so would tornadoweb.org/en/stable help any? Or is this framework even a viable choice?