Django Models / SQLAlchemy are bloated! Any truly Pythonic DB models out there?

后端 未结 8 1836
广开言路
广开言路 2021-02-09 15:16

\"Make things as simple as possible, but no simpler.\"

Can we find the solution/s that fix the Python database world?

Update: A

8条回答
  •  清酒与你
    2021-02-09 15:56

    How about you give an example of how "simple" you want your "dealing with database" to be, and I then tell you all the stuff that is needed for that "simplicity" to get working ?

    (And of which it will still be YOU that will be required to give the information/config to the database interface engine, somewhere, somehow.)

    To name but one example :

    If your database management engine is some external machine with which you/your app interfaces over IP or some such, there is no way around the fact that the IP identity of where that database engine is running, will have to be provided by your app's database interface client, somewhere, somehow. Regardless of whether that gets explicitly exposed in the code or not.

提交回复
热议问题