Re: what is the best IDE to use for Python / Django

2012-02-15 Thread Furbee
Is this posting a zombie? It doesn't seem to ever die no matter what we do
to kill it! :-)

Furbee

On Wed, Feb 15, 2012 at 10:09 AM,  wrote:

> **
> @Sanders, nice answer :D, SOL
> +adesst
> --
> *From: * Thorsten Sanders 
> *Sender: * django-users@googlegroups.com
> *Date: *Wed, 15 Feb 2012 17:32:29 +0100
> *To: *
> *ReplyTo: * django-users@googlegroups.com
> *Subject: *Re: what is the best IDE to use for Python / Django
>
> Why this kind of stuff never ends?;(
>
> The best IDE is simply the one you can work best with, YOURSELF!
>
> On 15.02.2012 16:13, Vikas Ruhil wrote:
>
> Vim is best IDE for Python/Django ! look here the link
> http://learnhackstuff.blogspot.in/2012/02/vim-as-universal-idepart-1.html
>
> On Wed, Feb 15, 2012 at 8:16 PM, Bastian Ballmann <
> bastian.ballm...@notch-interactive.com> wrote:
>
>> Hey thats a cool list and I feel like I must answer on it :)
>>
>>
>> Am 01.02.2012 17:43, schrieb Masklinn:
>>
>>> On 2012-02-01, at 17:00 , Bastian Ballmann wrote:
>>>
 And what exact feature makes PyCharm an IDE that emacs hasnt?

>>> * Semantics navigation (not via tags, it knows to find a class when you
>>> want a class)
>>>
>> I heard ECB can do this, but I dont use it
>>
>>
>>  * Better static analysis and language knowledge (the type inference is
>>> still pretty limited, but if you instantiate an object and call a method on
>>> it it knows and only proposes the available methods)
>>>   - virtualenv-aware, knows to restrict its libraries search to the
>>> project's virtualenv
>>>
>> You can do this with setenv or virtualenv.el too
>>
>>
>>- errors and warnings are faster to display than via flymake in my
>>> experience
>>>
>> For me flymake is faster *g*
>>
>>- also intentions and quickfixes, PyCharm can improve or simplify code
>>> for known bad or sub-par patterns, and can fix a limited number of errors
>>> (PyCharm will suggest importing a module you reference without you having
>>> to go to the module top and doing so manually)
>>>
>>
>> Autoimport can be done with rope-auto-import
>>
>>
>>- finds all references to an object
>>>
>>
>> And this one with rope-find-occurrences
>>
>>
>>  * Much, much better (faster, more expansive and with less bullet holes)
>>> refactoring support than Rope&  ropemacs (I use both)
>>> * Good support of various template languages (Django, Jinja2 and Mako as
>>> of 2.0) with autocompletion, basic static analysis, syntax highlighting,
>>> etc…
>>>
>> Yeah that's something I miss, but auto-completion for Django template
>> code is available in django-mode
>>
>>
>>  * Semantic knowledge of Django projects
>>>   - jumping between a view and its template
>>>
>>
>> This can also be done with django-mode
>>
>>
>>  * Much better debugging story
>>>   - Pretty good visual debugger with watches and conditional breakpoints
>>>   - Remote debugger (via a specific agent)
>>>
>>
>> Therefore I use pddb outside of Emacs
>>
>>- Django templates debugging
>>>
>> Yep that's also something I miss. Can partly be done with Werkzeug in the
>> browser
>>
>> For me Emacs has the far better editing features than the Eclipse editor
>> with stuff like rectangle edit,
>> macros and the like and it's very good extensible and therefore can
>> perfectly adapted to one's needs.
>> Greets
>>
>> Basti
>>
>> --
>> Bastian Ballmann / Web Developer
>> Notch Interactive GmbH / Badenerstrasse 571 / 8048 Zürich
>> Phone +41 43 818 20 91 / www.notch-interactive.com
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To post to this group, send email to django-users@googlegroups.com.
>> To unsubscribe from this group, send email to
>> django-users+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/django-users?hl=en.
>>
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> 

