Reputation: 19
Let's say I have build an application in tkinter on my personal laptop and I have distributed the .exe of it to my friends in different parts of the world. Now, I want to add some features in that application for which I wrote some extra lines of code on that same .py file whose .exe I sent earlier. How can I push the updates to all my friends who are using that app without having to send them .exe file everytime I update the code?
Upvotes: 0
Views: 855
Reputation: 7006
Any answers to this questions won't specifically relate to python or tkinter since you are distributing an exe.
Here is how this might work in high level terms.
So for this application, you need a webserver where you can store the exe files of the different versions and will respond to requests to tell the program what the latest version available is You also need another program which will handle the download and copying of the files to the correct locations
As you're no doubt aware, there are plenty of examples of this occurring on "App Stores"
Upvotes: 1