473,473 Members | 1,816 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Re: Freesoftware for auto/intelligent code completing in Python

The free Python editors/IDEs really do need work as far as code completion goes but I am hopeful.

IMO Stani's Python Editor comes closest by providing some code sense through a combination of history and doc strings for Python built-ins. Where it falls short is the ability to scan doc strings for your own code and non built-in modules in the Python path. Python already has the ground work in place to accomplish something similar to VS's XML commenting/intellisense system. With a Python interpretor you can type help(myModule) and get the doc string documentation. So I imagine implementing code sense for code being developed as well as non built-in modules would just be a matter of finding the appropriate module at the right time and piping the output of help([module]) to a popup window.

If your willing to help work on something like that I suggest contacting Stani directly http://pythonide.stani.be/ or creating a plugin for Geany http://geany.uvena.de/

Ivan Ven Osdel
Software Engineer
http://www.datasyncsuite.com/

----- Original Message -----
From: "Ali Servet Dönmez" <as*@pittle.org>
To: py*********@python.org
Sent: Wednesday, July 2, 2008 3:33:59 AM GMT -06:00 US/Canada Central
Subject: Re: Freesoftware for auto/intelligent code completing in Python

On Jul 1, 12:15Â*am, Fuzzyman <fuzzy...@gmail.comwrote:
On Jun 30, 10:46Â*pm, Ali Servet Dönmez <a...@pittle.orgwrote:
I don't want to be so mean here, but how hard it could be be writing a
freesoftware which would automatically/intelligently auto complete
Python code? (I mean something that really does the job, like
Microsoft's Visual Studio or Sun's NetBeans or something else, you
name it, but just don't give me PyDev please...)
This could be an extension, a plugin, an Emacs mode, a new editor or
even a brand new huge all-fancy IDE, I don't care, but what am I
missing here?
Could someone please point me out something that I'm really missing
which is already present in the wild, otherwise I'd like discuss with
whoever is willing to help me to get this thing done. I made my mind
and I could volunteer to make this happen as thesis project for my
incoming graduation in the next year.
Regards you all,
Ali Servet Dönmez

Vim, Emacs, Wing, Komodo, ... more?

Yeah, I guess you're missing something. :-)

Michael Foordhttp://www.ironpythoninaction.com/http://www.trypython.org/
I've checkout Wing IDE's license and it doesnt' seem to be a
freesoftware; am I wrong?

Jul 2 '08 #1
1 2503
On Jul 2, 7:55*pm, Ivan Ven Osdel <i...@datasyncorp.comwrote:
The free Python editors/IDEs really do need work as far as code completion goes but I am hopeful.

IMO Stani's Python Editor comes closest by providing some code sense through a combination of history and doc strings for Python built-ins. Where itfalls short is the ability to scan doc strings for your own code and non built-in modules in the Python path. Python already has the ground work in place to accomplish something similar to VS's XML commenting/intellisense system. With a Python interpretor you can type help(myModule) and get the docstring documentation. So I imagine implementing code sense for code being developed as well as non built-in modules would just be a matter of findingthe appropriate module at the right time and piping the output of help([module]) to a popup window.

If your willing to help work on something like that I suggest contacting Stani directlyhttp://pythonide.stani.be/or creating a plugin for Geanyhttp://geany.uvena.de/

Ivan Ven Osdel
Software Engineerhttp://www.datasyncsuite.com/

----- Original Message -----
From: "Ali Servet Dönmez" <a...@pittle.org>
To: python-l...@python.org
Sent: Wednesday, July 2, 2008 3:33:59 AM GMT -06:00 US/Canada Central
Subject: Re: Freesoftware for auto/intelligent code completing in Python

On Jul 1, 12:15*am, Fuzzyman <fuzzy...@gmail.comwrote:
On Jun 30, 10:46*pm, Ali Servet Dönmez <a...@pittle.orgwrote:
I don't want to be so mean here, but how hard it could be be writing a
freesoftware which would automatically/intelligently auto complete
Python code? (I mean something that really does the job, like
Microsoft's Visual Studio or Sun's NetBeans or something else, you
name it, but just don't give me PyDev please...)
This could be an extension, a plugin, an Emacs mode, a new editor or
even a brand new huge all-fancy IDE, I don't care, but what am I
missing here?
Could someone please point me out something that I'm really missing
which is already present in the wild, otherwise I'd like discuss with
whoever is willing to help me to get this thing done. I made my mind
and I could volunteer to make this happen as thesis project for my
incoming graduation in the next year.
Regards you all,
Ali Servet Dönmez
Vim, Emacs, Wing, Komodo, ... more?
Yeah, I guess you're missing something. :-)
Michael Foordhttp://www.ironpythoninaction.com/http://www.trypython.org/

I've checkout Wing IDE's license and it doesnt' seem to be a
freesoftware; am I wrong?

Ivan, thanks for your reply. I am curious how come you're suggesting
me those two, but not others. Is there a good/particular reason for
that?
Jul 2 '08 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Manlio Perillo | last post by:
Hi. This post follows "does python have useless destructors". I'm not an expert, so I hope what I will write is meaningfull and clear. Actually in Python there is no possibility to write code...
17
by: Liam.M | last post by:
Hey guys, Forgive me if my question my be alittle silly, but I would very much appreciate and assistance that could be given! My situation is as follows: I have created a Button, and set...
16
by: =?ISO-8859-1?Q?Ali_Servet_D=F6nmez?= | last post by:
I don't want to be so mean here, but how hard it could be be writing a freesoftware which would automatically/intelligently auto complete Python code? (I mean something that really does the job,...
1
by: Ivan Ven Osdel | last post by:
Not really, I have just worked with them more. ----- Original Message ----- From: "Ali Servet Dönmez" <asd@pittle.org> To: python-list@python.org Sent: Wednesday, July 2, 2008 1:15:04 PM GMT...
1
by: Gros Bedo | last post by:
Hello, Ali I totally support you, neither I couldn't find any really working code completion for python in a free software, and it's really a mess, at least on Linux. On Windows, there is...
270
by: Jordan | last post by:
Hi everyone, I'm a big Python fan who used to be involved semi regularly in comp.lang.python (lots of lurking, occasional posting) but kind of trailed off a bit. I just wrote a frustration...
7
by: Michele Simionato | last post by:
I have noticed that the python-mode for Emacs that comes with the latest Ubuntu is missing the class browser. Moreover if works differently from the python-mode I was used to (for instance CTRL-c-c...
18
by: Grant Edwards | last post by:
Could whoever is responsible for the gateway that is grabbing my postings off of Usenet and e-mailing them out please fix the headers in the mail messages so that I don't get the bounce messages?...
4
by: raghavv | last post by:
Hi, How do you implement auto completing with jcombobox. thank you.
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.