Python Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsProgramming LanguagesPython Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
Get inside! Sample the range of functionality easily built with JMSL Library for Time Series Data Analysis, Heat Maps, Portfolio Optimization, Monte Carlo Simulation, Stock Price Charting and more. Download Now!
  #1  
Old July 1st, 2003, 03:26 PM
ilves ilves is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2003
Location: Norway
Posts: 41 ilves User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 h 52 m 22 sec
Reputation Power: 6
Python editors for windows

Hi, I wonder if there are any good python editors out there for windows(preferably free)?


So far I have tried IDLE, which I found to be a little buggy and even deleted some files I was working on.
I have also tried an editor called Context. Came with a magazine cd I think. Really small and cpu friendly, but not stable.
Lately I have been working with Xemacs, which is a nice editor except that it doesn't use the standard windows key commands, e.g. Ctrl-C is not copy, Ctrl-V is not paste. And it freezes everytime I accidentally hit the print button. (Conveniently placed between save and cut)
Have also tried Komodo, which is really nice, except that it is not free. Only $30 or so for the personal edition, so I can afford it.
I know there are some Python plugins for eclipse, but I won't use anything with version number 0.0.1.

How about vim?
PythonWin?
(can I download it without activepython)?
?

Reply With Quote
  #2  
Old July 1st, 2003, 04:20 PM
netytan's Avatar
netytan netytan is offline
Hello World :)
Dev Shed Frequenter (2500 - 2999 posts)
 
Join Date: Mar 2003
Location: Hull, UK
Posts: 2,529 netytan User rank is Second Lieutenant (5000 - 10000 Reputation Level)netytan User rank is Second Lieutenant (5000 - 10000 Reputation Level)netytan User rank is Second Lieutenant (5000 - 10000 Reputation Level)netytan User rank is Second Lieutenant (5000 - 10000 Reputation Level)netytan User rank is Second Lieutenant (5000 - 10000 Reputation Level)netytan User rank is Second Lieutenant (5000 - 10000 Reputation Level)netytan User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 1 Week 2 Days 17 h 19 m 5 sec
Reputation Power: 63
Send a message via ICQ to netytan Send a message via AIM to netytan Send a message via MSN to netytan Send a message via Yahoo to netytan
CodeGenie

Hey,

At the moment I'm using CodeGenie, it really is an excelent piece of software, Fast and Stable, feature rich! You have to download the syntax file but it's easy as punch to install, you can customise colors, write your own syntax files and etc. Anyway there's my recomendation. It's not free, but that's easily fixed.

PythonWin is a good one yes, bit buggy, but i'd still definatly recomend it over Idle. Idlefork is now being packaged with Python 2.3, apparently there are some nice improvents but I havn't really used it yet so..

Pythonwares IDE is surposed be great! Its one of two commercial editors I've seen, both of which were of high standard. If you go to the Python website there's a Editor Wiki, some nice editors listed there.

useful links:

http://www.code-genie.com/cgenie.html
http://www.pythonware.com/
http://www.python.org/cgi-bin/moinmoin/PythonEditors

Hope this helps,

Have fun,
Mark.

Reply With Quote
  #3  
Old July 1st, 2003, 09:50 PM
krumms krumms is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2003
Location: Brisbane, Australia
Posts: 12 krumms User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Jedit

JEdit. Really good. For everything. Except really big files. Open source. Java. Get it.

http://www.jedit.org

Reply With Quote
  #4  
Old July 2nd, 2003, 03:04 AM
netytan's Avatar
netytan netytan is offline
Hello World :)
Dev Shed Frequenter (2500 - 2999 posts)
 
Join Date: Mar 2003
Location: Hull, UK
Posts: 2,529 netytan User rank is Second Lieutenant (5000 - 10000 Reputation Level)netytan User rank is Second Lieutenant (5000 - 10000 Reputation Level)netytan User rank is Second Lieutenant (5000 - 10000 Reputation Level)netytan User rank is Second Lieutenant (5000 - 10000 Reputation Level)netytan User rank is Second Lieutenant (5000 - 10000 Reputation Level)netytan User rank is Second Lieutenant (5000 - 10000 Reputation Level)netytan User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 1 Week 2 Days 17 h 19 m 5 sec
Reputation Power: 63
Send a message via ICQ to netytan Send a message via AIM to netytan Send a message via MSN to netytan Send a message via Yahoo to netytan
Java

