Python IDE for linux

2006-04-19 Thread Neil Isaac
I have been writing python my little python scripts in gedit and running them using the command line. At this point I'm thinking that I would like to start using a real IDE. I don't need anything special or fancy, but would like it to manage projects, etc... I do know about kdevelop and emacs/v

Re: Free Python IDE ?

2006-03-30 Thread Joel Hedlund
Ernesto wrote: > I'm looking for a tool that I can use to "step through" python software > (debugging environment). Is there a good FREE one (or one which is > excellent and moderately priced ) ? > Try searching this newsgroup for "python ide", "edito

Re: Free Python IDE ?

2006-03-30 Thread bruno at modulix
Ernesto wrote: > I'm looking for a tool that I can use to "step through" python software > (debugging environment). This is not an 'IDE', it's a debugger. > Is there a good FREE one http://www.python.org/doc/2.4.2/lib/module-pdb.html Strange enough, I almost never had a use for a debugger in

Re: Free Python IDE ?

2006-03-29 Thread Fabio Zadrozny
On 3/29/06, Jarek Zgoda <[EMAIL PROTECTED]> wrote: Ernesto napisał(a):> I'm looking for a tool that I can use to "step through" python software> (debugging environment).  Is there a good FREE one (or one which is> excellent and moderately priced ) ? Good free: PyDev for Eclipse.Good moderately pric

Re: Free Python IDE ?

2006-03-29 Thread Colin J. Williams
Ernesto wrote: > I'm looking for a tool that I can use to "step through" python software > (debugging environment). Is there a good FREE one (or one which is > excellent and moderately priced ) ? > Ernesto, If you are using Windows then you migt consider PyScripter. http://mmm-experts.com/ Coli

Re: Free Python IDE ?

2006-03-29 Thread Jarek Zgoda
Ernesto napisał(a): > I'm looking for a tool that I can use to "step through" python software > (debugging environment). Is there a good FREE one (or one which is > excellent and moderately priced ) ? Good free: PyDev for Eclipse. Good moderately priced: Komodo. But from my long experience with

Re: Free Python IDE ?

2006-03-29 Thread Caleb Hattingh
Hi Ernesto SPE, or Stani's python editor is actually a decent IDE that can lauch the winpdb debugger to step through code, with side windows for locals, and watches and so on. It's not exactly integrated debugging a la Delphi, but in general my need for debugging is much less with python; the fe

Re: Free Python IDE ?

2006-03-29 Thread Detlev Offenbach
Ernesto wrote: > I'm looking for a tool that I can use to "step through" python software > (debugging environment). Is there a good FREE one (or one which is > excellent and moderately priced ) ? Try eric3 (http://www.die-offenbachs.de/detlev/eric3.html). It is a P

Free Python IDE ?

2006-03-29 Thread Ernesto
I'm looking for a tool that I can use to "step through" python software (debugging environment). Is there a good FREE one (or one which is excellent and moderately priced ) ? -- http://mail.python.org/mailman/listinfo/python-list

Re: Python IDE: great headache....

2006-03-16 Thread Dag Fjeld Edvardsen
> Come to think of it, the only exception is probably that PyScripter (AFAIK) > does not provide conditional pause. Quoting myself :) But now it does! Conditional breakpoints were introduced in the new version released on the 14th of March: http://mmm-experts.com/ -Dag -- http://mail.python

Re: Python IDE: great headache....

2006-03-14 Thread Michael Amrhein
Sullivan WxPyQtKinter schrieb: > IDLE is no longer satisfactory for me. Other IDEs make me very > confused. Really do not know which one to use. > > I use WinXP sp2 for current development. > > So far as I know, Eclipse + PyDev + PyDev Extension is perfect for > source code editing. Since I am re

Re: Python IDE: great headache....

2006-03-13 Thread Dag Fjeld Edvardsen
> What features exactly does it not have? Come to think of it, the only exception is probably that PyScripter (AFAIK) does not provide conditional pause. But I really like it. PyScripter is written in Delphi, my other favorite language :) -Dag -- http://mail.python.org/mailman/listinfo/pytho

Re: Python IDE: great headache....

2006-03-13 Thread Caleb Hattingh
Hi Being a Delphi user at work, I know what you mean :) The best python IDE I have found is Stani's Python Editor (SPE), and I think Stani himself replied to your message as well. It integrates wxGlade, which is nice for form-building, although I don't really do much of that with

Re: Python IDE: great headache....

