Re: Get secret key from django settings

2014-03-25 Thread Errfan Wadia
Yes because it takes the settings instance using the lazysettings. On Tue, Mar 25, 2014 at 10:06 PM, François Schiettecatte < fschietteca...@gmail.com> wrote: > 110-130 milliseconds to 'import' something, sounds very suspect to me. > > François > > On Mar 25, 2014, at 12:08 PM, Errfan Wadia

Re: Geodjango and Python 3.3

2014-03-25 Thread Sam Lai
I'm developing a site using Python 3.3, Django, Geodjango and PostgreSQL. It is a bit tricky getting all the libraries to work, but the stack does work. I installed GEOS using OSGeo4W, but I had to explicitly specify the GEOS_LIBRARY_PATH and GDAL_LIBRARY_PATH in settings.py. On 25 March 2014

Re: Get secret key from django settings

2014-03-25 Thread François Schiettecatte
110-130 milliseconds to 'import' something, sounds very suspect to me. François On Mar 25, 2014, at 12:08 PM, Errfan Wadia wrote: > Hi Daniel, > > When I try to get the SECRET_KEY from settings.py in one of the app, it takes > around 110-130 millisec. Here I am

Re: Get secret key from django settings

2014-03-25 Thread Errfan Wadia
Hi Daniel, When I try to get the SECRET_KEY from settings.py in one of the app, it takes around 110-130 millisec. Here I am talking about execution time. On Tuesday, 25 March 2014 18:31:01 UTC+5:30, Daniel Roseman wrote: > > On Tuesday, 25 March 2014 06:36:53 UTC, Errfan Wadia wrote: >> >> Hi,

Re: Get secret key from django settings

2014-03-25 Thread Errfan Wadia
Hey Shai it worked, reduced the time to 10 millisec from 120 millisec. On Tuesday, 25 March 2014 17:48:12 UTC+5:30, Shai Efrati wrote: > > Hi Errfan, > You can get the SECRET_KEY through the environment variables. Just use: > > from os import environ > SECRET_KEY = environ.get('SECRET_KEY') > >

Geodjango and Python 3.3

2014-03-25 Thread rgreene
Good day, I'm developing under Windows against a PostGIS database. On https://docs.djangoproject.com/en/1.7/ref/contrib/gis/install/#windows, Python 2.7 is shown in the installation steps. I've been reading up on Python 3.3 (for instance, https://wiki.python.org/moin/Python2orPython3), and as

Re: Get secret key from django settings

2014-03-25 Thread Daniel Roseman
On Tuesday, 25 March 2014 06:36:53 UTC, Errfan Wadia wrote: > > Hi, > > I am using from django.conf import settings > Is there any faster way to get the SECRET_KEY in one of my app from > settings.py ? > What do you mean, faster? In what way is that slow? -- DR. -- You received this message

Re: Get secret key from django settings

2014-03-25 Thread Shai Efrati
Hi Errfan, You can get the SECRET_KEY through the environment variables. Just use: from os import environ SECRET_KEY = environ.get('SECRET_KEY') Good luck! Shai. On Tue, Mar 25, 2014 at 8:36 AM, Errfan Wadia wrote: > Hi, > > I am using from django.conf import

Get secret key from django settings

2014-03-25 Thread Errfan Wadia
Hi, I am using from django.conf import settings Is there any faster way to get the SECRET_KEY in one of my app from settings.py ? -- 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

Re: run manage.py commands within app

2014-03-25 Thread Tom Evans
On Sun, Mar 23, 2014 at 11:46 PM, judy wawira wrote: > Hello I have a django app using haystack and a solr backend to power > searches > > There is dynamic addition of data and wonder if there are other ways to > automatically rebuild the solr index without manually going to