when I decided for a framework I studied the documentation for both django 
and web2py. It seems like they have more or less the same functionality but 
what really made the difference for me is the DAL.

 db(db.tablename.fieldname <= value).select() # web2py
 Tablename.objects.filter(fieldname__lt=value) # Django


the web2py syntax is much easier to read and handle, and it's very flexible 
(I doubt that django has the same flexibility). I can write almost all of 
my queries with DAL. When I previously had to work on a jsf/hibernate 
project this was the exact opposite (where we ended up writing most of the 
queries with native sql). I also prefer to use python in views and not 
having to learn another template language.

And the community is really great here :)

Alex

Am Montag, 19. August 2013 10:08:52 UTC+2 schrieb Joe Barnhart:
>
> Both are excellent frameworks and I have nothing but praise for both 
> Django and web2py.  You need to try a small project in each and determine 
> for yourself which fits your needs better.  There are so many similarities 
> and differences that it's impossible to declare one "winner" and "loser". 
>  Some of the best parts of web2py were inspired by Django as well as Rails 
> and other platforms.
>
> This is not a one-size-fits-all world.  There are plenty of people who 
> will make your decisions for you, but only you can make the right choice. 
>  And that comes from being informed -- the kind of "informed" that only 
> comes from experience in each platform.
>
> Warm regards,
>
> Joe
>
> On Friday, August 16, 2013 11:09:57 AM UTC-7, Udeme Samuel wrote:
>>
>> hello developers please i am new  to web2py and django but i want to know 
>> what is the diffrence between the two of them and which of the framework is 
>> more productive...
>>
>

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to