2006-03-13 Thread Joel Hedlund
> Sorry to offend, I was just extrapoloating from personal experience. No worries, man. No offense taken :-) > but I could not get going with Eclipse > ... > Even installing it the first time seemed to be a mystery. Yeah I felt the same too when I first installed it. I had in fact given up usin

Re: Python IDE: great headache....

2006-03-13 Thread Don Taylor
Joel Hedlund wrote: >> If you install Eclipse and try to use it without reading the >> Workbench User Guide then you are not going to get anywhere. > > > Woah, easy now! I never read any "Workbench User Guide" and I'm doing > just fine with PyDev. Fabio Zadrozny (PyDev developer) wrote an > exce

Re: Python IDE: great headache....

2006-03-13 Thread 3KWA
Vim + iPython does most of it doesn't it? That's where I am after I became a bit frustrated with Idle (which I still use on odd occasions). EuGeNe -- http://mail.python.org/mailman/listinfo/python-list

Re: Python IDE: great headache....

2006-03-13 Thread Joel Hedlund
>> Anyone knows if this platform is a good one? It's very good. It's comfortable, helpful and stable. Also looks good. > Eclipse + Pydev does most, if not all, of your list - I am not sure what > you mean by conditional pause - plus a whole lot more. Maybe he means conditional breakpoints? P

Re: Python IDE: great headache....

2006-03-12 Thread BWill
Dag Fjeld Edvardsen wrote: > I like PyScripter. It has some of, but not all, the > features you request. > http://mmm-experts.com/Products.aspx?ProductId=4 > > -Dag > > Hey, that looks neat, and its open source too. Why have I not heard of it? I can have Eclipse-style sub-window management wi

Re: Python IDE: great headache....

2006-03-12 Thread jussij
> I use WinXP sp2 for current development. You might want to take a look at the Zeus for Windows IDE: http://www.zeusedit.com Here is how Zeus stacks up to your check list: > I hope that an IDE should be featured with: > 1. Grammar Colored highlights. It does syntax coloring for Python. > 2

Re: Python IDE: great headache....