Re: what is the best IDE to use for Python / Django

2012-02-15 Thread adesantoasman
@Sanders, nice answer :D, SOL

+adesst

-Original Message-
From: Thorsten Sanders 
Sender: django-users@googlegroups.com
Date: Wed, 15 Feb 2012 17:32:29 
To: 
Reply-To: django-users@googlegroups.com
Subject: Re: what is the best IDE to use for Python / Django

Why this kind of stuff never ends?;(

The best IDE is simply the one you can work best with, YOURSELF!

On 15.02.2012 16:13, Vikas Ruhil wrote:
> Vim is best IDE for Python/Django ! look here the link 
> http://learnhackstuff.blogspot.in/2012/02/vim-as-universal-idepart-1.html
>
> On Wed, Feb 15, 2012 at 8:16 PM, Bastian Ballmann 
>  > wrote:
>
> Hey thats a cool list and I feel like I must answer on it :)
>
>
> Am 01.02.2012 17:43, schrieb Masklinn:
>
> On 2012-02-01, at 17:00 , Bastian Ballmann wrote:
>
> And what exact feature makes PyCharm an IDE that emacs hasnt?
>
> * Semantics navigation (not via tags, it knows to find a class
> when you want a class)
>
> I heard ECB can do this, but I dont use it
>
>
> * Better static analysis and language knowledge (the type
> inference is still pretty limited, but if you instantiate an
> object and call a method on it it knows and only proposes the
> available methods)
>   - virtualenv-aware, knows to restrict its libraries search
> to the project's virtualenv
>
> You can do this with setenv or virtualenv.el too
>
>
>   - errors and warnings are faster to display than via flymake
> in my experience
>
> For me flymake is faster *g*
>
>   - also intentions and quickfixes, PyCharm can improve or
> simplify code for known bad or sub-par patterns, and can fix a
> limited number of errors (PyCharm will suggest importing a
> module you reference without you having to go to the module
> top and doing so manually)
>
>
> Autoimport can be done with rope-auto-import
>
>
>   - finds all references to an object
>
>
> And this one with rope-find-occurrences
>
>
> * Much, much better (faster, more expansive and with less
> bullet holes) refactoring support than Rope&  ropemacs (I use
> both)
> * Good support of various template languages (Django, Jinja2
> and Mako as of 2.0) with autocompletion, basic static
> analysis, syntax highlighting, etc…
>
> Yeah that's something I miss, but auto-completion for Django
> template code is available in django-mode
>
>
> * Semantic knowledge of Django projects
>   - jumping between a view and its template
>
>
> This can also be done with django-mode
>
>
> * Much better debugging story
>   - Pretty good visual debugger with watches and conditional
> breakpoints
>   - Remote debugger (via a specific agent)
>
>
> Therefore I use pddb outside of Emacs
>
>   - Django templates debugging
>
> Yep that's also something I miss. Can partly be done with Werkzeug
> in the browser
>
> For me Emacs has the far better editing features than the Eclipse
> editor with stuff like rectangle edit,
> macros and the like and it's very good extensible and therefore
> can perfectly adapted to one's needs.
> Greets
>
> Basti
>
> -- 
> Bastian Ballmann / Web Developer
> Notch Interactive GmbH / Badenerstrasse 571 / 8048 Zürich
> Phone +41 43 818 20 91 / www.notch-interactive.com
> 
>
> -- 
> You received this message because you are subscribed to the Google
> Groups "Django users" group.
> To post to this group, send email to django-users@googlegroups.com
> .
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>
> -- 
> You received this message because you are subscribed to the Google 
> Groups "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to 
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To 

Re: what is the best IDE to use for Python / Django

2012-02-15 Thread Thorsten Sanders

