Re: Oracle XMLType and AES_Encrypt() field

2015-09-15 Thread Dan Davis
Indeed.   That works.

On Tuesday, September 15, 2015 at 2:49:06 PM UTC-4, Carl Meyer wrote:
>
> On 09/15/2015 12:44 PM, Dan Davis wrote: 
> > I'm wondering how I would get python to run an interactive shell similar 
> > to what I'd get from running ./manage.py shell. 
>
> Why not just run `./manage.py shell`? 
>
> In general, `DJANGO_SETTINGS_MODULE=myproject.settings python` is 
> effectively equivalent to `./manage.py shell` (except for the latter 
> will use IPython by default if installed). 
>
> Carl 
>
>

-- 
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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/04c003a5-3ff5-4c58-aa41-70c322d286dc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Django deployment

2015-09-15 Thread Tim Chase
On 2015-09-15 22:02, Michiel Overtoom wrote:
> > I keep hearing that Django deployment is unnecessarily
> > difficult.  
> 
> Who says this? And what are the reasons they give for it?

I wouldn't say it's *unnecessarily* difficult, but compared to "dump
a pile of PHP files on your FTP site", it's certainly *more*
difficult.

Also, there are lots of super-cheap hosting services for PHP (under
$3/mo, some are even free) whereas I haven't seen Django hosting for
under ~$5/mo.  For a toy project, the difference in cost can play a
deciding factor.

-tkc




-- 
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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/20150915152639.4610ad0c%40bigbox.christie.dr.
For more options, visit https://groups.google.com/d/optout.


Re: Django deployment

2015-09-15 Thread Nikolas Stevenson-Molnar
I second the nginx/gunicorn/django/supervisor stack. I've used it many times; 
it's relatively easy to get everything installed and set up, and all the 
involved components are ready for prime time.

I think the "difficult to set up" sentiment is probably in comparison to 
something like PHP. So many servers have already have the LAMP stack, so 
deployment is just dropping your source in the correct directory and making 
sure the permissions are right. So it's not that Django is *unnecessarily* 
difficult, but it's certainly a bit more involved than a PHP app.

On 9/15/2015 1:02:36 PM, Michiel Overtoom  wrote:
Hi Hugo,

> I keep hearing that Django deployment is unnecessarily difficult.

Who says this? And what are the reasons they give for it?


> For a website with very little traffic, and for somebody who's new to it all, 
> what is the best way to deploy? And how should I go about deploying!

I can tell you how I do it, which is not necessarily the simplest way nor 
especially suited to low traffic. But it's not that hard. On the server 
machine, I install nginx, gunicorn, django and supervisor. Nginx will be the 
frontend, gunicorn will be the webserver, django is the application server, and 
supervisor will be used to start/stop/restart the web application.

I basically did the same as Shawn. In my supervisord.conf I have these lines:

[program:myapp]
command=/usr/local/bin/gunicorn myapp.wsgi -b 127.0.0.1:
directory=/wwwapp/myapp/my
environment=PATH="%(ENV_PATH)s:/usr/local/bin"
user=root
autostart=true
autorestart=true
stdout_logfile=NONE
stderr_logfile=NONE

I also wrote a blog article about this subject: 
http://www.michielovertoom.com/freebsd/flask-gunicorn-nginx-supervisord/ which 
uses Flask as an example, but as Shawn said, it's easy to plug in your Django 
app instead.

--
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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/6DFD6635-480E-43A1-B7CC-2C5FA826185C%40xs4all.nl.
For more options, visit https://groups.google.com/d/optout.

-- 
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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/60dff1bb-c570-4b43-82a0-e511c9b544de%40getmailbird.com.
For more options, visit https://groups.google.com/d/optout.


Re: Django deployment

2015-09-15 Thread Michiel Overtoom
Hi Hugo,

> I keep hearing that Django deployment is unnecessarily difficult.

Who says this? And what are the reasons they give for it?


