Django connection pooling using sqlalchemy connection pool

2012-07-11 Thread Anand Agarwal
As you know, Django uses new database connection for each request. This works well initially. However as the load on the server increases, creating/destroying connections to database starts taking significant amount of time. You will find many questions about using

Emberjs Vs knockoutjs with django?

2012-07-10 Thread Anand Agarwal
Hi All Recently we have revamped our client architecture to enhance user experience and improve performance of our product BootStrapToday ( http://bootstraptoday.com). BootStrapToday is built using Django. We needed a good javascript framework. So we evaluated Emberjs and knockoutjs and found knoc

Django based Project Management

2011-10-01 Thread Anand Agarwal
HI All BootStrapToday is a django based online Project collaboration platform with following features. BootStrapToday Features. • User dashboard and Project Dashboard for quick view of activities and progress of individuals and progress of the project. • Collaborate wi

Django Optimization: Database Access

2011-07-03 Thread Anand Agarwal
Hi All Recently we migrated from Django 1.1 to django 1.2 for our product BootStrapToday . We had to do some changes to optimize database queries on django 1.2. Here are some of our learnings, which might be useful to the group. http://bit.ly/lfoab0 Regards Anand http:/

Re: Internationalization query for List & dictionary

2011-06-16 Thread Anand Agarwal
Thanks Tom Regards Anand http://bootstraptoday.com On Thu, Jun 16, 2011 at 3:49 PM, Tom Evans wrote: > On Thu, Jun 16, 2011 at 11:16 AM, Anand Agarwal > wrote: > > Hi All > > > > Is there a way to define _ for items in python dictionary and list other > &g

Internationalization query for List & dictionary

2011-06-16 Thread Anand Agarwal
Hi All Is there a way to define _ for items in python dictionary and list other than individual items using gettext_lazy? eg: _(['hello', 'world']) does this work? or do I have to do [_('hello'), _('world')] similarly whats the syntax for dictionary?? Regards Anand http://bootstraptoday.co

Internationalization in Django.

2011-06-02 Thread Anand Agarwal
Hi All we are trying to translate our website in french. Django has a good framework for internationalization. Only problem is django model translation. Is there a good way to handle django model translation, without inserting new columns in data table? problem with inserting new column is everyt

Re: Django based Project Management software

2011-03-07 Thread Anand Agarwal
Its a hosted solution for subversion repository. Every project you create has its own svn repository created on our servers. -Regards Anand http://bootstraptoday.com On Tue, Mar 8, 2011 at 11:47 AM, Kenneth Gonsalves wrote: > On Tue, 2011-03-08 at 11:40 +0530, Anand Agarwal wrote: >

Re: Django based Project Management software

2011-03-07 Thread Anand Agarwal
Yes http://bootstraptoday.com -Anand On Tue, Mar 8, 2011 at 5:43 AM, Kenneth Gonsalves wrote: > On Mon, 2011-03-07 at 19:33 +0530, Anand Agarwal wrote: > > Here is very simple & intuitive Web based Project Management > > Application > > based on django. Also

Django based Project Management software

2011-03-07 Thread Anand Agarwal
Here is very simple & intuitive Web based Project Management Application based on django. Also it has subversion hosting. http://bit.ly/fazfqa -Regards Anand -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Stats for: Optimizing Django database access : some ideas/experimentshttp://blog.bootstraptoday.com

2011-02-04 Thread Anand Agarwal
http://blog.bootstraptoday.com/2011/02/04/optimizing-django-database-access-some-ideasexperiments/ caching at connection manager level has saved us lots of calls to database. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group

Really simple python message queue

2010-11-27 Thread Anand Agarwal
Really simple python message queue http://bit.ly/dHRQ1y -Anand -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@goog

Looking for Django Developer(s) in & around Pune, india

2010-09-14 Thread Anand Agarwal
Hi We are looking for python/django developer in & around Pune for full time job. We require passionate people ready to work in a startup product company. Anyone interested can send me his/her resume. Thanks & Regards Anand -- You received this message because you are subscribed to the Google G

Re: One to One chat like Facebook?

2010-05-19 Thread Anand Agarwal
part-2/ > [2] > http://llaisdy.wordpress.com/2009/10/13/adding-a-django-application-to-pinax/ > [3] > http://www.clemesha.org/blog/2009/dec/17/realtime-web-apps-python-django-orbited-twisted/ > [4] http://clemesha.org/projects/hotdot/ > [5] http://code.stanziq.com/speeqe > > &

OpenBookPlatform in django

2010-05-17 Thread Anand Agarwal
Hi All Has anybody tried to port OpenBookPlatform on django 1.1 Regards Anand Got an Idea? BootStrap it Today!! -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@goog

One to One chat like Facebook?

2010-05-16 Thread Anand Agarwal
Hi All Is there any chat application in django similar to facebook chat? Regards Anand Got an Idea? BootStrap it Today!! -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us

Re: I need django-evolution app

2010-04-27 Thread Anand Agarwal
How does it work if i want to run the schema changes for various database instances? In my scenario each account has different database instance & there are hundreds of them. I want to update schema changes in all the databases in one go. Regards Anand bootstraptoday

Re: I need django-evolution app

2010-04-27 Thread Anand Agarwal
Hey Shwan, Does south support multidb schema updates? Regards Anand bootstraptoday On Fri, Mar 12, 2010 at 8:58 PM, Shawn Milochik wrote: > South has become the dominant DB migration tool for Django. Have a go at > that. > > http://south.aeracode.org/ > > Shawn

Generic solution to Update Schema in multidb

2010-04-27 Thread Anand Agarwal
Hi Guys We have a SaaS based application. We have developed the application on Django 1.1. For each account we have a separate database. So its a multidb. We make release every few weeks. Sometime there is some change in schema. Currently we have customized django-evolution to update schema in all

Re: New with Django

2010-04-23 Thread Anand Agarwal
You can write a file xyz.wsgi with following content in your application import os import sys sys.path.append("D:\\workspace\\python\\sspl\\src") sys.path.append("D:\\workspace\\python\\sspl\\src\\ssplsite") os.environ['DJANGO_SETTINGS_MODULE'] = 'settings' import django.core.handlers.wsgi appl

Re: Is any thing for python like .jar files for java.

2010-04-04 Thread Anand Agarwal
I think you mean python egg. -Anand www.bootstraptoday.com On Wed, Feb 10, 2010 at 1:35 AM, chiranjeevi muttoju wrote: > Hi all, > Is there any concept in python like .jar files in java. If anybody of you > know please reply me. > > -- > Thanks and regards, > chiranjeevi.muttoju > > -- > You rec

Re: Hosting for Django sites

2010-04-03 Thread Anand Agarwal
We have been Rackspace for our product. We are very satisfied with their service. Customer support is fabulous. BootStrapToday www.bootstraptoday.com On Sat, Apr 3, 2010 at 8:09 PM, django_jedi wrote: > Hi Folks, > > I'm wondering what people would recommend for

Re: django authentication system

2010-04-03 Thread Anand Agarwal
I guess you can use django-openid, though i am not sure what exactly you are trying. -BootStrapToday http://www.bootstraptoday.com On Sat, Apr 3, 2010 at 1:04 AM, orokusaki wrote: > You have to use ``auth.models.User`` if you want to enjoy all the > benefits o

MultiDB Syncdb script

2010-04-03 Thread Anand Agarwal
Hello everyone I am working on a project where we have multiple databases instance. We wanted a script to run through all databases to perform syncdb command. I tried looking on net but could not find one. So we decided to develop one on our own. I would like to share that script with the group as