JEdit. Memory, all i can say, this obviously ows to being Java based but , dont open too many windows and or files! Dont mess around with the look and feel! Buggy Updates! But it's support for Jython is cool! and Syntax's, still cool.

Mark.

Reply With Quote
  #5  
Old July 2nd, 2003, 05:13 AM
ilves ilves is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2003
Location: Norway
Posts: 41 ilves User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 h 52 m 22 sec
Reputation Power: 6
Thanks for the tips.

A quick note for anyone trying to install Codegenie :
I had to edit the config file to activate python support (just copying the language file to the syn\ directory is not enough).
Added the line
DefaultSyntax python py
below the other DefaultSyntax lines

And Jedit :
The python plugin is not available for the latest version of Jedit (4.1). So I installed version 4.0 with pyUtils 0.1.1 and JythonInterpreter 0.9 (not 0.9.1).
Looks like it's working now.

Plugins are available from http://prdownloads.sourceforge.net/jedit-plugins
(JythonInterpreter-0.9.zip and PyUtils-0.1.1.zip)
Jedit 4.0 is available from
http://prdownloads.sourceforge.net/jedit
Grab the file jedit40install.jar

Reply With Quote
  #6  
Old July 2nd, 2003, 11:14 AM
voor voor is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2003
Location: Sweden
Posts: 3 voor User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via ICQ to voor
I would try GVIM, it uses Windows key bindings (its default setup for windows when using the install EXE), and it has syntax highlighting for basicly any language or config. file type.

Reply With Quote
  #7  
Old July 9th, 2003, 01:12 PM
damonbrinkley damonbrinkley is offline
Modz
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2002
Location: NC, USA
Posts: 364 damonbrinkley User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 14 m 18 sec
Reputation Power: 6
Send a message via AIM to damonbrinkley
Quote:
Originally posted by voor
I would try GVIM, it uses Windows key bindings (its default setup for windows when using the install EXE), and it has syntax highlighting for basicly any language or config. file type.


Agreed, I use it for Python, C, and Java.

Reply With Quote
  #8  
Old July 10th, 2003, 06:15 PM
inkedmn inkedmn is offline
Tattooed Python-Lovin' Freak-Boy
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2001
Location: orange county, CA
Posts: 16 inkedmn User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via ICQ to inkedmn Send a message via AIM to inkedmn
as would i

damon! a moderator?! insanity!

what's up man

Reply With Quote
  #9  
Old July 10th, 2003, 07:53 PM
damonbrinkley damonbrinkley is offline
Modz
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2002
Location: NC, USA
Posts: 364 damonbrinkley User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 14 m 18 sec
Reputation Power: 6
Send a message via AIM to damonbrinkley
Quote:
Originally posted by inkedmn
as would i

damon! a moderator?! insanity!

what's up man


Ha, what's up dude? Where you been hiding?

Reply With Quote
  #10  
Old July 11th, 2003, 12:07 PM
inkedmn inkedmn is offline
Tattooed Python-Lovin' Freak-Boy
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2001
Location: orange county, CA
Posts: 16 inkedmn User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via ICQ to inkedmn Send a message via AIM to inkedmn
i'm at www.sourcereview.net , www.linuxquestions.org mostly, (and, of course, the rest of the usual suspects: /. , LWN, etc.)

how's the python coming along? are you in love yet?

Reply With Quote
  #11  
Old July 11th, 2003, 12:45 PM
damonbrinkley damonbrinkley is offline
Modz
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2002
Location: NC, USA
Posts: 364 damonbrinkley User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 14 m 18 sec
Reputation Power: 6
Send a message via AIM to damonbrinkley
Quote:
Originally posted by inkedmn
i'm at www.sourcereview.net , www.linuxquestions.org mostly, (and, of course, the rest of the usual suspects: /. , LWN, etc.)

how's the python coming along? are you in love yet?


It's coming alright. Had to take a detour this summer from it because of my C class. Taking Java next semester so I'm having to find time for Python when I can.

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesPython Programming > Python editors for windows


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support |