Linux GUI for python?

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

    Linux GUI for python?

    Looking for any suggestions for a GUI for python
    under linux. Right now I'm just starting out but
    latter on I want to get into building programs
    that have GUIs. Any suggestions?
  • Derrick 'dman' Hudson

    #2
    Re: Linux GUI for python?

    On Thu, 11 Dec 2003 23:20:01 GMT, Lord Jester wrote:[color=blue]
    > Looking for any suggestions for a GUI for python
    > under linux. Right now I'm just starting out but
    > latter on I want to get into building programs
    > that have GUIs. Any suggestions?[/color]

    I like wxPython or PyGTK.

    You'll have to investigate each and decide what you want in terms of
    API and Look-and-Feel.

    -D

    --
    Q: What is the difference between open-source and commercial software?
    A: If you have a problem with commercial software you can call a phone
    number and they will tell you it might be solved in a future version.
    For open-source sofware there isn't a phone number to call, but you
    get the solution within a day.

    www: http://dman13.dyndns.org/~dman/ jabber: dman@dman13.dyn dns.org

    Comment

    • Jules Dubois

      #3
      Re: Linux GUI for python?

      On Thu, 11 Dec 2003 23:20:01 GMT, in article
      <news:pan.2003. 12.11.23.20.01. 662183@NOSPAMco mcast.net>, Lord Jester wrote:
      [color=blue]
      > Looking for any suggestions for a GUI for python
      > under linux.[/color]

      I used Tkinter for about 10 weeks. I didn't like it at first but the more
      I used it the more I liked it. There's some good (but incomplete)
      documentation at



      Alan Gauld has written a useful tutorial but I've lost the URL.

      PyGTK looks very good to me. There is a very nice tutorial at
      http://www.moeraki.com/pygtktutorial/ and reference at
      http://www.moeraki.com/pygtkreference/ There's a mailing list for PyGTK; I
      get it through NNTP courtesy of the nice people at http://www.gmane.org/

      Finally, Alex Martelli says (Message-ID:
      <7Ypob.72491$e5 .2660364@news1. tin.it>), "Yes, eric + pyqt + qt _IS_ a great
      RAD [...]".

      Comment

      • T. Schulz

        #4
        Re: Linux GUI for python?

        I started with Tkinter and Tix. Always found it quite hard to read the
        Tk documentation.

        Now I moved to wxPython and I belive thats the way to go.

        Thomas


        Lord Jester wrote:
        [color=blue]
        > Looking for any suggestions for a GUI for python
        > under linux. Right now I'm just starting out but
        > latter on I want to get into building programs
        > that have GUIs. Any suggestions?[/color]

        Comment

        • Eric Brunel

          #5
          Re: Linux GUI for python?

          Jules Dubois wrote:[color=blue]
          > On Thu, 11 Dec 2003 23:20:01 GMT, in article
          > <news:pan.2003. 12.11.23.20.01. 662183@NOSPAMco mcast.net>, Lord Jester wrote:
          >
          >[color=green]
          >>Looking for any suggestions for a GUI for python
          >>under linux.[/color]
          >
          >
          > I used Tkinter for about 10 weeks. I didn't like it at first but the more
          > I used it the more I liked it. There's some good (but incomplete)
          > documentation at
          >
          > http://www.nmt.edu/tcc/help/lang/python/docs.html[/color]

          I'd recommend "Thinking in Tkinter" at:



          for beginning and "An introduction to Tkinter" at:

          An Introduction to Tkinter: Explore the essential Python library for GUI design. This guide covers widgets, event handling, and geometry management to help you build functional, cross-platform desktop apps.


          for more advanced things and reference. And when you're really fluent in
          Tkinter, then you can use tcl/tk's manual pages for a really complete reference:



          You'll have to convert tcl syntax to Python's, but once you're used to it, it's
          not really difficult.
          [color=blue]
          > Alan Gauld has written a useful tutorial but I've lost the URL.[/color]

          It's here:



          part of his "Learning to program" pages:



          But I do prefer "Thinking in Tkinter".
          [color=blue]
          > PyGTK looks very good to me. There is a very nice tutorial at
          > http://www.moeraki.com/pygtktutorial/ and reference at
          > http://www.moeraki.com/pygtkreference/ There's a mailing list for PyGTK; I
          > get it through NNTP courtesy of the nice people at http://www.gmane.org/
          >
          > Finally, Alex Martelli says (Message-ID:
          > <7Ypob.72491$e5 .2660364@news1. tin.it>), "Yes, eric + pyqt + qt _IS_ a great
          > RAD [...]".[/color]

          HTH
          --
          - Eric Brunel <eric dot brunel at pragmadev dot com> -
          PragmaDev : Real Time Software Development Tools - http://www.pragmadev.com

          Comment

          • Padraig@Linux.ie

            #6
            Re: Linux GUI for python?

            Jules Dubois wrote:[color=blue]
            > On Thu, 11 Dec 2003 23:20:01 GMT, in article
            > <news:pan.2003. 12.11.23.20.01. 662183@NOSPAMco mcast.net>, Lord Jester wrote:
            >
            >[color=green]
            >>Looking for any suggestions for a GUI for python
            >>under linux.[/color]
            >
            >
            > I used Tkinter for about 10 weeks. I didn't like it at first but the more
            > I used it the more I liked it. There's some good (but incomplete)
            > documentation at
            >
            > http://www.nmt.edu/tcc/help/lang/python/docs.html
            >
            > Alan Gauld has written a useful tutorial but I've lost the URL.
            >
            > PyGTK looks very good to me. There is a very nice tutorial at
            > http://www.moeraki.com/pygtktutorial/ and reference at
            > http://www.moeraki.com/pygtkreference/ There's a mailing list for PyGTK; I
            > get it through NNTP courtesy of the nice people at http://www.gmane.org/[/color]

            Don't forget about glade which can speed things up
            immensely. E.Gs are always nice:


            cheers,
            Pádraig.

            Comment

            • Lord Jester

              #7
              Re: Linux GUI for python?

              On Fri, 12 Dec 2003 01:03:55 +0000, Derrick 'dman' Hudson wrote:
              [color=blue]
              > On Thu, 11 Dec 2003 23:20:01 GMT, Lord Jester wrote:[color=green]
              >> Looking for any suggestions for a GUI for python
              >> under linux. Right now I'm just starting out but
              >> latter on I want to get into building programs
              >> that have GUIs. Any suggestions?[/color]
              >
              > I like wxPython or PyGTK.
              >
              > You'll have to investigate each and decide what you want in terms of
              > API and Look-and-Feel.
              >
              > -D[/color]

              Thanks everyone for the assistance. :)

              JesterDev

              Comment

              • Steve Lamb

                #8
                Re: Linux GUI for python?

                On 2003-12-11, Lord Jester <jester.dev@NOS PAMcomcast.net> wrote:[color=blue]
                > Looking for any suggestions for a GUI for python
                > under linux. Right now I'm just starting out but
                > latter on I want to get into building programs
                > that have GUIs. Any suggestions?[/color]

                Personally I use wxPython as the base with Boa-Constructor as the RAD IDE.

                --
                Steve C. Lamb | I'm your priest, I'm your shrink, I'm your
                PGP Key: 8B6E99C5 | main connection to the switchboard of souls.
                -------------------------------+---------------------------------------------

                Comment

                Working...