Django-nonrel is an independent branch of Django that adds NoSQL database support to the ORM. The long-term goal is to add NoSQL support to the official Django release.

learn more… | top users | synonyms

3
votes
1answer
56 views

Django non-rel failing to sync db with mongo 2.4.2

I have been using Django 1.3 non-rel with django-mongodb_engine 0.4. Mongodb version being used was 1.8.2 and things were working fine. Recently i tried to upgrade to mongodb 2.4.2(latest stable) ...
4
votes
2answers
85 views

Library for OAUTH2.0 provider with Django-nonrel on Google AppEngine

I'm developing an OAUTH 2.0 provider on Google App Engine with Django-nonrel. For authentication I have provided my own user authentication, so I'm not using Google Accounts. I did some research ...
0
votes
1answer
32 views

Django Admin doesn't recognize files uploaded on Google App Engine

I am using Django 1.4 on Google App Engine. I have a model called Media, where the admins can upload files to use in their website. It has a field: file = ...
4
votes
4answers
617 views

How to make group permissions work in Django-nonrel for Google App Engine

I'm trying to get role-based permissions working for django-nonrel for GAE. Out of the box, it didn't seem to work, probably because of the implicit many-to-many relationship between Users and ...
0
votes
3answers
315 views

Django and MongoDB issues with Django admin

