write an update manager in python/wxPython

M

m.errami

Hello all
I have a small application for which I would like to write an update
manager. I assume that the basics of it is to compare versions of the
user's current application and a new one store in a new file on a
particular URL.
Now is there any standard way to do that. I am sure I can figure out
something. But instead of designing something new from scratch that may
end up to be full of bugs, maybe some existing classes in python,
wxPython or within the win32com package exist.
Any thoughts?
Thank you all

M.E.
 
W

Will McGugan

Hello all
I have a small application for which I would like to write an update
manager. I assume that the basics of it is to compare versions of the
user's current application and a new one store in a new file on a
particular URL.
Now is there any standard way to do that. I am sure I can figure out
something. But instead of designing something new from scratch that may
end up to be full of bugs, maybe some existing classes in python,
wxPython or within the win32com package exist.
Any thoughts?

Dont think there is a standard way of doing it. The way I have done it
in my applications is to keep an ini file containing the version number,
which is downloaded and compared against the version of the app. That
part is trivial to implement in python with urllib. I just point the
user at the download url when there is a new version. It would require a
little more effort if you want to have some kind of automatic update...


Will McGugan
 
G

gagsl-py

Dont think there is a standard way of doing it. The way I have done it
in my applications is to keep an ini file containing the version number,
which is downloaded and compared against the version of the app. That
part is trivial to implement in python with urllib. I just point the
user at the download url when there is a new version. It would require a
little more effort if you want to have some kind of automatic update...

There is a sample script (in tools/versioncheck in your Python
directory) you could use as a starting point. Not a big deal...
 
M

m.errami

Will & Gabriel
Well I will then think of something.
Thank you very much. I do appreciate your help.
M.E.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,780
Messages
2,569,608
Members
45,241
Latest member
Lisa1997

Latest Threads

Top