|
|
|
|
|
by sifu
6294 days ago
|
|
it's very easy to write your own framework in python, that does excactly what you need it to do and nothing more.
therefore is:
scaleable the way you need it for your application.
not in your way of doing things.
easier to debug. it's a bit of development overhead in the beginning, but pays of in the long run. |
|
If I'm just coding up a small app I don't want the overhead of a framework. I might want a bit of routing, possibly some automated mvc and that's about it. Everything else in a framework I usually care little about and just slows stuff down for no benefit to me.
Coding up a "framework" that does only the very little I actually need is fast and very little development overhead considering the number of times I've done it and the fact that I've got code I can re-use.
This isn't business advice however, it's just my own personal project preference. If you're running a business you want to be able to replace developers if they quit so it's often a better idea to go with something more mainstream like a well known framework so that ramp-up time is minimized.