> For a website with very little traffic, and for somebody who's new to it all, 
> what is the best way to deploy? And how should I go about deploying!

I can tell you how I do it, which is not necessarily the simplest way nor 
especially suited to low traffic. But it's not that hard. On the server 
machine, I install nginx, gunicorn, django and supervisor. Nginx will be the 
frontend, gunicorn will be the webserver, django is the application server, and 
supervisor will be used to start/stop/restart the web application.

I basically did the same as Shawn. In my supervisord.conf I have these lines:

  [program:myapp]
  command=/usr/local/bin/gunicorn myapp.wsgi -b 127.0.0.1:
  directory=/wwwapp/myapp/my
  environment=PATH="%(ENV_PATH)s:/usr/local/bin"
  user=root
  autostart=true
  autorestart=true
  stdout_logfile=NONE
  stderr_logfile=NONE

I also wrote a blog article about this subject: 
http://www.michielovertoom.com/freebsd/flask-gunicorn-nginx-supervisord/ which 
uses Flask as an example, but as Shawn said, it's easy to plug in your Django 
app instead.

-- 
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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/6DFD6635-480E-43A1-B7CC-2C5FA826185C%40xs4all.nl.
For more options, visit https://groups.google.com/d/optout.


Re: Django deployment

2015-09-15 Thread Shawn Milochik
 It's very simple. Just follow these instructions:

http://milocast.com/flasknginx.html

Instead of the final line (gunicorn filename:appname -b 127.0.0.1:),
use this:

./manage.py run_gunicorn -b 127.0.0.1:

-- 
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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOzwKwF2W7CyVxQSwAQ3AXhq%3DWTXMsufk%2BnDcJ3ZdL7wa40FjA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Django deployment

2015-09-15 Thread Hugo Kitano
Hi, I'm a Django newbie, and I'm trying to decide how to deploy my small 
Django project.

I've read into a few options, but I keep hearing that Django deployment is 
unnecessarily difficult.  For a website with very little traffic, and for 
somebody who's new to it all, what is the best way to deploy? And how 
should I go about deploying!

Thanks!

-- 
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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/d4d2d660-36dc-441c-afab-7b4acaedb53b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Help

2015-09-15 Thread Charly Román
NO

Charly Román
Software Developer
http://croman.mx

2015-09-15 12:46 GMT-05:00 Cassanova Rumor :

> --
> 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 django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/1942d283-caa9-423e-b934-f91754f73346%40googlegroups.com
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CABeWMUZCQC9%2BbCiy-7EF4DFYar%2B%3DLNu0qGHPsMJZ%2BKTYdag5Jw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Help

2015-09-15 Thread Cassanova Rumor
-- 
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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/1942d283-caa9-423e-b934-f91754f73346%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Oracle XMLType and AES_Encrypt() field

2015-09-15 Thread Carl Meyer
On 09/15/2015 12:44 PM, Dan Davis wrote:
> I'm wondering how I would get python to run an interactive shell similar
> to what I'd get from running ./manage.py shell.

Why not just run `./manage.py shell`?

In general, `DJANGO_SETTINGS_MODULE=myproject.settings python` is
effectively equivalent to `./manage.py shell` (except for the latter
will use IPython by default if installed).

Carl

-- 
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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/55F867F0.7070005%40oddbird.net.
For more options, visit https://groups.google.com/d/optout.


signature.asc
Description: OpenPGP digital signature


Re: Oracle XMLType and AES_Encrypt() field

2015-09-15 Thread Dan Davis


On Saturday, September 12, 2015 at 2:23:15 PM UTC-4, Carl Meyer wrote:
>
> Hi Dan, 
>
> ... ...

Yes, this is possible, and not even that hard (at least in Django 1.8, 
> where Field classes gained more control over SQL generation; I suspect 
> it would be quite a bit more difficult if you need to support older 
> versions). It does require exploiting some undocumented internal APIs. 
> For an example, you can look at my django-pgcrypto-expressions project, 
> which does the same thing for Postgres' built-in symmetric encryption 
> functions: https://github.com/orcasgit/django-pgcrypto-expressions 


