IDE for Python

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

    IDE for Python

    Hi Guys:
    Is there any good IDE for Python. I checked on
    www.python.org and found some. Installed bluefish but
    to my surprise its just an editor. I guess it cannot
    even compile my code in python or maybe I am wrong.
    Any ideas/recommendations for a free IDE for Python
    Thanks
    Dont




    _______________ _______________ ____
    Do you Yahoo!?
    Win a $20,000 Career Makeover at Yahoo! HotJobs


  • Larry Bates

    #2
    Re: IDE for Python


    Take a look at www.activestate.com for their products.
    Some are free, some are charge items.

    Also take a look at:



    many products reviewed/listed here.

    Larry Bates
    Syscon, Inc.


    "dont bother" <dontbotherworl d@yahoo.com> wrote in message
    news:mailman.16 4.1083359859.25 742.python-list@python.org ...[color=blue]
    > Hi Guys:
    > Is there any good IDE for Python. I checked on
    > www.python.org and found some. Installed bluefish but
    > to my surprise its just an editor. I guess it cannot
    > even compile my code in python or maybe I am wrong.
    > Any ideas/recommendations for a free IDE for Python
    > Thanks
    > Dont
    >
    >
    >
    >
    > _______________ _______________ ____
    > Do you Yahoo!?
    > Win a $20,000 Career Makeover at Yahoo! HotJobs
    > http://hotjobs.sweepstakes.yahoo.com/careermakeover
    >[/color]


    Comment

    • Nuff Said

      #3
      Re: IDE for Python

      On Fri, 30 Apr 2004 14:17:32 -0700, dont bother wrote:[color=blue]
      > Is there any good IDE for Python. I checked on
      > www.python.org and found some. Installed bluefish but
      > to my surprise its just an editor. I guess it cannot
      > even compile my code in python or maybe I am wrong.[/color]

      Why an IDE? Python is - IMO - (one of) THE languages, where
      a good editor (tabs2spaces, comment blocks, select encoding,
      syntax highlighting, auto-indentation, scriptable ...) is all
      you really need.

      (Bluefish ain't the editor of your choice here; write your own
      from scrap or write one using Scintilla; resp. use SciTE with
      a good customization file; or go for (X)Emacs resp. Vim.)

      HTH, Nuff.

      Comment

      • Venkatesh Prasad Ranganath

        #4
        Re: IDE for Python

        Nuff Said wrote:[color=blue]
        > On Fri, 30 Apr 2004 14:17:32 -0700, dont bother wrote:
        >[color=green]
        >>Is there any good IDE for Python. I checked on
        >>www.python.org and found some. Installed bluefish but
        >>to my surprise its just an editor. I guess it cannot
        >>even compile my code in python or maybe I am wrong.[/color]
        >
        >
        > Why an IDE? Python is - IMO - (one of) THE languages, where
        > a good editor (tabs2spaces, comment blocks, select encoding,
        > syntax highlighting, auto-indentation, scriptable ...) is all
        > you really need.
        >
        > (Bluefish ain't the editor of your choice here; write your own
        > from scrap or write one using Scintilla; resp. use SciTE with
        > a good customization file; or go for (X)Emacs resp. Vim.)
        >
        > HTH, Nuff.
        >[/color]
        Try eric3 at http://www.die-offenbachs.de/detlev/eric3.html

        --

        Venkatesh Prasad Ranganath,
        Dept. Computing and Information Science,
        Kansas State University, US.
        web: http://www.cis.ksu.edu/~rvprasad

        Comment

        • Nuff Said

          #5
          Re: IDE for Python

          On Sat, 01 May 2004 01:10:51 +0000, Venkatesh Prasad Ranganath wrote:
          [color=blue]
          > Nuff Said wrote:[color=green]
          >> Why an IDE? Python is - IMO - (one of) THE languages, where
          >> a good editor (tabs2spaces, comment blocks, select encoding,
          >> syntax highlighting, auto-indentation, scriptable ...) is all
          >> you really need.
          >>
          >> (Bluefish ain't the editor of your choice here; write your own
          >> from scrap or write one using Scintilla; resp. use SciTE with
          >> a good customization file; or go for (X)Emacs resp. Vim.)[/color][/color]
          [color=blue]
          > Try eric3 at http://www.die-offenbachs.de/detlev/eric3.html[/color]

          Why? If you are into Qt, it might be a good choice (but if you
          are not, eric3 is a little bit *too* Qt-centric, IMHO). There
          are a lot of solutions for special Python/GUI combinations, but
          none of them seems to be the *editor of your choice* if you are
          not yet restricted to one GUI solution.

          Nuff.

          Comment

          • Bruno Desthuilliers

            #6
            Re: IDE for Python

            dont bother wrote:[color=blue]
            > Hi Guys:
            > Is there any good IDE for Python. I checked on
            > www.python.org and found some. Installed bluefish but
            > to my surprise its just an editor. I guess it cannot
            > even compile my code in python or maybe I am wrong.
            > Any ideas/recommendations for a free IDE for Python
            > Thanks
            > Dont
            >[/color]

            emacs + python-mode + (ECB / speedbar/ whatever you like) is a perfect
            solution - <troll>as usual, should I say</troll>

            Bruno

            Comment

            • Washu

              #7
              Re: IDE for Python

              Nuff Said wrote:
              [color=blue]
              > Why an IDE? Python is - IMO - (one of) THE languages, where
              > a good editor (tabs2spaces, comment blocks, select encoding,
              > syntax highlighting, auto-indentation, scriptable ...) is all
              > you really need.[/color]

              I personally like the debugging capabilities of a good IDE, specifically the
              ability to watch a variable as you step through it. I know you can perform
              the same thing through debugging statements but it's not as slick.

              The IDE of my choice for debugging purpose is Komodo from Activestate. For
              writing the scripts, I tend to like Glimmer, although most modern editors
              have some type of scripting language hightlighting scheme.

              Comment

              • bobb

                #8
                Re: IDE for Python


                "Washu" <me@privacy.net > wrote in message
                news:ZHKkc.9073 7$vn.256362@sea-read.news.verio .net...[color=blue]
                > Nuff Said wrote:
                >[color=green]
                > > Why an IDE? Python is - IMO - (one of) THE languages, where
                > > a good editor (tabs2spaces, comment blocks, select encoding,
                > > syntax highlighting, auto-indentation, scriptable ...) is all
                > > you really need.[/color]
                >
                > I personally like the debugging capabilities of a good IDE, specifically[/color]
                the[color=blue]
                > ability to watch a variable as you step through it. I know you can[/color]
                perform[color=blue]
                > the same thing through debugging statements but it's not as slick.
                >[/color]
                IMO i like the auto-complete functions of an ide.
                [color=blue]
                > The IDE of my choice for debugging purpose is Komodo from Activestate.[/color]
                For[color=blue]
                > writing the scripts, I tend to like Glimmer, although most modern editors
                > have some type of scripting language hightlighting scheme.
                >[/color]


                Comment

                Working...