Python platform.

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

    Python platform.

    Hello all;

    I wonder if there is a platform written in python. The equivalent of
    the Netbeans platform http://platform.netbeans.org/ in the Python
    world. Do you know such a thing?

    Thanks a lot.

    Jonathan.
  • Fredrik Lundh

    #2
    Re: Python platform.

    carriere.jonath an@gmail.com wrote:
    I wonder if there is a platform written in python. The equivalent of
    the Netbeans platform http://platform.netbeans.org/ in the Python
    world. Do you know such a thing?
    You (or maybe the Java folks) seem to have missed that platform has a
    rather specific meaning in computing:

    http://en.wikipedia.org/wiki/Platform_(computing)

    Given that definition, Python is pretty much a platform in itself. If
    you want to use Python for a specific task, you add libraries for that
    task. Tell us what you want to do, and we'll tell you what libraries
    and toolkits you might want to try.

    </F>

    Comment

    • carriere.jonathan@gmail.com

      #3
      Re: Python platform.

      On Sep 11, 4:19 pm, Fredrik Lundh <fred...@python ware.comwrote:
      carriere.jonat. ..@gmail.com wrote:
      >
       I wonder if there is a platform written in python. The equivalent of
       the Netbeans platformhttp://platform.netbea ns.org/in the Python
       world. Do you know such a thing?
      >
      You (or maybe the Java folks) seem to have missed that platform has a
      rather specific meaning in computing:
      >
      http://en.wikipedia.org/wiki/Platform_(computing)
      >
      Given that definition, Python is pretty much a platform in itself.  If
      you want to use Python for a specific task, you add libraries for that
      task.  Tell us what you want to do, and we'll tell you what libraries
      and toolkits you might want to try.
      >
      </F>
      I want to build a desktop application. I am searching for some kind of
      environment that would provide all the elements ready (Windows...).
      Then I would have to code the business logic only.

      Jonathan.

      Comment

      • bearophileHUGS@lycos.com

        #4
        Re: Python platform.

        carriere.jonat. ..:
        I want to build a desktop application. I am searching for some kind of
        environment that would provide all the elements ready (Windows...).
        Then I would have to code the business logic only.
        I don't think there's such thing in Python, "all elements ready"
        sounds strange :-)

        Maybe you may appreciate Dabo: http://dabodev.com/
        Or maybe Pythoncard?

        Bye,
        bearophile

        Comment

        • drobinow@gmail.com

          #5
          Re: Python platform.

          On Sep 11, 11:13 am, "carriere.jonat ...@gmail.com"
          <carriere.jonat ...@gmail.comwr ote:
          On Sep 11, 4:19 pm, Fredrik Lundh <fred...@python ware.comwrote:
          >
          >
          >
          carriere.jonat. ..@gmail.com wrote:
          >
           I wonder if there is a platform written in python. The equivalent of
           the Netbeans platformhttp://platform.netbea ns.org/inthe Python
           world. Do you know such a thing?
          >
          You (or maybe the Java folks) seem to have missed that platform has a
          rather specific meaning in computing:
          >>
          Given that definition, Python is pretty much a platform in itself.  If
          you want to use Python for a specific task, you add libraries for that
          task.  Tell us what you want to do, and we'll tell you what libraries
          and toolkits you might want to try.
          >
          </F>
          >
          I want to build a desktop application. I am searching for some kind of
          environment that would provide all the elements ready (Windows...).
          Then I would have to code the business logic only.
          >
          Jonathan.
          What's business logic?

          Comment

          • Fredrik Lundh

            #6
            Re: Python platform.

            carriere.jonath an@gmail.com wrote:
            I want to build a desktop application. I am searching for some kind of
            environment that would provide all the elements ready (Windows...).
            Then I would have to code the business logic only.
            start here:



            The big ones are Tkinter, which is usually bundled with Python;
            wxPython, and PyQt. There's also a trend towards using the web browser
            as a presentation engine also for local applications; for libraries that
            help you with that, you can start here:



            or jump directly to

            The web framework for perfectionists with deadlines.


            </F>

            Comment

            • Sean DiZazzo

              #7
              Re: Python platform.

              On Sep 11, 9:59 am, Fredrik Lundh <fred...@python ware.comwrote:
              carriere.jonat. ..@gmail.com wrote:
              I want to build a desktop application. I am searching for some kind of
              environment that would provide all the elements ready (Windows...).
              Then I would have to code the business logic only.
              >
              start here:
              >
                 http://wiki.python.org/moin/GuiProgramming
              >
              The big ones are Tkinter, which is usually bundled with Python;
              wxPython, and PyQt.  There's also a trend towards using the web browser
              as a presentation engine also for local applications; for libraries that
              help you with that, you can start here:
              >
                 http://wiki.python.org/moin/WebProgramming
              >
              or jump directly to
              >
                 http://www.djangoproject.com/
              >
              </F>
              I saw a message in the last few days showing how to use Flash as a
              front end for Python apps. It looked interested.

              Can anyone point me to it?

              ~Sean

              Comment

              • Sean DiZazzo

                #8
                Re: Python platform.

                On Sep 11, 11:39 am, Sean DiZazzo <half.ital...@g mail.comwrote:
                On Sep 11, 9:59 am, Fredrik Lundh <fred...@python ware.comwrote:
                >
                >
                >
                carriere.jonat. ..@gmail.com wrote:
                I want to build a desktop application. I am searching for some kind of
                environment that would provide all the elements ready (Windows...).
                Then I would have to code the business logic only.
                >
                start here:
                >>
                The big ones are Tkinter, which is usually bundled with Python;
                wxPython, and PyQt.  There's also a trend towards using the web browser
                as a presentation engine also for local applications; for libraries that
                help you with that, you can start here:
                >>
                or jump directly to
                >>
                </F>
                >
                I saw a message in the last few days showing how to use Flash as a
                front end for Python apps.  It looked interested.
                >
                Can anyone point me to it?
                >
                ~Sean
                Ahh...i see. It was the xml-rpc method you mentioned. Looks
                interesting to me if it's fairly responsive for normal gui apps.



                ~Sean

                Comment

                • Craig Allen

                  #9
                  Re: Python platform.

                  What's business logic?
                  an oxymoron?

                  Comment

                  • primeq

                    #10
                    Re: Python platform.

                    On Sep 11, 8:56 am, "carriere.jonat ...@gmail.com"
                    <carriere.jonat ...@gmail.comwr ote:
                    Hello all;
                    >
                    I wonder if there is a platform written in python. The equivalent of
                    the Netbeans platformhttp://platform.netbea ns.org/in the Python
                    world. Do you know such a thing?
                    >
                    Thanks a lot.
                    >
                    Jonathan.
                    Check out Eric (http://www.die-offenbachs.de/eric/) - it's not as
                    solid as Netbeans (way lower funding, fewer developers by a large
                    margin), but it works fine. Better still you have the source at your
                    fingertips when you're using it - it's written in Python.

                    Personally I have not had much success with the Windows version, but
                    the Linux version works out of the box for me.

                    Comment

                    Working...