Python Forum

Full Version: Create GUI that works like Web app
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi,

I have created a form in tkinter which is connected to the database (postgresql). Now problem is that only i can use this application . My question is how can make this app more dynamic so that a team of 40 can use it . I dont want to use any python web app flask or django.

Can anyone please suggesst that how a team of 40+ can easily use it and we can have live updates on it?
Why are you the only one that can use it?

From a purely technical standpoint, there is no difference between a python app running tkinter on each of your computers, and a web interface: both are a frontend connecting to a backend.
It is actually a productivity form which is connected to database, if others would use it then they would need to have a database where they would store there data and then i will pick data from each database and enter into one database.

I was thinking a center mechanism where any one can fill the form which will be connected to one Database. Any such desktop Based app. I dont know how would i do that
So your database is local? If you move it to a machine/vm that everyone can access, and then modify your app to connect to that, would that work?
Oh yes. I can install my database on shared drive which everyone access and will run my apps through shared drive. Thank you so much. Thanks a lot for your help and time.