|
|
|
|
|
by dvddgld
3021 days ago
|
|
Outside of the usual desktop UI libraries, Kivy is worth mentioning. It's best suited to touch and graphical applications. It is becoming more standard to use a use a whole web stack with a framework like React or Vue for UI. On desktop you can do this with Electron or you can make a standard web app. Some balk at this for various reasons but it sure makes development fast and flexible if it suits your use case. And for any CRUD app it does. Flask and SQLAlchemy or Django can be used as a backend and abstraction for your database. Again this makes developing a CRUD app fast and flexible. |
|