I'm trying to integrate MongoDB with Django's Admin system (as per the Tumblelog tutorial on the mongodb site and hitting a bug when I try to python manage.py syncdb - it gives me this error - and I'm ...
1
vote
2answers
723 views

AppConfigNotFoundError for dev_appserver.py on Django-nonrel and Google App Engine

I'm trying to clear my local db like explained in the docs But when I try and run the dev_appserver.py --clear_datastore command I get google.appengine.tools.dev_appserver.AppConfigNotFoundError ...
2
votes
2answers
2k views

Django non-rel - how do I install it?

As a new python and django developer, I'm creating a Django app on Google app engine. Today I realized GAE helper did not support model formsets - after some research, I understand Django non-rel is ...
1
vote
3answers
1k views

Django-nonrel and GAE - Error - Unexpected attribute 'builtins'

I'm trying to run django-testapp from allbuttonpressed which uses Django-nonrel. When I run manage.py from django-testapp it gives me an error saying that ...
1
vote
0answers
22 views

How to append a document to a 2nd level embedded model list document in Django and mongoengine

I'm currently facing some issues trying to add a embedded model object into a list which is also inside a embedded model list. I'm using Django nonrel and mongoengine with djangotoolbox. So, this is ...
0
votes
0answers
39 views

Django - mongodb invalid literal for int() with base 10

I am trying to host a django-mongodb application in appfog. I'm using django-nonrel, mongo_engine and djangotoolbox. Also the application works fine in a virtualenv in my local machine. But in appfog ...
3
votes
1answer
95 views

Django lookup types (“iexact”, “icontains”, “month”, etc.) not working in Django nonrel (using dbindexer)

I created an app using 'django nonrel' and am using 'django dbindexer' to allow for normal Django lookups. The settings file is as below myproject/settings.py from djangoappengine.settings_base ...
1
vote
0answers
39 views

Implementing Structured Properties in django model

Google appengine has a model field called Structured Properties which can store a list of models inside another model inside a model. See it here: ...
0
votes
1answer
47 views

appengine queries

models.py from django.db import models from google.appengine.ext import db class ligas(models.Model): llave = models.TextField() liga = models.TextField() views.py from django.http import ...
0
votes
1answer
40 views

Multiple OR filters in django-nonrel are not allowed, workaround?

I am using django-nonrel 1.3 with MongoDB 2.0.7 and facing this known issue- Multiple OR statements are not allowed while filtering QuerySet. ...
0
votes
0answers
27 views

QuerySet' object has no attribute 'create_user'

I am using django-nonrel 1.3, and am trying to create a new user. Here is what I have from django.contrib.auth.models import User ... user = User.objects.create_user('someuser', 'a@b.com', ...
6
votes
2answers
1k views

Django-nonrel ≤1.3 and Memcache on Google App Engine

I'm a designer still trying to code up my first app in Google App Engine as an experiment. I have got to the point where I want to set up memcache to cache my entire site following the instructions ...
0
votes
0answers
31 views

Indirect queries in Django-nonrel

How can I execute indirect queries when using MongoDB as database engine? Let's say I have a Model called NoteCollection that consists of Slides, and every Slide can have user-added Tags like so: ...
1
vote
2answers
139 views

ImproperlyConfigured at / port must be an instance of int django mongodb

Trying to move Django-MongoDB developement environment to production Keep getting the following error from web interface: ImproperlyConfigured at / port must be an instance of int On ...
0
votes
2answers
114 views

AppEngine 1.7.6 and Django 1.4.2 release

AppEngine 1.7.6 has promoted Django 1.4.2 to GA. I wonder how and if people this are using The reason for my question is that Django-nonrel seems to be stuck on Django 1.3 and there are no signs of an ...
1
vote
0answers
42 views

How to build web client/system tests on an App Engine project?

Is there a common/best practice way to build a client-side javascript test platform for GAE python? I know the GAE SDK has a Testbed API, and there's nose-gae. Both of these seem to be designed for ...
1
vote
1answer
120 views

How to use custom python libraries and apps in Google App Engine?

I would like to know how to install and use third party libraries and/or apps in django nonrel at Google App Engine? Currently my web application uses django-nonrel and I would like to install some ...
0
votes
0answers
232 views

How to install Django-nonrel (Django 1.5)?

How to install Django-nonrel (Django 1.5) ? Is this version of django is supported? This is for 1.3: http://docs.mongodb.org/manual/tutorial/write-a-tumblelog-application-with-django-mongodb-engine/ ...
0
votes
1answer
62 views

django-mongodb engine saves data in which collection?

I am using django-mongodb engine to connect django with mongodb. I have a model in my application named as bandwidth. when i save data through python manage.py shell , it saves data in a collection ...
0
votes
1answer
66 views

Error while saving djangotoolbox ListField to GAE datastore

While saving ListField to GAE datastore, I get 'Unsupported type for property tags: ' GAE datastore receives a generator object to save into database: name: 'tags' value: <generator object ...
0
votes
1answer
104 views

Unable to login to django admin view with valid username and password

I know this question has been asked several times before but most of the question were asked long ago and old answers did not work for me. I have a django-nonrel based app which is using dbindexer ...
5
votes
1answer
1k views

Django MongoDB problem

my django app run with mysql, but when i try with mongodb then show thie error Traceback (most recent call last): File "manage.py", line 14, in <module> execute_manager(settings) File ...
0
votes
1answer
86 views

Unable to save django-toolbox ListField to database using django admin view

I am writing a django-nonrel based app and using admin view functionality provided by Django. I want a Many-to-many relationship between two models and for this, I am using ListField found inside ...
1
vote
1answer
163 views

'str' object has no attribute 'csrf_exempt' while returning response from a django view?

I have this strange problem with my view which is returning response in json format.My view looks like this: def CheckPlayer(request,client_id): if request.method == 'GET': try: ...
5
votes
2answers
2k views

Django-nonrel import cache fail

I am trying to setup django-nonrel on GAE (Google App Engine) - following the steps here http://www.allbuttonspressed.com/projects/djangoappengine#installation The test application works great - I ...
0
votes
1answer
71 views

django-nonrel: add element in LisftField of ForeignKeys

I'm trying to implement a list of foreignKeys in django-nonrel (I'm using mongo as db). Here is the code: # models.py from django.db import models from django_mongodb_engine.contrib import ...
2
votes
2answers
377 views

Case-insensitive order_by on GAE using django non-rel

Using google app engine and Django non-rel, I'm querying a list of movies and want to order them alphabetically. movies = Movie.objects.all().order_by("title") The problem is for any titles that do ...
0
votes
2answers
126 views

Setting up django-nonrel using pip

I'm trying to install django-nonrel the correct way - and to be able to reproduce the process. I've installed django-nonrel using pip - as following: pip install ...
3
votes
7answers
1k views

Django MongoDB Engine error when running tellsiteid

SO I created a django project and app as per the tutorial and I have all the dependencies necessarry for MongoDB Engine it all seemed to be working fine and dandy till I tried enabling the admin ...
0
votes
2answers
59 views

Django-nonrel broke after installing new version of Google App Engine SDK

I had GAE 1.4 installed in my local UBUNTU system and everything was working fine. Only warning I was getting at that time was something like "You are using old GAE SDK 1.4." So, to get rid of that I ...
1
vote
1answer
87 views

How to reverse a cursor in djangoappengine?

I'm developing and application that requires to paginate a list of links. I'm using django non-rel with djangoappengine. I'm aware of the functions set_cursor and get_cursor found in ...
0
votes
1answer
90 views

Django queryset returning incorrect data?

My setup is a Django-Nonrel running on Google App Engine I have a Lesson model\form that has LessonStep inline model\forms. The connection is via foreign key in LessonStep pointing to Lesson. I'm ...
0
votes
1answer
470 views

ListField with ForeignField in django-nonrel

It seems hard to find a complete example of using ListField with ForeignField in django-mongo-engine.. my logic looks like below, class GameSession(models.Model): # id => token, is global ...
0
votes
0answers
47 views

App Engine Django-Nonrel ReferenceProperty

I am in the process of upgrading an App Engine Python/Django application from the (old style) App Engine Helper to the (new style) Django-Nonrel. Each model now inherits from django.db.models.Model ...
1
vote
1answer
107 views

How to convert django ManyToManyField into Django-nonrel Field?

I build an app in django, but since I found out that google app engine doesn't support Django out of the box (free,cloud sql can't be used for free right?). I decided to move to Django-nonrel, so ...
2
votes
2answers
163 views