Why this kind of stuff never ends?;(

The best IDE is simply the one you can work best with, YOURSELF!

On 15.02.2012 16:13, Vikas Ruhil wrote:
Vim is best IDE for Python/Django ! look here the link 
http://learnhackstuff.blogspot.in/2012/02/vim-as-universal-idepart-1.html


On Wed, Feb 15, 2012 at 8:16 PM, Bastian Ballmann 
> wrote:


Hey thats a cool list and I feel like I must answer on it :)


Am 01.02.2012 17:43, schrieb Masklinn:

On 2012-02-01, at 17:00 , Bastian Ballmann wrote:

And what exact feature makes PyCharm an IDE that emacs hasnt?

* Semantics navigation (not via tags, it knows to find a class
when you want a class)

I heard ECB can do this, but I dont use it


* Better static analysis and language knowledge (the type
inference is still pretty limited, but if you instantiate an
object and call a method on it it knows and only proposes the
available methods)
  - virtualenv-aware, knows to restrict its libraries search
to the project's virtualenv

You can do this with setenv or virtualenv.el too


  - errors and warnings are faster to display than via flymake
in my experience

For me flymake is faster *g*

  - also intentions and quickfixes, PyCharm can improve or
simplify code for known bad or sub-par patterns, and can fix a
limited number of errors (PyCharm will suggest importing a
module you reference without you having to go to the module
top and doing so manually)


Autoimport can be done with rope-auto-import


  - finds all references to an object


And this one with rope-find-occurrences


* Much, much better (faster, more expansive and with less
bullet holes) refactoring support than Rope&  ropemacs (I use
both)
* Good support of various template languages (Django, Jinja2
and Mako as of 2.0) with autocompletion, basic static
analysis, syntax highlighting, etc…

Yeah that's something I miss, but auto-completion for Django
template code is available in django-mode


* Semantic knowledge of Django projects
  - jumping between a view and its template


This can also be done with django-mode


* Much better debugging story
  - Pretty good visual debugger with watches and conditional
breakpoints
  - Remote debugger (via a specific agent)


Therefore I use pddb outside of Emacs

  - Django templates debugging

Yep that's also something I miss. Can partly be done with Werkzeug
in the browser

For me Emacs has the far better editing features than the Eclipse
editor with stuff like rectangle edit,
macros and the like and it's very good extensible and therefore
can perfectly adapted to one's needs.
Greets

Basti

-- 
Bastian Ballmann / Web Developer

Notch Interactive GmbH / Badenerstrasse 571 / 8048 Zürich
Phone +41 43 818 20 91 / www.notch-interactive.com


-- 
You received this message because you are subscribed to the Google

Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com
.
To unsubscribe from this group, send email to
django-users+unsubscr...@googlegroups.com
.
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.


--
You received this message because you are subscribed to the Google 
Groups "Django users" group.

To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.


--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: what is the best IDE to use for Python / Django

2012-02-15 Thread Bastian Ballmann

Hey thats a cool list and I feel like I must answer on it :)


Am 01.02.2012 17:43, schrieb Masklinn:

On 2012-02-01, at 17:00 , Bastian Ballmann wrote:

And what exact feature makes PyCharm an IDE that emacs hasnt?

* Semantics navigation (not via tags, it knows to find a class when you want a 
class)

I heard ECB can do this, but I dont use it



* Better static analysis and language knowledge (the type inference is still 
pretty limited, but if you instantiate an object and call a method on it it 
knows and only proposes the available methods)
   - virtualenv-aware, knows to restrict its libraries search to the project's 
virtualenv

You can do this with setenv or virtualenv.el too



   - errors and warnings are faster to display than via flymake in my experience

For me flymake is faster *g*


   - also intentions and quickfixes, PyCharm can improve or simplify code for 
known bad or sub-par patterns, and can fix a limited number of errors (PyCharm 
will suggest importing a module you reference without you having to go to the 
module top and doing so manually)


Autoimport can be done with rope-auto-import



   - finds all references to an object


And this one with rope-find-occurrences



