Chess App

2015-02-15 Thread dravid rahul
Hi Experts , How can i build a chess app and deploy it on facebook.Can anyone please help me on this ,i had done google but i cant find it. Thanks Karthik -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group

What is the most usable forum app for Django 1.7?

2015-02-15 Thread Supermario
I am looking for a forum app to integrate into my project which is going to be quite high-traffic. So I am looking for a mature forum app. I know there are a couple of forum apps listed here: https://www.djangopackages.com/grids/g/forums/ By 'usable' I mean: - Easy to integrate into existing

Re: Is there anyone whos used Django with webfaction that has made there own tutorial ?

2015-02-15 Thread Sean Fulmer
On Saturday, February 14, 2015 at 2:11:50 PM UTC-7, djangocharm2020 wrote: > > seem to be having issues with it one question if anyone has if you make a > new project from scratch do you still need to use the virtualenv to create > a project > No, you don't need to use virtualenv with

Re: How can I get this result?

2015-02-15 Thread Krishnasagar Subhedarpage
Hi, consider two objects, ls_dic=[{'key1':a , 'key2': b},{'key1':c , 'key2': d}] num=sum([len(x.values()) for x in ls_dic]) print '%s' % ','.join(sorted(sum([x.values() for x in ls_dic],[])))[:-num] print '%s' % ','.join(sorted(sum([x.values() for x in ls_dic],[])))[num:] This is will help a

Re: How can I get this result?

2015-02-15 Thread Shai Efrati
sorry. assuming: l = [{'key1':'a' , 'key2': 'b'},{'key1':'c' , 'key2': 'd'}] for e in l: for k, v in e.iteritems(): print v, print On 2/15/15, Shai Efrati wrote: > assuming: > l = [{'key1':a , 'key2': b},{'key1':c , 'key2': d}] > > for e in l: > for k, v in

Re: How can I get this result?

2015-02-15 Thread Shai Efrati
assuming: l = [{'key1':a , 'key2': b},{'key1':c , 'key2': d}] for e in l: for k, v in iteritems(e): print v, print On 2/15/15, aronivi...@gmail.com wrote: > [{'key1':a , 'key2': b},{'key1':c , 'key2': d}] > a,b > c,d > > -- > You received this message

How can I get this result?

2015-02-15 Thread aronivicki
[{'key1':a , 'key2': b},{'key1':c , 'key2': d}] a,b c,d -- 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