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.
8
votes
3answers
439 views
Unit testing task queues in AppEngine
For a very long time now I've been using task queues on AppEngine to schedule tasks, just the way I'm supposed to.
But what I've always been wondering is how does one write tests for that? Until now ...
6
votes
2answers
217 views
Exception AttributeError message when using manage.py in django-nonrel for Google app engine
I'm using Python 2.7 and django-nonrel for running Django projects on Google app engine. I'm using version 1.6 of the Google app engine SDK. I run python manage.py syncdb or python manage.py deploy. ...
5
votes
2answers
255 views
Embedding Vs Linking in MongoDB.when to embed and when to link?
I read this page but didn't get when to use embedding feature and when to use linking.I have a project in django for which I am using MongoDB.In my models.py file I have following models:
class ...
5
votes
1answer
491 views
Programmatically login to google app engine c#
I've tried to login to my google app engine application from ASP.NET for a few days, but no luck. I've read the following articles and got the basic ideas. But nothing works for me.
...
5
votes
2answers
291 views
Recommendations with hierarchical data on non-relational databases?
I'm developing an web application that uses a non-relational database as a backend (django-nonrel + AppEngine).
I need to store some hierarchical data (projects/subproject_1/subproject_N/tasks), and ...
5
votes
2answers
650 views
Django-nonrel 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 ...
5
votes
3answers
715 views
Google app engine bulkloader problem when using yaml autogenerated configuration and enities with numeric ID
QUESTION
Please be kind I'm new to pytnon and appengine platform.
Application uses django-norel, and I dont have access to model (and really I'm not that python proficient to backtrace how models ...
4
votes
2answers
72 views
AppEngine: using Expando class in Django NonRel?
I have an app using using Django Nonrel on AppEngine.
I'd like to use a dynamic model similar to WebApp's db.Expando class - is this possible? Is the Expando class exposed to the DNR layer?
4
votes
2answers
109 views
Saving entities in django-nonrel with google appengine
Update: I've noticed that entities are saved (and available at the Datastore Viewer) when I save them using views (and the create_object function). But when I use shell (manage.py shell) to create and ...
4
votes
1answer
170 views
GZIP content in Google App Engine using django-nonrel
I have a django-nonrel app running in Google App Engine and am wanting all the content to be gzipped.
I keep reading that GAE automatically gzips the content but when I check the headers using ...
4
votes
1answer
758 views
Authentication on App Engine / Python / Django non-rel over JSON
I'm building a site on Google App Engine, running python and Django non-rel. Everything is working great for HTML and posting/reading data. But as I'm moving forward I'd like to do many of the updates ...
3
votes
2answers
251 views
django nonrel appengine problem with syncdb
I'm new to django, and still figuring out a lot of things.
When I run the syncdb command of manage.py, after some of the steps have been completed, I get this:
AttributeError: "'NoneType' object has ...
3
votes
0answers
167 views
Django non-rel - How to create forms with EmbeddedModelField in the model?
I have setup for Django non-rel with Mongodb as backend. In models, I used EmbeddedModelField for quite a few times as I love those concepts of Non relational DBs. But, when it comes to rendering ...
3
votes
1answer
246 views
Django admin site cannot connect to the database - using the wrong mongodb engine
I've had the admin site working for my django app before but now I just can't find out what is the problem.
On settings.py I have the mongodb database configuration:
DATABASES = {
'default': {
...
3
votes
2answers
247 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 ...
3
votes
2answers
432 views
Django-nonrel + Django-registration problem: unexpected keyword argument 'uidb36' when resetting password
I'm using Django-nonrel with registration app. Things seem to be working fine, except when I try to reset my password. When clicking on reset-password link sent to me in email, Django produces error ...
3
votes
3answers
1k views
Django-nonrel form field for ListField
I'm experimenting with django-nonrel on appengine and trying to use a djangotoolbox.fields.ListField to implement a many-to-many relation. As I read in the documentation a ListField is something that ...
3
votes
1answer
182 views
'ModelOptions' object has no attribute 'local_many_to_many'
I'm trying to migrate a Django project into GAE ( Google App Engine )
The problem is I found this error when trying to login:
'ModelOptions' object has no attribute 'local_many_to_many'
Line ...
3
votes
2answers
727 views
filter on foreign key property in django-nonrel
What's the best practice for filtering based on a foreign key's property in a non-relational database? I understand that the lack of join support makes things more complicated, and so I was wondering ...
2
votes
1answer
105 views
gae_mini_profiler {% profiler_includes %} gives Invalid block tag: 'profiler_includes'
I am attempting to install gae_mini_profiler in my django-nonrel app
I placed the {% profiler_includes %} tag at the bottom of my base.html
It results in a
Exception Type: TemplateSyntaxError
...
2
votes
1answer
141 views
Error in {% markdown %} and {% textile %} filters in Django Nonrel
I'm having trouble using Markdown in Django Nonrel. I followed this instructions (added 'django.contrib.markup' to INSTALLED_APPS, include {% load markup %} in the template and use ...
2
votes
1answer
102 views
How to empty Google App Engine's local database
Where do I go to delete everything in my local db?
I saw this: http://fourtyten.blogspot.com/2009/07/how-to-empty-google-app-engines-local.html
But my WEB-INF directory doesn't have a local_db.bin
...
2
votes
3answers
166 views
How to use static files with django nonrel
I'm trying to use the Django nonrel project for google app engine. I setup the test project as described here. I added a new folder to the project named "static" for my static files. And for the ...
2
votes
1answer
55 views
trouble getting started with Django nonrel and gae
I'm having a hard time getting started with Django nonrel and GAE. I've followed the instructions here: http://www.allbuttonspressed.com/projects/djangoappengine Which explain how to install Django ...
2
votes
2answers
214 views
Django (nonrel), App engine and asynchronous database calls
When using Google App Engine with Django-nonrel, is there any way to take advantage of the Async Datastore API when I declare my model classes with the Django API?
2
votes
2answers
100 views
django-nonrel on google app engine: Can PrimaryKey fields have a value of 0?
In trying to bulk load some legacy data from a django project that I've been converting from MS-Access to Google App Engine (via django-nonrel), I think I've hit a brick wall when trying to insert ...
2
votes
3answers
147 views
CPU Time needed to bulk upload 2 GB database?
I hired a programmer to port my web site -- originally implemented using Django and MySQL -- over to Google App Engine. The database for the original web app is about 2 GB in size, and the largest ...
2
votes
1answer
303 views
Using images uploaded to the blobstore using Django-nonrel and file-transfer application
I am building a blog site in Google App Engine, using django-nonrel and I need a way to store and display images in blog posts etc.
The idea is to have an upload application to upload images for ...
2
votes
1answer
134 views
Django-nonrel sorting by foreignkey
Is there a way of returning items from a database in django-nonrel, using 'order_by' on a foreignkey?
Full details are as follows:
#Models.py
class Post(models.Model):
article = ...
2
votes
1answer
123 views
How can I use query cursors in Django nonrel on Google App Engine Python?
How can I use a query cursor with Django-Nonrel? If there is no way currently, it would be appreciated to tell me where to look at in Django-Nonrel.
...
2
votes
2answers
267 views
How to get an entity's key when using django-nonrel on App Engine
I'm using django-nonrel (http://www.allbuttonspressed.com/projects/djangoappengine) on Google App Engine. I have my models etc. setup and everything works great. I had one question though. I want to ...
2
votes
1answer
194 views
Properly Securing GAE Task Queue URLs (without using app.yaml)
I want to secure my Task Queue URLs against malicious access.
In the views that the Task Queue requests I've got:
if not users.is_current_user_admin():
return HttpResponse(status=403)
But my ...
2
votes
1answer
310 views
How to make a custom query using django-nonrel and mongodb
Is there a recommended way to make a custom query to mongodb using django nonrel?
I have an entire site set up and running well, now I am just adding in some geospatial indexing and queries, and ...
2
votes
1answer
290 views
Django and GeoSpatial Queries on Google App Engine - How to overcome the 'one inequality per query' issue?
I've just began to use the GAE and I have stumbled upon an issue which has let me questioning the feasibility of using Django on GAE.
All I'm trying to do is a simple query with Django's ORM:
...
2
votes
1answer
386 views
Handle Form Failure when uploading to Appengine Blobstore
I'm using @wkornewald 's django-nonrel and django-filetransfer on Google App Engine.
I'm able to upload files just fine, but only when the entire form is valid. If the form fails validation for any ...
2
votes
1answer
216 views
Model inheritance in django-nonrel on app engine
On app engine's webapp framework, I can use a polymodel to create (for example) a Goal model, and then a number of child models representing different types of goals that have various sets of fields ...
2
votes
3answers
139 views
Which django apps are directly usable or easily adaptable for django-nonrel?
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?
2
votes
1answer
153 views
Authenticated but user.is_authenticated remains false
Creating simple app using GAE / Django-nonrel (I don't think the problem is specific to GAE or the nonrel fork, most likey PEBKAC as python/django noob and would occur on basic django installation).
...
2
votes
3answers
415 views
windows virtualenv using global packages
I have the latest versions of virtualenv,django-nonrel, djangotoolbox and django_mongodb_engine. The virtualenv was created with -no-site-packages.
I attempted to follow the quick start but I see ...
2
votes
1answer
238 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 ...
2
votes
1answer
864 views
django-nonrel on Google App Engine - Implications of using ListField for ManyToMany
I am working on a Google App Engine application and I am relatively new at this.
I have built an app already in Django and have a model using a field type of ManyToMany.
I am aware that ...
2
votes
1answer
1k views
Creating superuser in django-nonrel
I'm a newbie been going through the django-nonrel tutorials and have set up django-nonrel inside of Google App Engine.
I am now trying to create a superuser using:
manage.py createsuperuser ...
2
votes
3answers
711 views
Google App Engine's remote_api: Deleting all data in django nonrel
I'm using django non-rel (http://www.allbuttonspressed.com/projects/django-nonrel) and am trying to delete all the data in my production's datastore. I was reading the question posed here ...
2
votes
2answers
846 views
Django authentication in django nonrel on GAE
I'm using the Django nonrel project on a google app engine project running locally in development. I've created my own models and these are fine when they are saved and retrieved in the datastore.
...
2
votes
1answer
199 views
How can I automatically load fixtures into my development database but not my production database when using django-nonrel?
I'd like to load some test data into my development db but not put it into my production db.
In django you can create database-specific fixtures using this mechanism: ...
2
votes
3answers
258 views
django admin - adding fields on the fly
Basically I am writing a simple shopping cart. Each item can have multiple prices. (i.e. shirts where each size is priced differently). I would like to have a single price field in my admin panel, ...
1
vote
3answers
31 views
Using django-mongodb, how to sort descending a capped collection?
Have this model, a class representing a capped collection at mongodb:
class Event(models.Model):
objects = MongoDBManager()
create_at = models.DateTimeField(auto_now_add=True)
obj = ...
1
vote
0answers
30 views
Implementing an inline to represent a ListField in Django-nonrel
Is it possible to use something similar to the inline relational items from the Django admin to represent embedded models in a ListField?
For Example, I've got the following models:
class ...
1
vote
1answer
39 views
Django App Engine: AttributeError: 'AnonymousUser' object has no attribute 'backend'
I am using djangoappengine. When I try create a new user, authenticate that user, and log them in, I get the following error AttributeError: 'AnonymousUser' object has no attribute 'backend'.
My code ...
1
vote
1answer
40 views
Ordering middleware classes for Django-nonrel on GAE
Can anyone clarify how to order below middleware classes?
'mediagenerator.middleware.MediaMiddleware',
'autoload.middleware.AutoloadMiddleware',
'django.middleware.cache.UpdateCacheMiddleware',
...