I have a project that contains work with complex excel
file(bank balance sheet), db and web interface. Naturally I would like to design diagram visually to autogenerate sql
(Model-First approach in Entity framework), but I was rather surprised and frustrated not to find design surface options in python ORM
s.
Is it the case and I left with Code-First option only? That will take a lot of time and effort in my case.
If Django orm and SQLalchemy lack design surface(I hope I'm wrong), what do Python programmers do usually in my case? If they always start with classes that's ok(maybe), but please let me know, because I need to know for sure that Model-first is not used in Python, so my stupid anxiety will go away.