Re: django debugger

2013-11-12 Thread Harjot Mann
On Sun, Nov 10, 2013 at 12:27 PM, Harjot Mann wrote: > I succesfuly installed it on django's local server but what should I > need to do for those apps which are working on apache server. Even I > noticed that its not working on django' local server with my app which >

Re: django debugger

2013-11-09 Thread Harjot Mann
On Fri, Nov 8, 2013 at 9:40 AM, CLIFFORD ILKAY wrote: > > Django debug toolbar > will do that. Thanks Clifford for suggesting me, actually I knew that it will fulill my requirement. I succesfuly installed

Re: django debugger

2013-11-08 Thread DJ-Tom
Hi, Pycharm ist very good, I'm using it on a daily basis with Django, debugging included. Google for debugging django pycharm and you will find loads of hints how to set this up. You may also want to look at this review, as it covers a lot of the features that Pycharm has:

Re: django debugger

2013-11-07 Thread CLIFFORD ILKAY
On 11/07/2013 02:19 PM, Harjot Mann wrote: > Is it possible to view the sql queries working at the backend of > django from browser directly? Django debug toolbar will do that. -- Regards, Clifford Ilkay 647-778-8696 Dinamis

Re: django debugger

2013-11-07 Thread Harjot Mann
On Thu, Nov 7, 2013 at 11:35 PM, Andrew Farrell wrote: > It is possible to use pdb (or ipdb: https://pypi.python.org/pypi/ipdb) by > inserting a set_trace() call and then running the django dev server with > `manage.py runserver`. For example, the following will print the

Re: django debugger

2013-11-07 Thread Andrew Farrell
It is possible to use pdb (or ipdb: https://pypi.python.org/pypi/ipdb) by inserting a set_trace() call and then running the django dev server with `manage.py runserver`. For example, the following will print the number of database queries before and then after a function which touches the

Re: django debugger

2013-11-06 Thread Stefano Probst
Of course you can use the toolbaralso. The toolbar is a app witch run 'inside' your Project. With the eclipse debugger you can set breakpoints and run your program step by step. This are different types of debugging, The

Re: django debugger

2013-11-06 Thread Stefano Probst
If you use Eclipse, you can set Breakpoints and go forward step by step. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: django debugger

2013-11-06 Thread Harjot Mann
On Wed, Nov 6, 2013 at 8:49 PM, Stefano Probst wrote: > If you use Eclipse, you can set Breakpoints and go forward step by step. What about django debug toolbar? -- Harjot Kaur Mann Blog: http://harjotmann.wordpress.com/ Daily Dairy:

Re: django debugger

2013-11-05 Thread Tomas Ehrlich
Hi Harjot, try https://github.com/Kozea/wdb if you want debugger like pdb or simple https://github.com/django-debug-toolbar/django-debug-toolbar which provides lots of useful informations. Unfortunately, I don't use pdb nor wdb, so I can't help you with any of them. Cheers, Tom Dne Tue, 5

django debugger

2013-11-05 Thread Harjot Mann
I want to know that how can we debug django applications? I got pdb but I think in this some commands are need to use and then I come to know about pycharm. Is it good? I successfully installed it but dont' know how to use it? Anyone please help me.. -- Harjot Kaur Mann Blog: