Ask HN: Building desktop application in Python?
I am planning to build an application for school , that will allow school stuff to manage students data.
Which is better - Desktop application or web app?
What are tools, guides and books available to learn writing desktop application in Python?
2 comments
[ 3.2 ms ] story [ 15.4 ms ] threadIt 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.