Hacker News new | ask | show | jobs
by mattgreenrocks 1035 days ago
I’ve yet to find a framework that I really like. Ironically, most Python frameworks feel like they force way more coupling on your code than necessary, which is awful considering they are a dynamically typed language. So it feels like the worst of all worlds: Python performance, high coupling to something you don’t control, and dynamic typing.

I understand why these are designed that way, but also don’t enjoy using them. Frameworks can feel very narcissistic in that sense, all the code is about them, despite their promise that you’ll focus on your domain more.

I need to play with some of the Kotlin web libraries more, such as ktor or Javalin. There has to be something better out there.