* Much, much better (faster, more expansive and with less bullet holes) refactoring 
support than Rope&  ropemacs (I use both)
* Good support of various template languages (Django, Jinja2 and Mako as of 
2.0) with autocompletion, basic static analysis, syntax highlighting, etc…
Yeah that's something I miss, but auto-completion for Django template 
code is available in django-mode




* Semantic knowledge of Django projects
   - jumping between a view and its template


This can also be done with django-mode



* Much better debugging story
   - Pretty good visual debugger with watches and conditional breakpoints
   - Remote debugger (via a specific agent)


Therefore I use pddb outside of Emacs


   - Django templates debugging
Yep that's also something I miss. Can partly be done with Werkzeug in 
the browser


For me Emacs has the far better editing features than the Eclipse editor 
with stuff like rectangle edit,
macros and the like and it's very good extensible and therefore can 
perfectly adapted to one's needs.

Greets

Basti

--
Bastian Ballmann / Web Developer
Notch Interactive GmbH / Badenerstrasse 571 / 8048 Zürich
Phone +41 43 818 20 91 / www.notch-interactive.com

--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: what is the best IDE to use for Python / Django

2012-02-01 Thread Moises Alberto Lindo Gutarra
Aptana 3

2012/2/1 Bastian Ballmann :
> And what exact feature makes PyCharm an IDE that emacs hasnt?
> SCNR ;)
>
> Am 23.01.2012 13:41, schrieb Leandro Ostera Villalva:
>
> That's because PyCharm is an actual IDE while gedit, st2, emacs, vi and
> forth are text editors.
>
> El 23 de enero de 2012 04:35, Mario Gudelj 
> escribió:
>>
>> I've used gedit, sublime text 2, emacs, vi, but the best Django IDE by far
>> is PyCharm. I'm seriously amazed at how awesome it is. It's worth every
>> cent.
>>
>>
>> On 23 January 2012 22:20, Sandro Dutra  wrote:
>>>
>>> The best IDE is that you fell comfortable using it.
>>>
>>> 2012/1/21 goosfancito :
>>> > El 21/01/12 08:52, kenneth gonsalves escribió:
>>> >
>>> >> On Sat, 2012-01-21 at 03:34 -0800, John Yeukhon Wong wrote:
>>> >>>
>>> >>> While it has been asked a trillion times already, let me say TRY UT
>>> >>> YOURSELF.
>>> >>
>>> >> you were requested not to feed this thread. If the OP cannot search,
>>> >> here it is:
>>> >>
>>> >>
>>> >> http://duckduckgo.com/?q=site%3Agroups.google.com%2Fgroup%2Fdjango-users
>>> >> +python+IDE
>>> >
>>> > i used gedit only.
>>> >
>>> >
>>> > --
>>> > You received this message because you are subscribed to the Google
>>> > Groups
>>> > "Django users" group.
>>> > To post to this group, send email to django-users@googlegroups.com.
>>> > To unsubscribe from this group, send email to
>>> > django-users+unsubscr...@googlegroups.com.
>>> > For more options, visit this group at
>>> > http://groups.google.com/group/django-users?hl=en.
>>> >
>>>
>>> --
>>> You received this message because you are subscribed to the Google Groups
>>> "Django users" group.
>>> To post to this group, send email to django-users@googlegroups.com.
>>> To unsubscribe from this group, send email to
>>> django-users+unsubscr...@googlegroups.com.
>>> For more options, visit this group at
>>> http://groups.google.com/group/django-users?hl=en.
>>>
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To post to this group, send email to django-users@googlegroups.com.
>> To unsubscribe from this group, send email to
>> django-users+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/django-users?hl=en.
>
>
>
>
> --
> Regards,
>
> Leandro Ostera,
> BLOG - Check what I'm doing now
> EMAIL - Write me an email
> SHOWCASE - Check my latest projects
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>
>
> --
> Bastian Ballmann / Web Developer
> Notch Interactive GmbH / Badenerstrasse 571 / 8048 Zürich
> Phone +41 43 818 20 91 / www.notch-interactive.com
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.