2006-03-12 Thread Fabio Zadrozny
Hi Sullivan,Just to let you know, pydev does all that you asked for (and if there's something you're missing you might want to add a feature request to it: http://sourceforge.net/tracker/?group_id=85796&atid=577332)Some notes:To change the indentation in 'blocks', just select the lines you want an

Re: Python IDE: great headache....

2006-03-12 Thread Dag Fjeld Edvardsen
I like PyScripter. It has some of, but not all, the features you request. http://mmm-experts.com/Products.aspx?ProductId=4 -Dag -- http://mail.python.org/mailman/listinfo/python-list

Re: Python IDE: great headache....

2006-03-11 Thread SPE - Stani's Python Editor
I've got used to SPE(editor)+WinPdb(debugger) not surprisingly of course ;-) Concerning the free-of-charge IDE's, things might change quite a bit. You might have read this: http://groups.google.nl/group/comp.lang.python.announce/browse_thread/thread/240c000583168029/2dec4ae34efe16e2#2dec4ae34efe1

Re: Python IDE: great headache....

2006-03-11 Thread gregarican
Sullivan wrote: > IDLE is no longer satisfactory for me. Other IDEs make me very > confused. Really do not know which one to use. > > I use WinXP sp2 for current development. Personally I have gotten used to coding using ActiveState's Komodo. It doesn't get in my way and offers the basic features

Re: Python IDE: great headache....

2006-03-11 Thread Don Taylor
Sullivan WxPyQtKinter wrote: > IDLE is no longer satisfactory for me. Other IDEs make me very > confused. Really do not know which one to use. > > I use WinXP sp2 for current development. > > So far as I know, Eclipse + PyDev + PyDev Extension is perfect for > source code editing. Since I am real

Re: Python IDE: great headache....

2006-03-11 Thread Michael Ekstrand
On Sun, 12 Mar 2006 01:03:36 +0100 Rene Pijlman <[EMAIL PROTECTED]> wrote: > >5. Debugging: Breakpoints, conditional pause. watch for > >variables.step into, over and out of a function. > > Yes. I'll second the recommendation of Wing's debugging. Best debugger I've seen, any language, period. Onl

Re: Python IDE: great headache....

2006-03-11 Thread Rene Pijlman
Sullivan WxPyQtKinter: >I hope that an IDE should be featured with: I use WingIDE 2.1.0 (beta1) and I'm pleased with it. >1. Grammar Colored highlights. Yes, Wing does that. >2. Manage project in a tree view or something alike, ie, a project file >navigator. Yes. >3. Code collapse and foldin

Python IDE: great headache....

2006-03-11 Thread Sullivan WxPyQtKinter
IDLE is no longer satisfactory for me. Other IDEs make me very confused. Really do not know which one to use. I use WinXP sp2 for current development. So far as I know, Eclipse + PyDev + PyDev Extension is perfect for source code editing. Since I am really not sure how to use the debugger module,

Re: ANN: SPE 0.8.2.a Python IDE: configure styles, interactive terminals & ubuntu

2006-01-28 Thread dimitri pater
Hi,From: http://www.serpia.org/spe switching to http://www.serpia.org/sorry"""please enable _javascript_ in your browser to visit serpia.orgif you think that sucks, please contact me about it if not, enable _javascript_ and click here"""If you would like to know how much people find, it sucks, thi

Re: ANN: SPE 0.8.2.a Python IDE: configure styles, interactive terminals & ubuntu

2006-01-26 Thread Claudio Grondi
rian (16.10 euro) > - Amit Antebi (10 euro) > - Steven Hepple (10 euro) > > The development of SPE is driven by donations. > > :**Installation**: > > - See http://pythonide.stani.be/manual/html/manual2.html > - For ubuntu: dpkg -i spe.deb (be sure to have pythonX.X-dev inst

ANN: SPE 0.8.2.a Python IDE: configure styles, interactive terminals & ubuntu

2006-01-26 Thread SPE - Stani's Python Editor
pe.deb (be sure to have pythonX.X-dev installed) :**Development**: - http://developer.berlios.de/mail/?group_id=4161 About SPE: SPE is a python IDE with auto-indentation, auto completion, call tips, syntax coloring, uml viewer, syntax highlighting, class explorer, source index, auto todo list, stick

Re: Python IDE (was: PythonWin troubleshooting)

2005-12-20 Thread Trent Mick
[chuck wrote] > What is Komodo written in? Komodo is based on the Mozilla framework, so in many ways it is similar to Firefox and Thunderbird. Komodo also includes PyXPCOM -- Python bindings to Mozilla's XPCOM (cross-platform component object model) system for componentizing parts of the framework

Re: Python IDE

2005-12-17 Thread SPE - Stani's Python Editor
SPE will be reviewed by the same person for the next PyCon against WingIDE, Komodo and Pydev. Maybe you say which features you want to give a better answer. I don't know about WingIDE but I do know about SPE ;-) Things which we want to have ready for the review: - integrated debugger (now WinPdb r

Re: Python IDE

2005-12-17 Thread Colin J. Williams
David wrote: > linuxfreak wrote: > >> Which is a better python IDE SPE or WingIDE in terms of features >> > > You might want to look at a review of Python IDEs at > http://spyced.blogspot.com/2005/09/review-of-6-python-ides.html > > david lees Thanks, this is

Re: Python IDE (was: PythonWin troubleshooting)

2005-12-17 Thread chuck
Yeah but is it 'fast'. What is Komodo written in? -- http://mail.python.org/mailman/listinfo/python-list

Re: Python IDE

2005-12-16 Thread Murtog (sent by Nabble.com)
WingIDE IMHO is better, but it is not free. If you are intended to pay for it: WingIDE, if not, SPE. cheers! =] Sent from the Python - python-list forum at Nabble.com: Re: Python IDE -- http://mail.python.org/mailman/listinfo/python-list

Re: Python IDE

2005-12-16 Thread David
linuxfreak wrote: > Which is a better python IDE SPE or WingIDE in terms of features > You might want to look at a review of Python IDEs at http://spyced.blogspot.com/2005/09/review-of-6-python-ides.html david lees -- http://mail.python.org/mailman/listinfo/python-list

Re: Python IDE (was: PythonWin troubleshooting)

2005-12-16 Thread Brendan
I use Komodo now, and love it. It has all the features you'd expect: code completion, object browsing, folding, docstring previews etc. Of course it's the only full-featured, native and stable Python IDE currently available for the mac (SPE is close), so my choice is limited. Brenda

Re: RoR like (was : SPE 0.8.1.b Python IDE...)

2005-12-16 Thread Aahz
In article <[EMAIL PROTECTED]>, Paul Boddie <[EMAIL PROTECTED]> wrote: > >I personally don't believe very strongly in this server-side >serialisation of various non-displayable formats for potentially large >amounts of client-side code to unpack, process, stuff into different >places, and so on. As

