tags:

views:

32

answers:

1

learning pylons now, in django, how easy is it to use sqlalchemy and a different view engine?

Is it hackery or its really easy?

That's pretty much the only reason I am using pylons over django.

But I like that fact that django has a bigger community and easier to get answers to issues.

+1  A: 

Eric Florenzano gave a great talk about this at PyCon this year called "Using Django in Non-Standard Ways." You can find the slides here (.pdf) and the video of the presentation here. All in all I would say that it's not impossibly hard but you will find some difficulty in using pluggable applications (which is part of what makes the community so great) and the Django admin which are both major selling points for Django.

Mark Lavin