Hacker News new | ask | show | jobs
by asciii 1169 days ago
It just works in most cases. It is nice to be within Python's ecosystem as well.

Overall, I've found it great for prototyping up something really quickly. I think this is where the "batteries-included" helps a lot

1 comments

I feel the opposite. Django is fine, but python ecosystem is the big problem. The lack of true multi threading means for even the simplest of apps you quickly need to have multiple deployments, celery workers etc to handle different kinds of workloads.
You could argue having workers run single threaded code is a lot easier than multithreading, depending on your hiring pool.