Re: Python IDE (was: PythonWin troubleshooting)

2005-12-16 Thread SPE - Stani's Python Editor
Thanks Tim, SPE is written in Python and uses wxPython for its user interface and is being actively developed. In case you want to know more: SPE is a python IDE with auto-indentation, auto completion, call tips, syntax coloring, UML viewer, syntax highlighting, class explorer, source index

Re: Python IDE (was: PythonWin troubleshooting)

2005-12-16 Thread Tim Arnold
"chuck" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Apparently not too many people use or are interested in PythonWin. I'm > giving up on it. It used to work pretty good. > > I'm lucky that I have found PyScripter (http://www.mmm-expert

Re: RoR like (was : SPE 0.8.1.b Python IDE...)

2005-12-16 Thread Adrian Holovaty
bruno at modulix wrote: > Adrian, what you describe here is *exactly* what I call "no Ajax > support": you have to handle the whole thing manually, the framework > doesn't provide anything by itself. Would you say the CGI module offers > support for templating, data persistance and Ajax as well ?-)

Re: Python IDE

2005-12-16 Thread Scott David Daniels
Martin Miller wrote: > ... If someone with actual experience using Komodo with Python is > listening, I'd be very interested in hearing what you think of it I got a copy of Komodo some time ago, and I love it. I wanted a fairly reliable "debugging" platform for a fairly large server I was buil

Re: Python IDE

2005-12-16 Thread Fuzzyman
SPE is very good - I'd use it, and if you need any features Stani is very quick to add them. All the best, Fuzzyman http://www.voidspace.org.uk/python/index.shtml -- http://mail.python.org/mailman/listinfo/python-list

Re: Python IDE

2005-12-16 Thread Mustafa Yalcin Acikyildiz
emacs, best ide of all-time ;) -- http://mail.python.org/mailman/listinfo/python-list

Re: RoR like (was : SPE 0.8.1.b Python IDE...)

2005-12-16 Thread Paul Boddie
bruno at modulix wrote: > Adrian, what you describe here is *exactly* what I call "no Ajax > support": you have to handle the whole thing manually, the framework >doesn't provide anything by itself. I'm not going to argue whether Django supports "Ajax" or not, but I will agree that for the desired

Re: RoR like (was : SPE 0.8.1.b Python IDE...)

2005-12-16 Thread Paul Boddie
bruno at modulix wrote: > Adrian, what you describe here is *exactly* what I call "no Ajax > support": you have to handle the whole thing manually, the framework >doesn't provide anything by itself. I'm not going to argue whether Django supports "Ajax" or not, but I will agree that for the desired

Re: RoR like (was : SPE 0.8.1.b Python IDE...)

2005-12-16 Thread Paul Boddie
bruno at modulix wrote: > Adrian, what you describe here is *exactly* what I call "no Ajax > support": you have to handle the whole thing manually, the framework >doesn't provide anything by itself. I'm not going to argue whether Django supports "Ajax" or not, but I will agree that for the desired

Re: RoR like (was : SPE 0.8.1.b Python IDE...)

2005-12-16 Thread bruno at modulix
Adrian Holovaty wrote: > bruno at modulix wrote: > >>RoR is not an IDE, it's a web framework. The closest things in Python >>are TurboGears (good Ajax/js support via Mochikit), Subway (never >>tested), and Django (no Ajax support AFAIK). > > > Note that "no Ajax support" is misleading. Of course

Python IDE

2005-12-16 Thread linuxfreak
Which is a better python IDE SPE or WingIDE in terms of features -- http://mail.python.org/mailman/listinfo/python-list

Re: Python IDE (was: PythonWin troubleshooting)

2005-12-15 Thread limodou
15 Dec 2005 18:03:27 -0800, Martin Miller <[EMAIL PROTECTED]>: > You might want to also to consider the Komodo IDE from ActiveState (the > same company that produces ActivePython and hosts the ASPN Cookbook). > This isn't an endorsement -- I have no experience with it -- but its > feature set look

Re: Python IDE (was: PythonWin troubleshooting)