I've looked at your github project and the code for Django 1.8 fields and 
written some code.
I'm wondering how I would get python to run an interactive shell similar to 
what I'd get from running ./manage.py shell.

I tend to test/debug that way before I run py.test or nose...

-- 
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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/b53a8acf-ab62-400b-a641-77333c0f0785%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: migration error "geo_db_type" when using postgres as second database for geodjango

2015-09-15 Thread Tim Graham
The backport isn't trivial because of this removal that happened on 1.9 
which would need to be accounted for on 1.8: 
https://github.com/django/django/commit/3b570dbcdb605cc6ee7e8796e1533fdd40c92362

If someone wants to do that work, we could probably accept a patch for 1.8.

On Monday, September 14, 2015 at 10:58:02 PM UTC-4, Thomas wrote:
>
> On 9/14/15 7:10 PM, Wenyao Xue wrote:
>
> Thanks, I guess I have to wait for 1.9 to release then
>
> 在 2015年9月15日星期二 UTC+8上午12:21:58,Tim Graham写道: 
>>
>> This is a bug that will be fixed in Django 1.9.
>>
>>
>> https://github.com/django/django/commit/0cc059cd104cdb70340bd08e597d403d80dc42a6
>>  
>>
> The fix seems to be fairly compact. Any chance of getting it into the 
> 1.8.x LTS branch?
>
> - Tom
>
> On Monday, September 14, 2015 at 7:35:15 AM UTC-4, Wenyao Xue wrote: 
>>>
>>> I upgraded my router using allow_migrate, but it didn't solve my problem
>>>
>>> 在 2015年9月14日星期一 UTC+8下午6:37:56,Jani Tiainen写道: 

 I guess you need to write a bit more:

 https://docs.djangoproject.com/en/1.8/topics/db/multi-db/#allow_migrate

 And sync_db is deprecated...

 On 14.09.2015 13:07, Wenyao Xue wrote:

 Following is my router for world app.  No router for other two apps, 
 since default database is used 
 Settings:
 DATABASE_ROUTERS = ['world.routers.GisRouter']

 router.py in world app:
 class GisRouter(object):
 """
 A router to control all database operations on models in the
 auth application.
 """
 def db_for_read(self, model, **hints):
 if model._meta.app_label == 'world':
 return 'geodjango'
 return None

 def db_for_write(self, model, **hints):
 """
 Attempts to write auth models go to auth_db.
 """
 if model._meta.app_label == 'world':
 return 'geodjango'
 return None

 def allow_relation(self, obj1, obj2, **hints):
 """
 Allow relations if a model in the auth app is involved.
 """
 if obj1._meta.app_label == 'world' or \
obj2._meta.app_label == 'world':
return True
 return None

 def allow_syncdb(self, db, model):
 """
 Make sure the auth app only appears in the 'auth_db'
 database.
 """
 if db == 'geodjango':
 return model._meta.app_label == 'world'
 elif model._meta.app_label == 'world':
 return False
 return None

 在 2015年9月14日星期一 UTC+8下午5:40:55,Jani Tiainen写道: 
