GUI programming with python

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • zamil

    GUI programming with python

    Hello Everyone

    It's my very first email to this group. i am a beginner programmer of
    python. it it possible to build Desktop application using python.
    Which IDE should i use for this purpose? I will be glad if anyone can
    give link of python ebook.

    Thanks in Advance
    Zamil
  • John Fabiani

    #2
    Re: GUI programming with python

    Alan Franzoni wrote:
    zamil was kind enough to say:
    >
    [cut]
    >
    If your needs are very basic, you can stick with the tk module that comes
    with python. It's not really feature-packed, but it's maintained and
    pretty cross-platform.
    >
    Otherwise, you can pick any supported widget set you like and use the
    proper python bindings. You didn't tell us which OS you'd work with, hence
    we can't tell you what's the best choice (if there's any).
    >
    BTW you should be able to enjoy GTK+, QT or Swing (if using Jython on
    Java) or anything found in MS.NET (if using IronPython) - or you can go
    for wxPython as well.
    >
    GUI Designers are widget-set related - I can suggest gazpacho for GTK+.
    >
    You might want to take a look at Dabo (www.dabodev.com). Check out the
    screencast.

    Johnf

    Comment

    • rynt

      #3
      Re: GUI programming with python

      On Aug 26, 10:49 am, John Fabiani <jfabi...@yolo. comwrote:
      Alan Franzoni wrote:
      zamil was kind enough to say:
      >
      [cut]
      >
      <cut>
      See the following link on the Python website.



      Google this list for GUI

      RC

      Comment

      • Bruno Desthuilliers

        #4
        Re: GUI programming with python

        zamil a écrit :
        Hello Everyone
        >
        It's my very first email to this group. i am a beginner programmer of
        python. it it possible to build Desktop application using python.
        Yes.
        Which IDE should i use for this purpose?
        I suspect you are confusing "IDE" with "GUI builder". FWIW, you don't
        *need* any IDE nor GUI builder - a decent code editor is enough. Now if
        you really want a GUI builder, you'll have to choose one that's tied to
        your GUI toolkit and that run on your platform.

        Comment

        • Al Dykes

          #5
          Re: GUI programming with python

          In article <1bs69ogq6nspt. 136i7kvcux142$. dlg@40tude.net> ,
          Alan Franzoni <alan.franzoni. xyz@gmail.comwr ote:
          >zamil was kind enough to say:
          >
          >[cut]
          >
          >If your needs are very basic, you can stick with the tk module that comes
          >with python. It's not really feature-packed, but it's maintained and pretty
          >cross-platform.

          OK, what are my choices for an IDE/GUI development tool that runs on XP?

          Thanks



          --
          Al Dykes
          News is something someone wants to suppress, everything else is advertising.
          - Lord Northcliffe, publisher of the Daily Mail

          Comment

          • Stef Mientki

            #6
            Re: GUI programming with python

            Al Dykes wrote:
            In article <1bs69ogq6nspt. 136i7kvcux142$. dlg@40tude.net> ,
            Alan Franzoni <alan.franzoni. xyz@gmail.comwr ote:
            >
            >zamil was kind enough to say:
            >>
            >[cut]
            >>
            >If your needs are very basic, you can stick with the tk module that comes
            >with python. It's not really feature-packed, but it's maintained and pretty
            >cross-platform.
            >>
            >
            >
            OK, what are my choices for an IDE/GUI development tool that runs on XP?
            >
            Thanks
            >
            >
            >
            >
            From Linux guys, I hear that PyScripter is the best,
            they also want to have it, but unfortunately it only runs under windows ;-)

            cheers,
            Stef
            >

            Comment

            • Mike Driscoll

              #7
              Re: GUI programming with python

              On Sep 12, 1:33 pm, ady...@panix.co m (Al Dykes) wrote:
              In article <1bs69ogq6nspt. 136i7kvcux142$. ...@40tude.net> ,
              Alan Franzoni  <alan.franzoni. ...@gmail.comwr ote:
              >
              zamil was kind enough to say:
              >
              [cut]
              >
              If your needs are very basic, you can stick with the tk module that comes
              with python. It's not really feature-packed, but it's maintained and pretty
              cross-platform.
              >
              OK, what are my choices for an IDE/GUI development tool that runs on XP?
              >
              Thanks
              >
              --
              Al Dykes
               News is something someone wants to suppress, everything else is advertising.
                  - Lord Northcliffe, publisher of the Daily Mail
              Here's a few:

              WingWare: http://www.wingware.com/
              SPE: http://pythonide.blogspot.com/
              Eclipse + Python plugin = EasyEclipse (PyDev):

              Or you could use Google and you would have found this:



              Mike

              Comment

              • sturlamolden

                #8
                Re: GUI programming with python

                On Sep 12, 8:33 pm, ady...@panix.co m (Al Dykes) wrote:
                OK, what are my choices for an IDE/GUI development tool that runs on XP?
                That depends on the GUI toolkit you are using. My suggestion:

                CPython with wxPython: wxFormBuilder

                Cpython with PyQt: BlackAdder

                CPython with PyGTK: GLADE 3

                Jython: whatever there is for Swing or SWT.

                IronPython: MS VisualStudio

                Cpython + PyWin32: GUI with VB/Delphi/C#. Python ActiveX server (can
                use MFC).










                Comment

                • David Boddie

                  #9
                  Re: GUI programming with python

                  On Saturday 13 September 2008 01:04, sturlamolden wrote:
                  On Sep 12, 8:33 pm, ady...@panix.co m (Al Dykes) wrote:
                  >
                  >OK, what are my choices for an IDE/GUI development tool that runs on XP?
                  [...]
                  Cpython with PyQt: BlackAdder
                  People using this combination apparently prefer Eric, these days:



                  More suggestions can be found on this page:



                  David

                  Comment

                  Working...