NetBeans IDE for Python

2,028 views
Skip to first unread message

Delta20

unread,
Nov 19, 2008, 1:22:42 PM11/19/08
to Django users
NetBeans for Python has been released and based on the NB Python
roadmap, it looks interesting for those of us working with Django. I
haven't had much of a chance to play with it yet since it just came
out today, but here's the info for anyone interested:

NetBeans IDE for Python: http://download.netbeans.org/netbeans/6.5/python/ea/
NB Python Roadmap: http://wiki.netbeans.org/Python

lig

unread,
Nov 20, 2008, 7:01:01 AM11/20/08
to Django users
from django.db import models

class Page(models.Model):
name = models. # hitting Ctrl+Space here don't show field type
suggestions or anything from imported models package

ohmi

unread,
Nov 20, 2008, 2:04:09 PM11/20/08
to Django users
Same results here although other sorts of autocomplete to seem to be
somewhat functional.
No django-specific documentation yet, like how to set up the debugging
environment.
It looks like this stuff is being done according to their roadmap.

Could be a great platform, esp. considering the price.

O

Robin

unread,
Nov 27, 2008, 9:21:00 AM11/27/08
to Django users
hello,

I have also installed it and have seen there is this branch:
http://wiki.netbeans.org/Python#section-Python-DjangoBranch

anybody has installed this version of the branch ?

r

AndyB

unread,
Nov 27, 2008, 9:30:30 AM11/27/08
to Django users
More to the point - has anyone figured out how to! I couldn't even
find a dowload or repository link for the Django branch.

Ovnicraft

unread,
Nov 27, 2008, 10:14:21 AM11/27/08
to django...@googlegroups.com


2008/11/27 AndyB <and...@gmail.com>


More to the point - has anyone figured out how to! I couldn't even
find a dowload or repository link for the Django branch.

On Nov 27, 2:21 pm, Robin <rober...@gmail.com> wrote:
> hello,
>
> I have also installed it and have seen there is this branch:http://wiki.netbeans.org/Python#section-Python-DjangoBranch
>
> anybody has installed this version of the branch ?
 

>
> r
>
> On Nov 20, 8:04 pm, ohmi <BryanBing...@gmail.com> wrote:
>
> > Same results here although other sorts of autocomplete to seem to be
> > somewhat functional.
> > No django-specific documentation yet, like how to set up the debugging
> > environment.
> > It looks like this stuff is being done according to their roadmap.
>
> > Could be a great platform, esp. considering the price.
>
> > O
>
> > On Nov 20, 5:01 am, lig <se...@matveenko.ru> wrote:
>
> > > On 19 нояб, 21:22, Delta20 <digital_illumin...@yahoo.com> wrote:
>
> > > > NetBeans for Python has been released and based on the NB Python
> > > > roadmap, it looks interesting for those of us working with Django. I
> > > > haven't had much of a chance to play with it yet since it just came
> > > > out today, but here's the info for anyone interested:
>
> > > > NetBeans IDE for Python:http://download.netbeans.org/netbeans/6.5/python/ea/
> > > > NB Python Roadmap:http://wiki.netbeans.org/Python
>
> > > from django.db import models
>
> > > class Page(models.Model):
> > >     name    = models. # hitting Ctrl+Space here don't show field type
> > > suggestions or anything from imported models package




--
[b]question = (to) ? be : !be; .[/b]

itsnotvalid

unread,
Nov 27, 2008, 6:59:04 PM11/27/08
to Django users
It says for requesting username as password to access. Did I miss
anything here?

On Nov 27, 11:14 pm, Ovnicraft <ovnicr...@gmail.com> wrote:
> 2008/11/27 AndyB <andy...@gmail.com>
>
>
>
> > More to the point - has anyone figured out how to! I couldn't even
> > find a dowload or repository link for the Django branch.
>
> > On Nov 27, 2:21 pm, Robin <rober...@gmail.com> wrote:
> > > hello,
>
> > > I have also installed it and have seen there is this branch:
> >http://wiki.netbeans.org/Python#section-Python-DjangoBranch
>
> > > anybody has installed this version of the branch ?
>
> svn checkouthttps://nbpython.dev.java.net/svn/nbpython/branches/django

Ovnicraft

