Questions tagged [djangoappengine]

djangoappengine is a pluggable Django app that allows you to use App Engine's datastore with Django.

djangoappengine is a pluggable Django app that allows you to use App Engine's datastore with Django.

It provides the necessary plumbing to query the datastore, and custom management commands for deploying and running the SDK.

97 questions
1
vote
1 answer

How do I allow clients to create dynamic databases and connections as a multitenant database setup with Django on Appengine?

Our current set up has Django hosted on Google's appengine with a MySQL database on Google's Cloud SQL. The users (clients) are typically small businesses who we give a subdomain to for a multi-tenant database structure (1 database for each…
AndyHsiung
  • 43
  • 6
1
vote
1 answer

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 djangoappengine.db.utils which make it easy to navigate forward as…
1
vote
1 answer

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 3000. Possible operations on the list are…
1
vote
2 answers

Trying Django tutorial with djangoappengine

I was trying to implement the poll app tutorial of Django using djangoappengine. Steps I took: 1)Copied the test-app in workspace folder. 2)Copied django-toolbox, dbindexer, django, djangoappengine, autoload, as directed on website…
Ashish
  • 131
  • 9
1
vote
2 answers

app engine datastore auto-clears every time project runs

Every time I run my project (eith dev_appserver.py myapp or manage.py runserver in django), the datastore will be cleared. I have persisted the data by model.put() or model.save() in django. In the current session, I can see the data in the admin…
sfdye
  • 296
  • 2
  • 5
1
vote
4 answers

can't Access Google APP Engine SDK

It prompts me: The Google App Engine SDK could not be found! Make sure it's accessible via your PATH environment and called google_appengine when I run python manage.py runserver But It worked for my first time i run it. I put it on my PATH…
wllbll
  • 531
  • 5
  • 11
1
vote
0 answers

Django isn't consistently logging... view caching?

I am running Python2.7, djangoappengine and AppEngine 1.6.5 My problem is that my logging.debug() messages aren't being consistently printed to the output. I've stripped my code back to a really simple homepage view def home(request): …
SimonMorris
  • 127
  • 1
  • 10
0
votes
2 answers

appengine improperly configured database error when trying to send mail (using django_bootstrap)

I am using django_bootstrap.py there are similar errors but i could not find solution to it. I am using django helper(please do not suggest non-rel) What i was trying to do was, inside a static html js website attaching a feature of sending mail,…
user993563
  • 18,601
  • 10
  • 42
  • 55
0
votes
3 answers

DjangoAppEngine and Eventual Consistency Problems on the High Replication Datastore

I am using djangoappengine and I think have run into some problems with the way it handles eventual consistency on the high application datastore. First, entity groups are not even implemented in djangoappengine. Second, I think that when you do a…
0
votes
2 answers

python appengine memcache optimization

I am developing an api on google appengine django nonrel that will serve a lot of requests. I would like to cache repeated requests. It is estimated that there will be some really frequent queries to the api, and I would like to be able to find out…
endre
  • 1,363
  • 1
  • 11
  • 22
0
votes
2 answers

Deploying DjangoAppEngine to the High Replication Datastore

I just setup the DjangoAppEngine testapp following the project's instructions. All went well locally, and I could access the testapp's home page by running python manage.py runserver. However, when I attempt to deploy by running python manage.py…
Cerin
  • 60,957
  • 96
  • 316
  • 522
0
votes
3 answers

Django on appegine and tutorial

I am new to Django and Appengine. I found that Django 1.2 version is supported by Google Appengine. Does it mean that Django 1.2 comes with the installation of Google Appengine SDK? Or should we install djangoappengine Any pointers, experiences and…
18bytes
  • 5,951
  • 7
  • 42
  • 69
0
votes
3 answers

djangoappengine User Creation and Data Persistence is Broken

I recently updated to appengine SDK 1.6 and I'm having trouble with persisting data on my dev environment. I have everything setup according to the official installation guide. Even though I had a super user account setup for my app previously, it…
Jeff LaFay
  • 12,882
  • 13
  • 71
  • 101
0
votes
1 answer

Read jQuery-posted data in Python App Engine

Suppose I have performed an AJAX call with jQuery in the following fashion: key = 'boo' $.ajax({ type: 'GET', async: true, url: '/output', data: JSON.stringify({'location':key}), success: function(data) { } }); I have a route in my…
Chris Bunch
  • 87,773
  • 37
  • 126
  • 127
0
votes
1 answer

Differences between Django on AppEngine and Django on my Linux Server?

I am a Django beginner, and I want to make this tutorial as exercise: http://www.joeyb.org/blog/2009/05/28/django-based-blog-on-google-app-engine-tutorial-part-1 The thing is that this tutorial is for AppEngine, but I want to do the tutorial in my…
André
  • 24,706
  • 43
  • 121
  • 178