-- 
Atte.
Moisés Alberto Lindo Gutarra
Asesor - Desarrollador Java / Open Source
Linux Registered User #431131 - http://counter.li.org/
Cel: (511) 995081720 - Rpm: *548913
EMail: mli...@gmail.com
MSN: mli...@tumisolutions.com

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: what is the best IDE to use for Python / Django

2012-02-01 Thread Masklinn
On 2012-02-01, at 17:00 , Bastian Ballmann wrote:
> And what exact feature makes PyCharm an IDE that emacs hasnt?

* Semantics navigation (not via tags, it knows to find a class when you want a 
class)
* Better static analysis and language knowledge (the type inference is still 
pretty limited, but if you instantiate an object and call a method on it it 
knows and only proposes the available methods)
  - virtualenv-aware, knows to restrict its libraries search to the project's 
virtualenv
  - errors and warnings are faster to display than via flymake in my experience
  - also intentions and quickfixes, PyCharm can improve or simplify code for 
known bad or sub-par patterns, and can fix a limited number of errors (PyCharm 
will suggest importing a module you reference without you having to go to the 
module top and doing so manually)
  - display of quick references (for params) and docstrings, inline
  - finds all references to an object
* Much, much better (faster, more expansive and with less bullet holes) 
refactoring support than Rope & ropemacs (I use both)
* Good support of various template languages (Django, Jinja2 and Mako as of 
2.0) with autocompletion, basic static analysis, syntax highlighting, etc…
* Semantic knowledge of Django projects
  - jumping between a view and its template
  - or between a translation block and the corresponding PO file
* Much better debugging story
  - Pretty good visual debugger with watches and conditional breakpoints
  - Remote debugger (via a specific agent)
  - Django templates debugging
* Also supports Cython and Javascript (and CoffeeScript) with a big subset of 
the Python support goodies

It's quite a bit heavier than Emacs (often though not necessarily slower 
depending on what you use, since Emacs will lock up when it needs to work hard 
e.g. when Rope runs), but it does a lot more.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: what is the best IDE to use for Python / Django

2012-02-01 Thread Bastian Ballmann

And what exact feature makes PyCharm an IDE that emacs hasnt?
SCNR ;)

Am 23.01.2012 13:41, schrieb Leandro Ostera Villalva:
That's because PyCharm is an actual IDE while gedit, st2, emacs, vi 
and forth are text editors.


El 23 de enero de 2012 04:35, Mario Gudelj > escribió:


I've used gedit, sublime text 2, emacs, vi, but the best Django
IDE by far is PyCharm. I'm seriously amazed at how awesome it is.
It's worth every cent.


On 23 January 2012 22:20, Sandro Dutra > wrote:

The best IDE is that you fell comfortable using it.

2012/1/21 goosfancito >:
> El 21/01/12 08:52, kenneth gonsalves escribió:
>
>> On Sat, 2012-01-21 at 03:34 -0800, John Yeukhon Wong wrote:
>>>
>>> While it has been asked a trillion times already, let me
say TRY UT
>>> YOURSELF.
>>
>> you were requested not to feed this thread. If the OP
cannot search,
>> here it is:
>>
>>
http://duckduckgo.com/?q=site%3Agroups.google.com%2Fgroup%2Fdjango-users
>> +python+IDE
>
> i used gedit only.
>
>
> --
> You received this message because you are subscribed to the
Google Groups
> "Django users" group.
> To post to this group, send email to
django-users@googlegroups.com
.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com
.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>

--
You received this message because you are subscribed to the
Google Groups "Django users" group.
To post to this group, send email to
django-users@googlegroups.com
.
To unsubscribe from this group, send email to
django-users+unsubscr...@googlegroups.com
.
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.


-- 
You received this message because you are subscribed to the Google

Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com
.
To unsubscribe from this group, send email to
django-users+unsubscr...@googlegroups.com
.
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.




--
Regards,

Leandro Ostera,
/BLOG - Check what I'm doing now 
EMAIL - Write me an email 
SHOWCASE - Check my latest projects /