unread,
Nov 28, 2008, 12:48:10 PM11/28/08
to django...@googlegroups.com


2008/11/27 itsnotvalid <itsno...@gmail.com>


It says for requesting username as password to access. Did I miss
anything here?

try guest:guest

urlwolf

unread,
Dec 31, 2008, 9:56:56 PM12/31/08
to Django users
Ok, I have checked out the code.
Now, where do I put it? And how do I use it?
I put it inside the netbeans folder, but nothing seems to have
changed. Should I see a 'django project' option anywhere?

Thanks

On Nov 28 2008, 6:48 pm, Ovnicraft <ovnicr...@gmail.com> wrote:
> 2008/11/27 itsnotvalid <itsnotva...@gmail.com>

urlwolf

unread,
Dec 31, 2008, 10:16:57 PM12/31/08
to Django users
actually, it looks like one has to build netbeans from source... not
being a java person, how dif ficult can this be?

I'm trying:
hg clone http://hg.netbeans.org/main/

But it's taking forever. I've gotta sleep; will check tomorrow :)

On Nov 28 2008, 6:48 pm, Ovnicraft <ovnicr...@gmail.com> wrote:
> 2008/11/27 itsnotvalid <itsnotva...@gmail.com>

AndyB

unread,
Jan 1, 2009, 9:22:12 AM1/1/09
to Django users
They don't want to make it too easy now do they!

I'd love to try it out but it will have to wait until there's an
idiot's installer :)

On Jan 1, 3:16 am, urlwolf <ques...@gmail.com> wrote:
> actually, it looks like one has to build netbeans from source... not
> being a java person, how dif ficult can this be?
>
> I'm trying:
> hg clonehttp://hg.netbeans.org/main/

Gautam

unread,
Jan 17, 2009, 3:29:01 AM1/17/09
to Django users
There is some problem with the parser recognizing package imports in
the from ... import ... syntax. What seems to work is if you import
packages directly as import ... as ....

So for the django models import as:

import django.db.models as models

And voila, completion in Netbeans works!

mrsixcount

unread,
Feb 3, 2009, 12:49:03 AM2/3/09
to Django users
Can't seem to get the auto complete to work when I import
django.db.models as models. Shows models when I start typing but
after the . nothing in the django model section comes up. Shows the
master list of python options. IntegerField isn't in there nor could
I find any of the other ones. Oh well hopefully it will be out soon
with more support for Django

phillc

unread,
Feb 4, 2009, 4:54:16 PM2/4/09
to Django users
mine wasnt working exactly as you all described it...

until i moved my django symlink to someplace else on my python path...
and it suddenly worked.... its really odd.

Amirouche aka Mouche

unread,
Feb 25, 2009, 11:38:55 PM2/25/09
to Django users


On Feb 4, 10:54 pm, phillc <spyyd...@gmail.com> wrote:
> mine wasnt working exactly as you all described it...
>
> until i moved my django symlink to someplace else on my python path...
> and it suddenly worked.... its really odd.

uhh what do you mean ?

Amirouche aka Mouche

unread,
Feb 25, 2009, 11:46:46 PM2/25/09
to Django users
It looks like they plan to give some love to django in the next
release

http://wiki.netbeans.org/Python70Roadmap

here is the pre-beta nb 7
http://bits.netbeans.org/download/6.7/m2/

their is a ruby column but no python ! Hell ! I wonder why ! Is ruby
that mainstream ?

can't try it myself now, hope it helps !


On Feb 26, 5:38 am, Amirouche aka Mouche

पुनित मदान

unread,
Feb 26, 2009, 2:31:19 AM2/26/09
to django...@googlegroups.com
u dont need to move django ... but need to configure python path in project properties ....

2009/2/26 Amirouche aka Mouche <amirouche...@gmail.com>



