write an update manager in python/wxPython

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • m.errami@gmail.com

    #1

    write an update manager in python/wxPython

    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.

  • Will McGugan

    #2
    Re: write an update manager in python/wxPython

    m.errami@gmail. com wrote:
    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
    --
    blog: http://www.willmcgugan.com

    Comment

    • gagsl-py@yahoo.com.ar

      #3
      Re: write an update manager in python/wxPython

      On 7 dic, 19:04, Will McGugan <w...@willNOmcg uganSPAM.comwro te:
      m.err...@gmail. com wrote:
      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.
      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...

      --
      Gabriel Genellina

      Comment

      • m.errami@gmail.com

        #4
        Re: write an update manager in python/wxPython

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



        gagsl-py@yahoo.com.ar wrote:
        On 7 dic, 19:04, Will McGugan <w...@willNOmcg uganSPAM.comwro te:
        m.err...@gmail. com wrote:
        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.
        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...
        >
        --
        Gabriel Genellina

        Comment

        Working...