Backwards migration from Django 1.4 to Django 1.3

Sometimes my stupid, reckless and daredevil programming gut gets me to some dangerous places: I've started a Django 1.4 application with sqlite3 and then moved to mysql, no big deal there. But then I ...
2
votes
1answer
397 views

Python- How to flush the log? (django)

I'm working with Django-nonrel on Google App Engine, which forces me to use logging.debug() instead of print(). The "logging" module is provided by Django, but I'm having a rough time using it ...
0
votes
2answers
140 views

How to make spatial queries on django non-rel on appengine

I am using django together with django-nonrel on google appengine for one of my projects using python. I have Entities that has a geo location coded in lat/lon as DecimalFiled (for now, can change ...
1
vote
2answers
1k views

ImportError: cannot import name timezone

After installing django-norel, and running python manage.py shell, I get this error: >>> from django.utils import timezone Traceback (most recent call last): File "<console>", line ...
1
vote
1answer
84 views

How to store long lists of numbers in Google App Engine/Django-nonrel?

I am developing a django-nonrel project and deploying it on Google app engine. One function is to store many long lists of numbers, e.g., stock prices over time. The length of the list may be around ...
0
votes
2answers
105 views

Is it still possible to use django-mediagenerator on Google App Engine

I've been working on a existing project at a new company and one of the problems we're running into is Javascript code duplication. We're working in Google App Engine, and I have heard of the Django ...
0
votes
1answer
109 views

Django : GAE : non rel : maximum recursion depth exceeded in cmp

I was learning django with GAE. Tutorial link: http://f.souza.cc/2010/08/flying-with-django-on-google-app-engine.html Can anyone please tell me the reason? Why am I getting this error? File ...
0
votes
1answer
62 views

Django nonrel and grappelli

I'm trying to install Grappelli on Django-nonrel. Because the current version of Django-nonrel is 1.3 so I use Grappelli 2.3. According to the doc ...
0
votes
2answers
98 views

How does unique_together work in Django-nonrel?

I am using django-nonrel and django-mongodb engine. In engine's documentation, it says that it supports django's Meta options. I tried using unique_together in a model as such: class ...
1
vote
1answer
167 views

Django Non-Rel: QuerySet is always empty, even though objects exist

filter() and all() not working on django-nonrel >>> Item.objects.get(display_name='Test Item') <Item: Test Item> >>> Item.objects.all() [] >>> ...
0
votes
1answer
44 views

django-nonrel: user's groups-property causing error

I'm struggeling with the 'default' user-class of django-nonrel and it's groups-property. I'm trying to find a specific group by it's name of the given user (a.k.a. user.belongs_to_group(name)). Sadly, ...

1 2 3 4 5 6