>
>
>
> On 14.09.2015 11:58, Wenyao Xue wrote:
>
> Hi,  
> I use mysql as default database and postgres for geodjango related 
> appliction.  
> 
> my settings:
> DATABASE_ROUTERS = ['world.routers.GisRouter',
> 'rest_shop.routers.ShopRouter',
> 'rest_client.routers.ClientRouter']
>
> DATABASES = {
> 'default': {
> 'ENGINE': 'django.db.backends.mysql',
> 'NAME': 'fddd',
> 'USER': **,
> 'PASSWORD': **,
> 'HOST': SERVER_HOST,
> 'PORT': '3306',
> },
> 'geodjango': {
> 'ENGINE': 'django.contrib.gis.db.backends.postgis',
> 'NAME': 'geo',
> 'USER': *,
> 'PASSWORD': ***,
> 'HOST': SERVER_HOST,
> }
> }
>
> during migration, error raised:
>
> Traceback (most recent call last):
>   File "C:\Program Files (x86)\JetBrains\PyCharm 
> 4.5.4\helpers\pycharm\django_manage.py", line 41, in 
> run_module(manage_file, None, '__main__', True)
>   File "C:\Python27\lib\runpy.py", line 176, in run_module
> fname, loader, pkg_name)
>   File "C:\Python27\lib\runpy.py", line 82, in _run_module_code
> mod_name, mod_fname, mod_loader, pkg_name)
>   File "C:\Python27\lib\runpy.py", line 72, in _run_code
> exec code in run_globals
>   File "D:\src\fddd_backend\manage.py", line 10, in 
> execute_from_command_line(sys.argv)
>   File 
> "C:\Python27\lib\site-packages\django-1.8.4-py2.7.egg\django\core\management\__init__.py",
>  
> line 338, in execute_from_command_line
> utility.execute()
>   File 
> "C:\Python27\lib\site-packages\django-1.8.4-py2.7.egg\django\core\management\__init__.py",
>  
> line 330, in execute
> self.fetch_command(subcommand).run_from_argv(self.argv)
>   File 
> "C:\Python27\lib\site-packages\django-1.8.4-py2.7.egg\django\core\management\base.py",
>  
> line 393, in run_from_argv
> self.execute(*args, **cmd_options)
>   File 
> 

Re: how to create a project in django in windows 7

2015-09-15 Thread Jani Tiainen

Hi,

I wrote a long time ago my setup I used when working in Windows. Since 
that I moved on to *nix since everything was just easier to get by.


Here's the link: 
https://djangonautlostinspace.wordpress.com/2012/04/16/django-and-windows/


On 15.09.2015 10:34, Nick Sarbicki wrote:


I am a fresher to django... can any one explain me how to install
django. and what all are the requirement needed. I tried by
searching google still am not able to do it. So any one please
help me.
Tank you.


Hi Santhosh,

Have you installed Python? (2.7 or 3.4 is best right now - 3.5 has 
just been released but there seems to be some bugs with the windows 
install).


If you have, and it is the latest version of 2.7 or 3.4, try opening 
up a command prompt window and typing in:


*pip install django*

That would normally install it for you.

If that doesn't work send any error messages you receive.

Here are the formal instructions to install Django:

https://docs.djangoproject.com/en/1.8/intro/install/

And here is the tutorial for getting started on a project:

https://docs.djangoproject.com/en/1.8/intro/tutorial01/

They are both pretty good so give them a read.

- Nick.



- Nick

On Tue, Sep 15, 2015 at 5:47 AM, Santhosh Acharya 
> wrote:


I am a fresher to django... can any one explain me how to install
django. and what all are the requirement needed. I tried by
searching google still am not able to do it. So any one please
help me.
Tank you.
-- 
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 django-users+unsubscr...@googlegroups.com
.
To post to this group, send email to django-users@googlegroups.com
.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit

https://groups.google.com/d/msgid/django-users/4c5614d9-9c77-4338-acc6-1831f79abc23%40googlegroups.com

.
For more options, visit https://groups.google.com/d/optout.


--
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 django-users+unsubscr...@googlegroups.com 
.
To post to this group, send email to django-users@googlegroups.com 
.

Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAGuvt93cSyDEd1DWRWCELYQb8BMds%3DSZiBpSotpXvCBNgBhNww%40mail.gmail.com 
.

For more options, visit https://groups.google.com/d/optout.


--
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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/55F7D5B3.2010203%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: customize app ordering in django admin