--
You received this message because you are subscribed to the Google 
Groups "Django users" group.

To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



--
Bastian Ballmann / Web Developer
Notch Interactive GmbH / Badenerstrasse 571 / 8048 Zürich
Phone +41 43 818 20 91 / www.notch-interactive.com

--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: what is the best IDE to use for Python / Django

2012-01-28 Thread hari jayaram
I like using Pycharm . The 2.0.1 version has pretty good integration
with bitbucket , github and other VCS/DVCS


I also use emacs and have heard good things about  sublime2

Hari

On Mon, Jan 23, 2012 at 7:41 AM, Leandro Ostera Villalva
 wrote:
> That's because PyCharm is an actual IDE while gedit, st2, emacs, vi and
> forth are text editors.
>
> El 23 de enero de 2012 04:35, Mario Gudelj 
> escribió:
>
>> I've used gedit, sublime text 2, emacs, vi, but the best Django IDE by far
>> is PyCharm. I'm seriously amazed at how awesome it is. It's worth every
>> cent.
>>
>>
>> On 23 January 2012 22:20, Sandro Dutra  wrote:
>>>
>>> The best IDE is that you fell comfortable using it.
>>>
>>> 2012/1/21 goosfancito :
>>> > El 21/01/12 08:52, kenneth gonsalves escribió:
>>> >
>>> >> On Sat, 2012-01-21 at 03:34 -0800, John Yeukhon Wong wrote:
>>> >>>
>>> >>> While it has been asked a trillion times already, let me say TRY UT
>>> >>> YOURSELF.
>>> >>
>>> >> you were requested not to feed this thread. If the OP cannot search,
>>> >> here it is:
>>> >>
>>> >>
>>> >> http://duckduckgo.com/?q=site%3Agroups.google.com%2Fgroup%2Fdjango-users
>>> >> +python+IDE
>>> >
>>> > i used gedit only.
>>> >
>>> >
>>> > --
>>> > You received this message because you are subscribed to the Google
>>> > Groups
>>> > "Django users" group.
>>> > To post to this group, send email to django-users@googlegroups.com.
>>> > To unsubscribe from this group, send email to
>>> > django-users+unsubscr...@googlegroups.com.
>>> > For more options, visit this group at
>>> > http://groups.google.com/group/django-users?hl=en.
>>> >
>>>
>>> --
>>> You received this message because you are subscribed to the Google Groups
>>> "Django users" group.
>>> To post to this group, send email to django-users@googlegroups.com.
>>> To unsubscribe from this group, send email to
>>> django-users+unsubscr...@googlegroups.com.
>>> For more options, visit this group at
>>> http://groups.google.com/group/django-users?hl=en.
>>>
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To post to this group, send email to django-users@googlegroups.com.
>> To unsubscribe from this group, send email to
>> django-users+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/django-users?hl=en.
>
>
>
>
> --
> Regards,
>
> Leandro Ostera,
> BLOG - Check what I'm doing now
> EMAIL - Write me an email
> SHOWCASE - Check my latest projects
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: what is the best IDE to use for Python / Django

2012-01-27 Thread Leandro Ostera Villalva
I actually use a text editor (Sublime Text 2, simply stunning) and a lot of
shell. For projects I have my own git server and hudson-ci which I use
locally and can sync with the one we use at work easily, and with little
effort those can be integrated into the editor, too, which is wonderfully
made in Python under an extensible arch.

El 21 de enero de 2012 06:10, goosfancito  escribió:

> El 21/01/12 08:52, kenneth gonsalves escribió:
>
>  On Sat, 2012-01-21 at 03:34 -0800, John Yeukhon Wong wrote:
>>
>>> While it has been asked a trillion times already, let me say TRY UT
>>> YOURSELF.
>>>
>> you were requested not to feed this thread. If the OP cannot search,
>> here it is:
>>
>> http://duckduckgo.com/?q=site%**3Agroups.google.com%2Fgroup%**
>> 2Fdjango-users
>> +python+IDE
>>
> i used gedit only.
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to django-users+unsubscribe@**
> googlegroups.com .
> For more options, visit this group at http://groups.google.com/**
> group/django-users?hl=en
> .
>
>


