Programming in Python

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Paulo Jorge de Oliveira Cantante de Matos

    Programming in Python

    Hi all,

    I'd like to know what you people from Linux world use to program in
    Python. I'm new to Python and I don't know if [X]Emacs is the One Editor
    for Python (also!) or if there is a nice IDE to program in Python.

    Best regards,
    --

    Paulo J. Matos : pocm@mega.ist.u tl.pt
    Instituto Superior Tecnico - Lisbon
    Computer and Software Eng. - A.I.
    - > http://mega.ist.utl.pt/~pocm
    ---
    -> God had a deadline...
    So, he wrote it all in Lisp!


  • Mikhail Esteves

    #2
    Re: Programming in Python

    Paulo Jorge de Oliveira Cantante de Matos, on Thu, 30 Oct 2003 22:16:34
    +0000, had to say:
    [color=blue]
    > Hi all,
    >
    > I'd like to know what you people from Linux world use to program in
    > Python. I'm new to Python and I don't know if [X]Emacs is the One Editor
    > for Python (also!) or if there is a nice IDE to program in Python.[/color]


    There are lots. I personally use gvim [1]. A small Google search revealed
    this site which may help you further:



    Cheers,
    Mikhail

    [1] http://www.vim.org/

    Comment

    • Emile van Sebille

      #3
      Re: Programming in Python

      Mikhail Esteves[color=blue]
      > There are lots. I personally use gvim [1]. A small Google search revealed
      > this site which may help you further:
      >
      > http://sunsite.bilkent.edu.tr/pub/la...ython/editors/[/color]

      This looks like an updated version:



      Emile van Sebille
      emile@fenx.com


      Comment

      • Todd Stephens

        #4
        Re: Programming in Python

        On Thu, 30 Oct 2003 17:16:34 -0500, Paulo Jorge de Oliveira Cantante de
        Matos wrote:
        [color=blue]
        > Hi all,
        >
        > I'd like to know what you people from Linux world use to program in
        > Python. I'm new to Python and I don't know if [X]Emacs is the One Editor
        > for Python (also!) or if there is a nice IDE to program in Python.
        >
        > Best regards,[/color]

        Others have posted links to good editor lists. From those lists, my
        personal favorite is Jed, if I am using the console. If I am in a GUI
        environment, I like to use Kate (part of KDE).

        --
        Todd Stephens

        Comment

        • Dennis Lee Bieber

          #5
          Re: Programming in Python

          Mikhail Esteves fed this fish to the penguins on Thursday 30 October
          2003 15:33 pm:

          (for some reason the original post is not on my system -- suspect it
          failed some filter)
          [color=blue]
          >
          >
          > Paulo Jorge de Oliveira Cantante de Matos, on Thu, 30 Oct 2003
          > 22:16:34 +0000, had to say:
          >[color=green]
          >> Hi all,
          >>
          >> I'd like to know what you people from Linux world use to program in
          >> Python. I'm new to Python and I don't know if [X]Emacs is the One
          >> Editor for Python (also!) or if there is a nice IDE to program in
          >> Python.[/color]
          >
          >
          > There are lots. I personally use gvim [1]. A small Google search
          > revealed this site which may help you further:[/color]

          For Quick&Dirty, I tend to just invoke Idle.

          For more complex stuff, gvim invoked from a console lets me use the
          console for running while the editor has its own window. The advantage
          of the console/gvim pair is that I can fiddle with data/scratch files
          directly.

          --[color=blue]
          > =============== =============== =============== =============== == <
          > wlfraed@ix.netc om.com | Wulfraed Dennis Lee Bieber KD6MOG <
          > wulfraed@dm.net | Bestiaria Support Staff <
          > =============== =============== =============== =============== == <
          > Bestiaria Home Page: http://www.beastie.dm.net/ <
          > Home Page: http://www.dm.net/~wulfraed/ <[/color]

          Comment

          • Alexander Schmolck

            #6
            Re: Programming in Python

            Paulo Jorge de Oliveira Cantante de Matos <pocm@netvisao. pt> writes:
            [color=blue]
            > Hi all,
            >
            > I'd like to know what you people from Linux world use to program in
            > Python. I'm new to Python and I don't know if [X]Emacs is the One Editor
            > for Python (also!) or if there is a nice IDE to program in Python.[/color]

            I'd recommend ipython + emacs. Apart from the fact that emacs is simply the
            most powerful general purpose editor, the python support is also pretty good
            (apart from editing support (such as block shifting commands) there is a good
            integration with an interactive ipython session, so not only do you get
            ipython's readable tracebacks but you can also easily jump to the actual
            files/line where the problem occured etc.). Also try @pdb on.

            'as

            Comment

            Working...