Which django apps are directly usable or easily adaptable for django-nonrel?

221 Views Asked by At

Is there a list of django apps that can be used unaltered in django-nonrel or a list of django apps that can be easily adapted to be used in django-nonrel?

3

There are 3 best solutions below

0
On

I haven't found such a list. For the record, I've gotten tastypie working with tiny modifications http://eatdev.tumblr.com/post/12076483835/tastypie-on-django-nonrel-on-app-engine

django-merchant seems to be working as well. https://github.com/agiliq/merchant

Essentially simple apps that don't require JOINs in their DB queries will most likely work. If they use ManyToManyRelations, they're probably not going to work.

0
On

I have used 'contenttypes, auth and sessions' from 'django.contrib' without any modification, the app code wont cause any problems. However any query using JOINs result in query errors, so you need to write your queries with this limitation in mind.

Did you have a particular app in mind?

0
On

I used django-dbindexer from the same guys that made django-nonrel to use django-registration without modifications.