-- 
Regards,

Leandro Ostera,
*BLOG - Check what I'm doing now 
EMAIL - Write me an email 
SHOWCASE - Check my latest projects *

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: what is the best IDE to use for Python / Django

2012-01-23 Thread yati sagade
I think someone has already requested NOT to reply to this thread anymore.
Please STOP replying people.

On Mon, Jan 23, 2012 at 6:05 PM, Mario Gudelj wrote:

> I've used gedit, sublime text 2, emacs, vi, but the best Django IDE by far
> is PyCharm. I'm seriously amazed at how awesome it is. It's worth every
> cent.
>
>
> On 23 January 2012 22:20, Sandro Dutra  wrote:
>
>> The best IDE is that you fell comfortable using it.
>>
>> 2012/1/21 goosfancito :
>> > El 21/01/12 08:52, kenneth gonsalves escribió:
>> >
>> >> On Sat, 2012-01-21 at 03:34 -0800, John Yeukhon Wong wrote:
>> >>>
>> >>> While it has been asked a trillion times already, let me say TRY UT
>> >>> YOURSELF.
>> >>
>> >> you were requested not to feed this thread. If the OP cannot search,
>> >> here it is:
>> >>
>> >>
>> http://duckduckgo.com/?q=site%3Agroups.google.com%2Fgroup%2Fdjango-users
>> >> +python+IDE
>> >
>> > i used gedit only.
>> >
>> >
>> > --
>> > You received this message because you are subscribed to the Google
>> Groups
>> > "Django users" group.
>> > To post to this group, send email to django-users@googlegroups.com.
>> > To unsubscribe from this group, send email to
>> > django-users+unsubscr...@googlegroups.com.
>> > For more options, visit this group at
>> > http://groups.google.com/group/django-users?hl=en.
>> >
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To post to this group, send email to django-users@googlegroups.com.
>> To unsubscribe from this group, send email to
>> django-users+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/django-users?hl=en.
>>
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>



-- 
Yati Sagade 

(@yati_itay )

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: what is the best IDE to use for Python / Django

2012-01-23 Thread Mario Gudelj
I've used gedit, sublime text 2, emacs, vi, but the best Django IDE by far
is PyCharm. I'm seriously amazed at how awesome it is. It's worth every
cent.

On 23 January 2012 22:20, Sandro Dutra  wrote:

> The best IDE is that you fell comfortable using it.
>
> 2012/1/21 goosfancito :
> > El 21/01/12 08:52, kenneth gonsalves escribió:
> >
> >> On Sat, 2012-01-21 at 03:34 -0800, John Yeukhon Wong wrote:
> >>>
> >>> While it has been asked a trillion times already, let me say TRY UT
> >>> YOURSELF.
> >>
> >> you were requested not to feed this thread. If the OP cannot search,
> >> here it is:
> >>
> >>
> http://duckduckgo.com/?q=site%3Agroups.google.com%2Fgroup%2Fdjango-users
> >> +python+IDE
> >
> > i used gedit only.
> >
> >
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Django users" group.
> > To post to this group, send email to django-users@googlegroups.com.
> > To unsubscribe from this group, send email to
> > django-users+unsubscr...@googlegroups.com.
> > For more options, visit this group at
> > http://groups.google.com/group/django-users?hl=en.
> >
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: what is the best IDE to use for Python / Django

2012-01-23 Thread Sandro Dutra
The best IDE is that you fell comfortable using it.

2012/1/21 goosfancito :
> El 21/01/12 08:52, kenneth gonsalves escribió:
>
>> On Sat, 2012-01-21 at 03:34 -0800, John Yeukhon Wong wrote:
>>>
>>> While it has been asked a trillion times already, let me say TRY UT
>>> YOURSELF.
>>
>> you were requested not to feed this thread. If the OP cannot search,
>> here it is:
>>
>> http://duckduckgo.com/?q=site%3Agroups.google.com%2Fgroup%2Fdjango-users
>> +python+IDE
>
> i used gedit only.
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: what is the best IDE to use for Python / Django

