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

0
votes
0answers
8 views

I want an EmbeddedListField of comments to show up only when I 'GET' a single post and not when I 'GET' a list of posts

I have a mongodb document 'Post' which has EmbeddedListField of 'comments'. I'm using tastypie to build the API layer and I want the comments to be listed with their body fields only when a single ...
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 = ...
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
40 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
100 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 ...
3
votes
1answer
59 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) ...
1
vote
0answers
40 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
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', ...
0
votes
0answers
32 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: ...
0
votes
3answers
319 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 ...
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
121 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
237 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
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
109 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 ...
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
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 ...
0
votes
1answer
63 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
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 ...
0
votes
2answers
128 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 ...
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
475 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
48 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
110 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
165 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 ...
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
1answer
110 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 ...
2
votes
1answer
410 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
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
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, ...
2
votes
1answer
259 views

App Engine 1.7.3: Need more info about Django 1.4 support

App Engine 1.7.3 was just announced, claiming "Django 1.4 is now fully supported for Python 2.7". Please provide more information. Is this referring to the django-nonrel source code on Github for 1.4 ...
0
votes
1answer
80 views

Django-Nonrel(mongo-backend):Model instance modification tracking

I am using Django non-rel version with mongodb backends. I am interested in tracking the changes that occur on model instances e.g if someone creates/edits or deletes a model instance. Backend db is ...
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
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
1answer
45 views

Profile python in google app engine sdk (djangoappengine)

I am developping a django app (djangoappengine) using google app engine sdk. My app is painfully slow and I want to profile it. I have tried, cProfile, profile, hotshot according to ...
0
votes
1answer
79 views

OSQA port on Google App Engine using django-nonrel

I've been developing a website on Google App Engine using Python and I need a Q&A system. OSQA seems to be the best option available. As it is basically a Django app, can anybody give me some ...
0
votes
1answer
107 views

Sensible URL patterns in Django-nonrel with MongoDB

A common practice in many news sites is to include both ID and slug in the URL. The ID is used to look up the actual article, and the slug is included for SEO purposes. This way, the slug can be ...
2
votes
1answer
242 views

Django: Long field (BigIntegerField) For MongoDB

I want to assign a model field to store a Long integer type in MongoDB. I've tried it with BigIntegerField but it is still kept as Integer field in MongoDB. I've tried using: models.BigIntegerField() ...
0
votes
2answers
630 views

is there no way to use mongodb on django 1.4 yet? [closed]

i'd like to use mongodb on django 1.4.. there is no nonrel for it yet.. the guilde is still for 1.3 http://django-mongodb.org/topics/setup.html is there any other way?!?! other tutorial or something?! ...
1
vote
1answer
167 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: ...
1
vote
0answers
73 views

What is the best way of implementing hierarchical models in django-nonrel with MongoDB engine?

Essentially I want to duplicate the functionality of the django-mptt module but in django-nonrel using the MongoDB engine. Does anything like this exist already? Edit: I know there are various ...
3
votes
1answer
121 views

Data gets corrupted on form send, =\r\n introduced in the data every 75 characters?

I'm working on a project in Django nonrel, on Google App Engine, though I have a feeling my problem has nothing to do with either of these directly . I have a hidden field in one of the models that ...
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 ...
0
votes
1answer
186 views

Django App Engine can't find antlr3 module

I'm trying to set up a Django app to run on GAE, and am using the on_production_server test to choose between dev vs. production settings in settings.py. However, when I run python manage.py ...
0
votes
1answer
101 views

Django Fixture Load on Google App Engine Very Slow

I've deployed a Django website using Google App Engine, and am using the command python manage.py remote loaddata my_data.yaml to populate the datastore with initial data from a fixture file in ...

1 2 3 4 5 6