How to install django in redhat where i have python 2.6 and 2.7 and i need to install django in python 2.7

2015-02-19 Thread SHINTO PETER
How to install django in redhat where i have python 2.6 and 2.7 and i need to install django in python 2.7 -- 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 dja

How to host django application in redhat using virtual environment?

2015-02-19 Thread SHINTO PETER
How to host django application in redhat using virtual environment? -- 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

How to filter by Group_BY ?

2015-02-20 Thread SHINTO PETER
How to filter by Group_BY ? -- 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 djang

How to filter by Group_BY ?

2015-02-20 Thread SHINTO PETER
How to filter by Group_BY ? -- 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 djang

How load a form in popup div through ajax and submit the data in django?

2015-02-25 Thread SHINTO PETER
How load a form in popup div through ajax and submit the data in django? -- 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.co

how to return a form in ajax call from template?

2015-02-25 Thread SHINTO PETER
how to return a form in ajax call from template? -- 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

how pass get parameter django bootstrap pagination

2015-03-05 Thread SHINTO PETER
{% load bootstrap_pagination %} {% bootstrap_paginate object_list range=10 %} -- 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...@googleg

How to make request ie GET/POST to soap (windows web service ) in Django?

2015-03-18 Thread SHINTO PETER
How to make request ie GET/POST to soap (windows web service ) in Django? -- 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.

Re: Import error - No module named http

2015-03-18 Thread SHINTO PETER
iam to getting same error Traceback (most recent call last): File "test_soap.py", line 4, in http.request("POST", "/path/to/my/webservice", body=xml, headers = { NameEr

Re: How to make request ie GET/POST to soap (windows web service ) in Django?

2015-03-19 Thread SHINTO PETER
Thank you James Schneider & Andrew Farrell On Wednesday, 18 March 2015 21:46:33 UTC+5:30, SHINTO PETER wrote: > > How to make request ie GET/POST to soap (windows web service ) in Django? > -- You received this message because you are subscribed to the Google Groups "Djang

In Django , How to move data from one model to another model in same database & same schema ?

2015-04-06 Thread SHINTO PETER
In Django , How to move data from one model to another model in same database & same schema ? -- 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+unsub

How to filter model with count of fields and which is group_by with few fields?

2015-04-09 Thread SHINTO PETER
Model class fcc_summary(models.Model): OCN_Id = models.AutoField( primary_key=True) OCN_Date = models.CharField(max_length = 20, blank = True, null = True) OCN_OCN_Id = models.CharField(max_length = 25, blank = True, null = True) OCN_StateCode = models.CharField(max_length = 5, bla

how to filter in django ie group_by and count

2015-04-09 Thread SHINTO PETER
how to filter in django ie group_by and count -- 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, s

How to filter model with sum of fields and which is group_by with few fields?

2015-04-09 Thread SHINTO PETER
Model class fcc_summary(models.Model): OCN_Id = models.AutoField( primary_key=True) OCN_Date = models.CharField(max_length = 20, blank = True, null = True) OCN_OCN_Id = models.CharField(max_length = 25, blank = True, null = True) OCN_StateCode = models.CharField(max_length = 5, bl

Error : socket.gaierror: [Errno -5] No address associated with hostname

2015-04-17 Thread SHINTO PETER
socket.gaierror: [Errno -5] No address associated with hostname # server.py import socket import time # create a socket object serversocket = socket.socket( socket.AF_INET, socket.SOCK_STREAM) # get local machine name host = socket.gethostname() port = # bind to the port serversocket

Re: Error : socket.gaierror: [Errno -5] No address associated with hostname

2015-04-17 Thread SHINTO PETER
i just want to give host as localhost / 127.0.0.1 On Friday, 17 April 2015 17:15:05 UTC+5:30, François Schiettecatte wrote: > > What is the value of host? > > François > > > On Apr 17, 2015, at 7:38 AM, SHINTO PETER > wrote: > > > > socket.gaierror: [

Re: Error : socket.gaierror: [Errno -5] No address associated with hostname

2015-04-17 Thread SHINTO PETER
t from socket.gethostname() ? Just set it to > ‘localhost’. > > F. > > > On Apr 17, 2015, at 7:56 AM, SHINTO PETER > wrote: > > > > i just want to give host as localhost / 127.0.0.1 > > > > On Friday, 17 April 2015 17:15:05 UTC+5:30, François Sch

Re: Error : socket.gaierror: [Errno -5] No address associated with hostname

2015-04-17 Thread SHINTO PETER
part of a network. > > F. > > > On Apr 17, 2015, at 8:05 AM, SHINTO PETER wrote: > > > > socket.gethostname() > > Return a string containing the hostname of the machine where the Python > interpreter is currently executing ie in python documentation > > >

Putting Limits on Memory and CPU Usage in python ?

2015-04-20 Thread SHINTO PETER
how to limit memory utilization for a particular python script ? -- 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 po

Re: Putting Limits on Memory and CPU Usage in python ?

2015-04-20 Thread SHINTO PETER
Working with linux/unix On Monday, 20 April 2015 22:44:17 UTC+5:30, François Schiettecatte wrote: > > You don’t say what platform you are running on, but on linux/unix you can > use ulimit, see http://ss64.com/bash/ulimit.html > > François > > > On Apr 20, 2015,

Re: Putting Limits on Memory and CPU Usage in python ?

2015-04-21 Thread SHINTO PETER
users" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/django-users/LE6J4sRujbQ/unsubscribe. > To unsubscribe from this group and all its topics, send an email to > django-users+unsubscr...@googlegroups.com. > To post to this group, sen

Re: Putting Limits on Memory and CPU Usage in python ?

2015-04-21 Thread SHINTO PETER
(rsrc, (1024, hard)) Link : http://stackoverflow.com/questions/2308091/how-to-limit-python-heap-size On Tue, Apr 21, 2015 at 1:18 PM, Erik Cederstrand wrote: > > > Den 21/04/2015 kl. 09.20 skrev SHINTO PETER : > > > > Hi > > François Schiettecatte , limit memory and