2012-01-21 Thread goosfancito

El 21/01/12 08:52, kenneth gonsalves escribió:

On Sat, 2012-01-21 at 03:34 -0800, John Yeukhon Wong wrote:

While it has been asked a trillion times already, let me say TRY UT
YOURSELF.

you were requested not to feed this thread. If the OP cannot search,
here it is:

http://duckduckgo.com/?q=site%3Agroups.google.com%2Fgroup%2Fdjango-users
+python+IDE

i used gedit only.

--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: what is the best IDE to use for Python / Django

2012-01-21 Thread kenneth gonsalves
On Sat, 2012-01-21 at 03:34 -0800, John Yeukhon Wong wrote:
> While it has been asked a trillion times already, let me say TRY UT
> YOURSELF. 

you were requested not to feed this thread. If the OP cannot search,
here it is:

http://duckduckgo.com/?q=site%3Agroups.google.com%2Fgroup%2Fdjango-users
+python+IDE
-- 
regards
Kenneth Gonsalves

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: what is the best IDE to use for Python / Django

2012-01-21 Thread John Yeukhon Wong

While it has been asked a trillion times already, let me say TRY UT
YOURSELF. Sometimes even doing on console such as vim is not bad.
However if you are working on a huge project an IDE can help you.
Pycharm is very good. The problem is still very new but its
development. Maturity is outstanding. I love its database auto
complete. But version control is still e
On Jan 19, 9:14 am, Andre Terra <andrete...@gmail.com> wrote:
> *** Everyone, please DO NOT reply to this thread. ***
>
> Krondaj, feel free to search the archives for similar threads. This
> question has been asked an answered at least a dozen times.
>
> Cheers,
> André Terra
>
>
>
> On Thu, Jan 19, 2012 at 12:08 PM, Krondaj <c.d.smi...@gmail.com> wrote:
> > Hi,
>
> > I was wondering what the best IDE to use for Python / Django would
> > be?
>
> > I am currently using Geany, but i'm sure there is a better (hopefully
> > free) one out there!?!
>
> > Regards,
>
> > Chris
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Django users" group.
> > To post to this group, send email to django-users@googlegroups.com.
> > To unsubscribe from this group, send email to
> > django-users+unsubscr...@googlegroups.com.
> > For more options, visit this group at
> >http://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: what is the best IDE to use for Python / Django

2012-01-19 Thread Tom Evans
On Thu, Jan 19, 2012 at 2:08 PM, Krondaj <c.d.smi...@gmail.com> wrote:
> Hi,
>
> I was wondering what the best IDE to use for Python / Django would
> be?
>
> I am currently using Geany, but i'm sure there is a better (hopefully
> free) one out there!?!
>

This topic comes up once per week, there is no correct answer, use
whatever you feel comfortable with.

http://www.google.co.uk/search?q=+site:groups.google.com+django-users+best+ide

Cheers

Tom

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: what is the best IDE to use for Python / Django

2012-01-19 Thread Andre Terra
*** Everyone, please DO NOT reply to this thread. ***

Krondaj, feel free to search the archives for similar threads. This
question has been asked an answered at least a dozen times.


Cheers,
André Terra

On Thu, Jan 19, 2012 at 12:08 PM, Krondaj <c.d.smi...@gmail.com> wrote:

> Hi,
>
> I was wondering what the best IDE to use for Python / Django would
> be?
>
> I am currently using Geany, but i'm sure there is a better (hopefully
> free) one out there!?!
>
> Regards,
>
> Chris
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



what is the best IDE to use for Python / Django

2012-01-19 Thread Krondaj
Hi,

I was wondering what the best IDE to use for Python / Django would
be?

I am currently using Geany, but i'm sure there is a better (hopefully
free) one out there!?!

Regards,

Chris

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.