--
If you spin an oriental man, does he become disoriented?
(-: ¿ʇɥǝɹpɹǝʌ ɟdoʞ uǝp ɹıp ɥɔı ,qɐɥ 'ɐɐu

is der net süß » ε(●̮̮̃•̃)з
-----PM

bruce.hpshare

unread,
Feb 26, 2009, 3:11:36 AM2/26/09
to django-users
It's a good news for the django develpement ...
 
 
2009-02-26

bruce.hpshare

发件人: पुनित मदान
发送时间: 2009-02-26  15:31:41
收件人: django-users
抄送:
主题: Re: NetBeans IDE for Python

Victor Hooi

unread,
Apr 14, 2009, 9:51:34 PM4/14/09
to Django users
heya,

I'm still a bit confused as to how to setup Django to work with
Netbeans.

I'm using Netbeans 6.7 M3 from here:

http://bits.netbeans.org/download/6.7/m3/

I've created a new Django project using django-admin, e.g.:

django-admin.py startproject testproject

and then I'm creating a new "Python Project with Existing Sources",
and pointing it to the "testproject" directory".

In project properties, I've set Main Module to "manage.py", and
Application Arguments to "runserver --noreload" (thanks to
http://esauro.wordpress.com/2008/11/21/django-on-netbeans-65/), so
that takes care of running the server when I click Run.

However, how should I go about setting up autocompletion? It doesn't
seem to recognise Django, and using Ctrl-Space on say,
"django.db.models." just brings up a random list of Python options?
And when I start typing, I don't get a list of models, as people up
above seem to be getting on occasion.

What settings should I change in the project in order to import it
correctly, and get autocomplete and the like working?

Cheers,
Victor

On Feb 26, 6:11 pm, "bruce.hpshare" <bruce.hpsh...@gmail.com> wrote:
> It's a good news for the django develpement ...
>
> 2009-02-26
>
> bruce.hpshare
>
> 发件人: पुनित मदान
> 发送时间: 2009-02-26  15:31:41
> 收件人: django-users
> 抄送:
> 主题: Re: NetBeans IDE for Python
>
> u dont need to move django ... but need to configure python path in project properties ....
>
> 2009/2/26 Amirouche aka Mouche <amirouche.boube...@gmail.com>
>
> It looks like they plan to give some love to django in the next
> release
>
> http://wiki.netbeans.org/Python70Roadmap
>
> here is the pre-beta nb 7http://bits.netbeans.org/download/6.7/m2/
Message has been deleted
Message has been deleted

Frank Liu

unread,
Apr 14, 2009, 11:19:10 PM4/14/09
to Django users
Why don't people use komodo edit. It's free and import works(mostly).
It's got project browser, snippets, and commands, and works in mac/
linux/windows. There's even a django syntax highlighter plugin and an
sqlite db browser plugin. Oh, you can also write macros for it in
python or javascript (funny the whole thing is firefox based).

The only thing is it's somewhat slow to start compare to my previously
fav gvim. But i guess it's worth it.

Frank

On Apr 14, 6:51 pm, Victor Hooi <victorh...@gmail.com> wrote:
> heya,
>
> I'm still a bit confused as to how to setup Django to work with
> Netbeans.
>
> I'm using Netbeans 6.7 M3 from here:
>
> http://bits.netbeans.org/download/6.7/m3/
>
> I've created a new Django project using django-admin, e.g.:
>
> django-admin.py startproject testproject
>
> and then I'm creating a new "Python Project with Existing Sources",
> and pointing it to the "testproject" directory".
>
> In project properties, I've set Main Module to "manage.py", and
> Application Arguments to "runserver --noreload" (thanks tohttp://esauro.wordpress.com/2008/11/21/django-on-netbeans-65/), so

abki

unread,
May 29, 2009, 9:05:40 AM5/29/09
to Django users
I don't know where is your problem,

You should try to add the django installation folder to the project
source folder to get correct completion.

I hop this partial data may help you

On Apr 15, 3:51 am, Victor Hooi <victorh...@gmail.com> wrote:
> heya,
>
> I'm still a bit confused as to how to setup Django to work with
> Netbeans.
>
> I'm using Netbeans 6.7 M3 from here:
>
> http://bits.netbeans.org/download/6.7/m3/
>
> I've created a new Django project using django-admin, e.g.:
>
> django-admin.py startproject testproject
>
> and then I'm creating a new "Python Project with Existing Sources",
> and pointing it to the "testproject" directory".
>
> In project properties, I've set Main Module to "manage.py", and
> Application Arguments to "runserver --noreload" (thanks tohttp://esauro.wordpress.com/2008/11/21/django-on-netbeans-65/), so
Reply all
Reply to author
Forward
0 new messages