0
votes
0answers
16 views

Server side only multiplayer turn based game engine [closed]

I'm developing a turn-based game for 2-4 players with very small amount of needed client and server side requests/respones. Basic requests for clients would be: a) ...
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 = ...
0
votes
0answers
18 views

appengine, limit connection to cloudsql

I found out use django + cloudsql in a heavily used google app engine app (used 10-30 instances all the time) may cause some problems. The application itself is based on webapp2, I only used Django ...
0
votes
2answers
54 views

Django model Meta option unique_together for appengine

I have an app on appengine that stores some data fields entered by user. I want to prevent redundant entries, i.e. if all fields are same, data should not be entered in database. (Optional) If ...
1
vote
1answer
32 views

Password Input in django form hosted on google app engine not working

I am using django form for google app engine. My Django form code : class ChangePasswordForm(forms.Form): password = forms.PasswordInput() confirmPassword = forms.PasswordInput() test = ...
0
votes
1answer
30 views

django app engine multiple domains, multiple settings files

I'm new to Google App Engine and am trying to port my Django application to use that. I haven't been able to find too much on this and don't think multitenancy is what I'm looking for (seems to be for ...
0
votes
1answer
43 views

Django's FileField (or ImageField) on Google App Engine

GAE doesn't allow read/write to file system, which is what Django's FileField (or ImageField) is using (via the FileSystemStorage class). I was thinking implementing a custom Django storage, but the ...
3
votes
1answer
94 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 ...
0
votes
1answer
60 views

design django/PostgreSQL for application serving 9,000,000 pages / day [closed]

I am considering using django / PostgreSQL for an application with the following characteristics : 9,000,000 pages / day. Most pages contain a lot of images 230,000 visitors / day. Only about 30% ...
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
54 views

More Blobstore upload woes with standard Django

I'm implementing an image upload feature for my Django app (plain Django 1.4 , NOT the non-rel version) running on Google App Engine. The uploaded image is wrapped in a Django model which allows the ...
0
votes
0answers
24 views

Post referenceproperty items that are used in get later

I am trying to use referenceproperty items in a post function that will generate based upon somebody typing in their unique identifier.This post function below is attempting to create a shift, get the ...
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
78 views

Getting Google App Engine blob info in Django view

This is a follow up question for Django on Google App Engine: cannot upload images I got part of the upload of images to GAE Blobstore working. Here's what I did: In models.py I created a model ...
0
votes
1answer
56 views

Django on Google App Engine: cannot upload images

I'm trying to implement an ImageField for a model in my Django app. The app runs on Google App Engine. However upon upload (local machine, using GAE SDK 1.7.7) I get an [Errno 78] Function not ...
1
vote
0answers
43 views

Unable to access Google Cloud SQL instance in dev_appserver with Django

I recently updated my GAE SDK and soon after the update, it has started acting up. I am using Google Cloud SQL in backend with Django 1.4.3. On my local dev server, it gives the following error : ...
0
votes
2answers
80 views

How can I send e-mail from django using the google smtp server?

I'm looking at https://docs.djangoproject.com/en/dev/topics/email/ My question is, is there way I can use smtp.google.com without authentication or without having to put my auth information into ...
0
votes
1answer
40 views

How to create internationalized google app engine

I am new to google app engine, I want to create a google app engine application. I am following this blog. I am trying it with step by step. I am stuck with its 2nd step, where I have created conf ...
0
votes
1answer
47 views

location of settings.py for django project hosted in Google App Engine

I've problems running the simplest django project within GAE. After running django-admin startproject myproj (Using django 1.4 from Google SDK), the folder hierarchy look as: + myproj (root folder ...
0
votes
1answer
28 views

List like parameter in django template. Is it possible?

Is there any possibility to send a list or a tuple like a parameter to this function: self.response.out.write(template.render(self.path, sendingList)) i'm new to this and i heard that you can send ...
0
votes
2answers
40 views

Google App Engine w/ Django wont render 960GS

I'm trying to create a website using GAE(Google App Engine) as the server and Having pages rendered using the GAE Django API. The CSS style I'd like to use is the 960 Grid System, specifically the ...
2
votes
2answers
51 views

database id number very big in GAE Launcher?

I'm since las update of GAE Launcher, it creates ID on datastore too big. Like 5330010158992982016, thats a problem to me, because on Javascript these numbers are rounded. For example, on JS > a ...
1
vote
1answer
129 views

django.utils module import error in appengine 1.7.6

I just updated to 1.7.6 appengine and started getting ImportError for django.utils, my app is using python 2.5 and had no issues running before this update. Any idea if this was removed in the ...
0
votes
0answers
56 views

Problems getting Django to authenticate to Google Cloud SQL

I'm trying to set up a Django site on Google App Engine and Cloud SQL, as described in their documentation.. I've created the Cloud SQL instance, and the database within it. I got an oauth token, but ...
0
votes
1answer
48 views

How can i internationalize Django HTML Templates using App Engine with python?

I am writing a web site http://www.perlesloyfer.no that will use country = self.request.headers.get('X-AppEngine-Country') to determine if its a norwegian visitor or one from another language. The ...
3
votes
1answer
115 views

Deploy Django project on Google App Engine

I have developed one example project in django1.4 & python 2.7, I want to deploy it on google app engine, but how to configure my project as per App Engine we didn't get. We have a site running ...
1
vote
1answer
48 views

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 ...
0
votes
2answers
82 views

Setting up djangoappengine

I'm trying to setup djangoappengine. I've cloned the code from git / bitbucket per here (following a number of links from Google), copied over django-testapp and renamed it for my own application. ...
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 ...
5
votes
3answers
276 views

how to render django template from code instead of file

I am writing a Google App Engine webapp that renders some html to a Django template. I want to either render the template using either a file or just some json thats very similar to that in file. Is ...
0
votes
0answers
18 views

Can Django modelforms be implemented for Python 2.7 App Engine runtime?

Based on Guido's answer to this question, it seems Django modelforms are not supported in the Python 2.7 App Engine runtime. Is there a specific limitation that prevents this functionality from being ...
2
votes
2answers
144 views

Reportlab Not Generating Charts in a Django App on Google App Engine

I have a django app running on google app engine. One function of the app is to produce charts based on data given to it while using the app. I used reportlab to produce the charts, and this worked ...
0
votes
1answer
109 views

NDB Query with Computed Property returns a blank list

I'm trying to query an ndb Model with a computed property, but it's returning an empty list. This answer suggests that I should be able to query computed properties and so do the docs. What am I doing ...
0
votes
1answer
120 views

InterfaceError unknown type <class 'decimal.Decimal'> for arg 10

I'm trying to fetch some data from my database., this works perfect on my local machine. But when deployed on Google App Engine it gives me an error InterfaceError at ...
0
votes
1answer
73 views

Django + GAE + Google Cloud SQL authentication issue in Windows

I've followed all steps required to configure Django with GAE + Google Cloud SQL (on Windows 7) but I am unable to authenticate (OAuth2) and run syncdb remotely. When I run manage.py syncdb the ...
0
votes
0answers
43 views

Load different admin model view from action

I have tableA, and a tableB which have been defined and registered with Django admin: class tableA_admin(admin.ModelAdmin): model=tableA actions=[myAction] class ...
0
votes
2answers
81 views

Struggling with imports on Google App Engine

I'm struggling with imports on Google App Engine. I have a Django/Python project with the following (standard) setup: [myproject] | -[myproject] | --[app1] | --[app2] The second [myproject] ...
0
votes
1answer
28 views

djangoappengine email not arriving

I am building a Django app for Google App engine with djangoappengine and I tried several configurations to send email but is not working, currently I have the following setting.py enter code here ...
0
votes
1answer
65 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 ...
1
vote
1answer
69 views

How i18n translation works in Django/GAE - strange behavior for Polish?

I was wrote program with use Django 1.3/Google App Engine and find lack of support and strange behavior. Prapration - Polish translation (could be important) First of all the ungettext not support ...
1
vote
1answer
44 views

What is equivalent of Android i18n plural in django which support zero, one, two, few, many, other?

http://developer.android.com/guide/topics/resources/string-resource.html I was found function in django but it not support other languages than English and similar - how to deal with it? def ...
2
votes
2answers
104 views

is there shortcut method called insert_or_update in AppEngine (or perhaps in Django)? Why not?

I think I'm doing it wrongly otherwise people might already created this function (insert_or_update). Get the object, if it doesn't exists create that, otherwise update the current objects. Here's the ...
0
votes
2answers
101 views

Send email on GAE using Django module (django.core.mail)

Before the migration of my app to GAE, I was using the following code to send emails and it worked pretty good: from django.core.mail import send_mail subject = 'Hello!' msg = '\n \n Hello World!' ...
1
vote
2answers
168 views

Setting up Django on Google App Engine for DataStore

How do I setup Django on Google App Engine to use DataStore? I did a bunch of searches and some seemed to point to something called django-nonrel. But I couldn't find anything that looked like a ...
0
votes
1answer
87 views

Localizing Google App Engine application with i18n and compilemessage command

I have an app in Google App Engine. I'm using Python 2.7 with Django 1.4. My app.yaml: application: myapp version: 1 runtime: python27 api_version: 1 threadsafe: true libraries: - name: django ...
0
votes
0answers
42 views

Works on dev_appserver. Fails when I deploy to Google App Engine with <type 'exceptions.AttributeError'>: 'module' object has no attribute 'BlogPost'

My applicaiton works fine on the Google App Engine development server, but when I deploy I get the following error message. You are using the default Django version (0.96). The default Django version ...
0
votes
0answers
27 views

Using html templates with the django project uploaded on GAE

I'm trying to show a html template with my django project uploaded on GAE. I have the following code in one of the functions that I have on my views.py: from django.shortcuts import ...
0
votes
1answer
30 views

Django on APP Engine - error redirecting a URL path to an existing function in views.py (on urls.py)

I'm getting an error when I try to redirect a URL path to an existing function inside of a views.py file. I realize where the problem is, but I cannot figure out how to solve it. I have the ...
1
vote
1answer
92 views

Django on GAE - name 'url' is not defined

I've just uploaded my django web app to GAE, but I'm getting an error when I compile it with "dev_appserver.py": Exception Type: NameError Exception Value: name 'url' is not defined Here my ...

1 2 3 4 5 19