2005-12-15 Thread Martin Miller
re interested in PythonWin. I'm > giving up on it. It used to work pretty good. > > I'm lucky that I have found PyScripter (http://www.mmm-experts.com/) a > python IDE for the windows platform which is much more stable and has > more features that PythonWin. If you are doi

Python IDE (was: PythonWin troubleshooting)

2005-12-15 Thread chuck
Apparently not too many people use or are interested in PythonWin. I'm giving up on it. It used to work pretty good. I'm lucky that I have found PyScripter (http://www.mmm-experts.com/) a python IDE for the windows platform which is much more stable and has more features that PythonWi

Re: RoR like (was : SPE 0.8.1.b Python IDE...)

2005-12-15 Thread Xavier Morel
Adrian Holovaty wrote: > bruno at modulix wrote: >> RoR is not an IDE, it's a web framework. The closest things in Python >> are TurboGears (good Ajax/js support via Mochikit), Subway (never >> tested), and Django (no Ajax support AFAIK). > > Note that "no Ajax support" is misleading. Of course yo

Re: RoR like (was : SPE 0.8.1.b Python IDE...)

2005-12-15 Thread Dave Benjamin
On Thu, 15 Dec 2005, Adrian Holovaty wrote: > bruno at modulix wrote: >> RoR is not an IDE, it's a web framework. The closest things in Python >> are TurboGears (good Ajax/js support via Mochikit), Subway (never >> tested), and Django (no Ajax support AFAIK). > > Note that "no Ajax support" is mi

Re: RoR like (was : SPE 0.8.1.b Python IDE...)

2005-12-15 Thread Adrian Holovaty
bruno at modulix wrote: > RoR is not an IDE, it's a web framework. The closest things in Python > are TurboGears (good Ajax/js support via Mochikit), Subway (never > tested), and Django (no Ajax support AFAIK). Note that "no Ajax support" is misleading. Of course you can use Ajax with Django, just

Re: RoR like (was : SPE 0.8.1.b Python IDE...)

2005-12-15 Thread bruno at modulix
Yechezkal Gutfreund wrote: > Are you familiar with any Python efforts that parrallel Ruby on Rails > (integrated Ajax compliant IDE?). "integrated" and "IDE" in the same sentence ? A bit redundant, isn't it ?-) RoR is not an IDE, it's a web framework. The closest things in Python are TurboGears (

Re: SPE 0.8.1.b Python IDE (complete rewrite for running files)

2005-12-15 Thread Yechezkal Gutfreund
debug support) > * Thurston Stone (bug report) > > Development: > * http://developer.berlios.de/mail/?group_id=4161 > > Donations (thanks!): > * Widhaya Trisarnwadhana > > About SPE: > SPE is a python IDE with auto-indentation, auto completion, call tips

ANN: SPE 0.8.1.b Python IDE (complete rewrite for running files)

2005-12-14 Thread SPE - Stani's Python Editor
Stone (bug report) Development: * http://developer.berlios.de/mail/?group_id=4161 Donations (thanks!): * Widhaya Trisarnwadhana About SPE: SPE is a python IDE with auto-indentation, auto completion, call tips, syntax coloring, uml viewer, syntax highlighting, class explorer, source index,

ANN: SPE 0.8.0.b Python IDE (new: Mac support, doc viewer and workspaces)

2005-12-01 Thread SPE - Stani's Python Editor
he advertisements on SPE's websites generate a moderate, but necesssary income. From now on if you donate, you can ask me by email an ad-free, nice pdf version of the manual. :**About SPE**: SPE is a python IDE with auto-indentation, auto completion, call tips, syntax coloring, uml viewer, s

Re: want some python ide

2005-11-14 Thread alex . greif
Hi, look for SciTE http://www.scintilla.org/SciTE.html it is small, fast and lightweight Alex Greif http://www.fotobuch-xxl.de/ D H wrote: > [EMAIL PROTECTED] wrote: > > i want some python ide use pygtk > > eric3 is good for me ,but i lik

Re: about python ide

2005-11-13 Thread D H
?? wrote: > i am use python2.4.2 on my gentoo linux system > i want to find some ide of python > but i am using gtk2.8,wxPython has some bug on it.i cant emerge it correctly. > i want some ide use pygtk or other lib of python gui except > wxpython(wxWidgets) Try Gazpacho or Glade for designing yo

Re: want some python ide

2005-11-13 Thread D H
[EMAIL PROTECTED] wrote: > i want some python ide use pygtk > eric3 is good for me ,but i like gtk,so i want some pygtk ide look like > eric3 > wing is a good python ide,but i can not download it > some other python ide(must use pygtk) > thx > You can just use a text e

Re: want some python ide

2005-11-13 Thread 赵光
wingide is good for me but i cant down load it i download from http://wingware.com/pub/wingide-personal/2.0.4/wingide-personal-2.0.4-1-i386-linux.tar.gz but it stop at 7% who can help me thx -- /** * Love in Gentoo-Linux C and Python * Look

want some python ide

2005-11-13 Thread [EMAIL PROTECTED]
i want some python ide use pygtk eric3 is good for me ,but i like gtk,so i want some pygtk ide look like eric3 wing is a good python ide,but i can not download it some other python ide(must use pygtk) thx -- http://mail.python.org/mailman/listinfo/python-list

Re: about python ide

2005-11-13 Thread Diez B. Roggisch
赵光 wrote: > i am use python2.4.2 on my gentoo linux system > i want to find some ide of python > but i am using gtk2.8,wxPython has some bug on it.i cant emerge it correctly. > i want some ide use pygtk or other lib of python gui except > wxpython(wxWidgets) Take astab at eric3. Uses Qt + PyQt

about python ide

2005-11-13 Thread 赵光
i am use python2.4.2 on my gentoo linux system i want to find some ide of python but i am using gtk2.8,wxPython has some bug on it.i cant emerge it correctly. i want some ide use pygtk or other lib of python gui except wxpython(wxWidgets) thx -- /***

SPE 0.7.5.e - Python IDE with improved uml, debugger & unicode support

2005-11-02 Thread SPE - Stani's Python Editor
is a python IDE with auto-indentation, auto completion, call tips, syntax coloring, uml viewer, syntax highlighting, class explorer, source index, auto todo list, sticky notes, integrated pycrust shell, python file browser, recent file browser, drag&drop, context help, ... Special is its blende

Re: Fund raising for SPE (Python IDE) on Mac Os X is great success!!

2005-10-20 Thread dimitri pater
Dear Stani, It is good to hear that the donation was a success. And you deserve it, your contribution to the Python community is an example fot others and I am convinced that every donation, be it large or small, is well spent! A lot of us use SPE, don't we? greetz, DimitriOn 20 Oct 2005 12:38:04

Fund raising for SPE (Python IDE) on Mac Os X is great success!!

2005-10-20 Thread SPE - Stani's Python Editor
Hi, I'd like to thank everyone who contributed, especially Richard Brown from Dartware and Rick Thomas. I'm highly impressed that the smallest user base of SPE collected the largest donation ever to SPE. Now it's my turn to impress the SPE Mac users. As such the light is green for SPE on the Mac.

Re: Python IDE

2005-07-21 Thread linuxfreak
ok will give it a shot. I had tried the 0.7.2 version with wxPython 2.6 and the moment i place the cursor in a class name and pressed the space or the enter key.booom there it went crashing without a trace. But i did like what little i saw of it (apart from the crashes, of course) and the UML d

Re: Python IDE

2005-07-20 Thread Stani
Try out the new version of SPE 0.7.4.a. You would make me happy if you can make it crash. (But not by running crashing programs or infinitive loops inside spe.) http://www.stani.be/python/spe Ciao, Stani -- http://mail.python.org/mailman/listinfo/python-list

ANN: SPE 0.7.4.a Python IDE

2005-07-20 Thread Stani
Quick release for wxPython2.6, use at your own risk Major bugfix release for wxPython 2.6+ and Mac Os X (This version doesn't work for sure with wxPython versions lower than 2.5.4.1) Bug reports which are related to wxPython 2.6- will be ignored. SPE has a new website: http://www.stani.be/python/

Re: Python IDE

2005-07-20 Thread Florian Diesch
linuxfreak <[EMAIL PROTECTED]> wrote: >Got going with python...and i must say its a pretty cool language. > Been using Xemacs to write me programs. But I want an IDE that would I'm using GNU emacs > give me auto-completion, Read the manual about tags and abbrevs Emacs Language Sensitive Edi

Re: Python IDE

2005-07-20 Thread projecktzero
You should probably stick with Xemacs. I use VIM, but I would be surprised if Xemacs doesn't have those features you want. Also, it's probably better to learn one editor well than a little bit of a bunch of different editors. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python IDE

2005-07-20 Thread Franz Steinhaeusler
On 19 Jul 2005 19:56:49 -0700, "Luis M. Gonzalez" <[EMAIL PROTECTED]> wrote: >Have you tried PyCrust? >http://sourceforge.net/projects/pycrust/ It is long time ago, that pycrust was delevoped as sourceforge project. It is part of the wxPython distribution and I have recently added some feature

Re: Python IDE

2005-07-20 Thread Franz Steinhaeusler
On 18 Jul 2005 22:32:43 -0700, "linuxfreak" <[EMAIL PROTECTED]> wrote: >Tried SPE and >Dr.Pyhton but the former crashes regulary and the latter is quite >unweildy and does not have a great many features Hello, what are you missing in DrPython? Did you took a look at the plugins? What do you mea

Re: Python IDE

2005-07-20 Thread Fuzzyman
Hmmm.. I've *never* hada problem with SPE crashing.. at least not under Windoze... Regards, Fuzzy http://www.voidspace.org.uk/python -- http://mail.python.org/mailman/listinfo/python-list

Re: Python IDE

2005-07-19 Thread Luis M. Gonzalez
linuxfreak wrote: > Hi guys, >Got going with python...and i must say its a pretty cool language. > Been using Xemacs to write me programs. But I want an IDE that would > give me auto-completion, online help and the like... Tried SPE and > Dr.Pyhton but the former crashes regulary and the latt

Re: Python IDE

2005-07-19 Thread Dave Cook
On 2005-07-19, linuxfreak <[EMAIL PROTECTED]> wrote: > you guys using and what do you think is the best IDE...or should i > stick with Xemacs/emacs??? http://pydev.sf.net You get the stability of Eclipse with that, but also the fat. I swear I had code completion working in this, but last time I

Re: Python IDE

2005-07-19 Thread gene tani
you have an embarassment of riches (i think that's the phrase) http://wiki.python.org/moin/IntegratedDevelopmentEnvironments also try Eric and Komodo (the other $30 IDE with free trial). -- http://mail.python.org/mailman/listinfo/python-list

Re: Python IDE

2005-07-19 Thread JZ
Dnia Tue, 19 Jul 2005 13:26:38 +0200, Mage napisał(a): > I had no luck with the code completion, It works. Just type sys. and wait a while. But you have to set up pydev first. Check PyDev->Builder->Use Builders and PyDev->CodeCompletion->... -- JZ -- http://mail.python.org/mailman/listinfo/pyt

Re: Python IDE

2005-07-19 Thread Chris Lambacher
I use Vim. It does code completion and jump to variable/function definition. Emacs does this too. You just need to read the documentation about on how to set this up to your liking. The only feature that Vim does not have that I would like is the function argument pop up, but I want that more fo

Re: Python IDE

2005-07-19 Thread Mage
linuxfreak wrote: >Hi guys, > Got going with python...and i must say its a pretty cool language. >Been using Xemacs to write me programs. But I want an IDE that would >give me auto-completion, online help and the like... Tried SPE and >Dr.Pyhton but the former crashes regulary and the latter is

Re: Python IDE

2005-07-19 Thread [EMAIL PROTECTED]
A lot of people swear by WingIDE and as an IDE I think it's the best one there is. (Personally I prefer jed or xjed but that's because I like to work that way) -- http://mail.python.org/mailman/listinfo/python-list

Re: Python IDE

2005-07-18 Thread ncf
Honestly, I'm just using Python's own IDLE to do it all. It works rather well for my tastes :) -- http://mail.python.org/mailman/listinfo/python-list

Python IDE

2005-07-18 Thread linuxfreak
Hi guys, Got going with python...and i must say its a pretty cool language. Been using Xemacs to write me programs. But I want an IDE that would give me auto-completion, online help and the like... Tried SPE and Dr.Pyhton but the former crashes regulary and the latter is quite unweildy and does

Re: New WYSIWYG Python IDE in the works

2005-06-19 Thread dcrespo
wxDesigner + XRCed = The best. I would like the Boa approach but with xrc exports. It would reaally be the best of the best! And don't get me wrong too, but "to be better than the competition you need to be better than the competition" - Christoph Rackwitz Daniel -- http://mail.python.org/m

Re: New WYSIWYG Python IDE in the works

2005-06-19 Thread Florian Diesch
McBooCzech <[EMAIL PROTECTED]> wrote: > sorry for bothering you with my comment. From my point of view, the > situation on the IDE (GUI??) development field for Python is really > strange. Just try to imagine the same situation around the Python. > Plenty of different approaches, versions, philosop

Re: New WYSIWYG Python IDE in the works

2005-06-17 Thread Colin J. Williams
Steve Holden wrote: > Cappy2112 wrote: > >> This is great, but it might be worth finding out what the other IDE's >> can do first, as well as their weaknesses. >> >> Eric3 seems to be the most popular & powerfull. Uop until recentluy, it >> onluy works on Linux, but has been compiled & runnin on W

Re: New WYSIWYG Python IDE in the works

2005-06-16 Thread McBooCzech
sorry for bothering you with my comment. From my point of view, the situation on the IDE (GUI??) development field for Python is really strange. Just try to imagine the same situation around the Python. Plenty of different approaches, versions, philosophies etc. Why people they really know the ways

Re: New WYSIWYG Python IDE in the works

2005-06-15 Thread Steve Holden
Cappy2112 wrote: > This is great, but it might be worth finding out what the other IDE's > can do first, as well as their weaknesses. > > Eric3 seems to be the most popular & powerfull. Uop until recentluy, it > onluy works on Linux, but has been compiled & runnin on Windows, to > some degree of s

Re: New WYSIWYG Python IDE in the works

2005-06-15 Thread Cappy2112
This is great, but it might be worth finding out what the other IDE's can do first, as well as their weaknesses. Eric3 seems to be the most popular & powerfull. Uop until recentluy, it onluy works on Linux, but has been compiled & runnin on Windows, to some degree of success. QTDesigner is pretty

Re: New WYSIWYG Python IDE in the works

2005-06-15 Thread Christoph Rackwitz
(Sorry for that other post of mine. I don't know what went wrong) Don't get me wrong - your project is pretty interesting and you can certainly get valuable experience from it - but to be better than the competition you need to be better than the competition. -- http://mail.python.org/mailman/li

Re: New WYSIWYG Python IDE in the works

2005-06-15 Thread Christoph Rackwitz
root wrote: > Hello all > > I am currently developing a new WYSIWYG RAD tool for python. > There are screenshots and a small video demo on the site. > Please visit at http://www.geocities.com/visualfltk > > Cheers > JMan -- http://mail.python.org/mailman/listinfo/python-list

New WYSIWYG Python IDE in the works

2005-06-14 Thread root
Hello all I am currently developing a new WYSIWYG RAD tool for python. There are screenshots and a small video demo on the site. Please visit at http://www.geocities.com/visualfltk Cheers JMan -- http://mail.python.org/mailman/listinfo/python-list

Re: Python IDE like NetBeans/Delphi IDE

2005-04-05 Thread Axel Straschil
Hello! > WingIDE (commercial, slower than PythonWin but has many features) You can use and reactivate a trial licence for WingIDE for a realy long term, give it a try, i bought a licence last week and realy love it! Lg, AXEL. -- "Aber naja, ich bin eher der Forentyp." Wolfibolfi's outing in ht

Re: Python IDE like NetBeans/Delphi IDE

2005-04-05 Thread JZ
Dnia Tue, 05 Apr 2005 14:07:14 +0200, [EMAIL PROTECTED] napisał(a): > Hi ! > > I search for an IDE that working in Windows, and knows these functions: > > A.) Automatic name searching/showing/extending on classes with > keypressing (like Netbeans, or Delphi Ctrl+Space). > B.) Debugging: breakpo

Re: Python IDE like NetBeans/Delphi IDE

2005-04-05 Thread Markus Wankus
More specifically, check out the pydev plugin for Eclipse. pydev.sourceforge.net M. Larry Bates wrote: Take a look at ActiveState: http://www.activestate.com/Products/ActivePythonFamily/?_x=1 or for something more general: http://www.eclipse.org/ Larry Bates [EMAIL PROTECTED] wrote: Hi ! I search f

Re: Python IDE like NetBeans/Delphi IDE

2005-04-05 Thread Franz Steinhaeusler
On Tue, 05 Apr 2005 14:07:14 +0200, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > >I search for an IDE that working in Windows, and knows these functions: > >A.) Automatic name searching/showing/extending on classes with >keypressing (like Netbeans, or Delphi Ctrl+Space). >B.) Debugging: break

Re: Python IDE like NetBeans/Delphi IDE

2005-04-05 Thread Larry Bates
Take a look at ActiveState: http://www.activestate.com/Products/ActivePythonFamily/?_x=1 or for something more general: http://www.eclipse.org/ Larry Bates [EMAIL PROTECTED] wrote: > Hi ! > > I search for an IDE that working in Windows, and knows these functions: > > A.) Automatic name sear

<    1   2   3   4   5   6   >