2015-09-15 Thread Pawanesh Gautam
Got solution : https://djangosnippets.org/snippets/2613/
just add
1.> " register = template.Library() " in /templatetags/custom_tags.py
2.> templatetags folder must have __init.py__ file 





On Thursday, September 10, 2015 at 4:20:43 PM UTC+5:30, Pawanesh Gautam 
wrote:
>
> hi
>
> i have list of app (app1,app2.app3,app3,app4).i would like to change the 
> app order in admin site so that it will look like dis :
> (app1,app3,app4,app2).
> please suggest some tips to perform this .
>
> thanks 
>

-- 
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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/b43221f4-efb2-4115-b86f-6b36d44273aa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: how to create a project in django in windows 7

2015-09-15 Thread Nick Sarbicki
>
> I am a fresher to django... can any one explain me how to install django.
> and what all are the requirement needed. I tried by searching google still
> am not able to do it. So any one please help me.
> Tank you.


Hi Santhosh,

Have you installed Python? (2.7 or 3.4 is best right now - 3.5 has just
been released but there seems to be some bugs with the windows install).

If you have, and it is the latest version of 2.7 or 3.4, try opening up a
command prompt window and typing in:

*pip install django*

That would normally install it for you.

If that doesn't work send any error messages you receive.

Here are the formal instructions to install Django:

https://docs.djangoproject.com/en/1.8/intro/install/

And here is the tutorial for getting started on a project:

https://docs.djangoproject.com/en/1.8/intro/tutorial01/

They are both pretty good so give them a read.

- Nick.



- Nick

On Tue, Sep 15, 2015 at 5:47 AM, Santhosh Acharya  wrote:

> I am a fresher to django... can any one explain me how to install django.
> and what all are the requirement needed. I tried by searching google still
> am not able to do it. So any one please help me.
> Tank you.
>
> --
> 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 django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/4c5614d9-9c77-4338-acc6-1831f79abc23%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAGuvt93cSyDEd1DWRWCELYQb8BMds%3DSZiBpSotpXvCBNgBhNww%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Debugging Django using Pycharm

2015-09-15 Thread Nick Sarbicki
>
> Hi Team,
>
> This is Prabhu just started using Django.
>
> I would like to know how to debug the code by attaching django application
> which is running on server.
>
> Please share the Pycharm Setting and Steps to be followed.
>
> If you are recommend any other debug tool that too ok for me.
>
> Thanks and Regards,
>
> Prabhu


Have you installed the community (free) version or the professional?

The community version doesn't support Django, although it is still worth
using.

- Nick.



- Nick

On Tue, Sep 15, 2015 at 8:03 AM, Prabhu  wrote:

>
> Hi Team,
>
> This is Prabhu just started using Django.
>
> I would like to know how to debug the code by attaching django application
> which is running on server.
>
> Please share the Pycharm Setting and Steps to be followed.
>
> If you are recommend any other debug tool that too ok for me.
>
> Thanks and Regards,
>
> Prabhu
>
> --
> 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 django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/1dbcd553-5f62-4c4a-a984-220a81923ca4%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAGuvt92zqJh%2B9V5H%3D0xO_Wt2CpK0B54_E09900Dkpnv0T7AWFQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Debugging Django using Pycharm

2015-09-15 Thread Prabhu

Hi Team,

This is Prabhu just started using Django.

I would like to know how to debug the code by attaching django application 
which is running on server.

Please share the Pycharm Setting and Steps to be followed.

If you are recommend any other debug tool that too ok for me.

Thanks and Regards,

Prabhu

-- 
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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/1dbcd553-5f62-4c4a-a984-220a81923ca4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


how to create a project in django in windows 7

2015-09-15 Thread Santhosh Acharya
I am a fresher to django... can any one explain me how to install django. 
and what all are the requirement needed. I tried by searching google still 
am not able to do it. So any one please help me. 
Tank you.

-- 
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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/4c5614d9-9c77-4338-acc6-1831f79abc23%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.