active questions tagged django+google-app-engine - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T22:25:11Zhttp://stackoverflow.com/feeds/tag/django+google-app-enginehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1917595/having-trouble-importing-middleware-classes-in-app-engine-django0Having trouble importing middleware classes in App Engine / Djangoryan2009-12-16T20:48:56Z2009-12-16T21:24:27Z
<p>Trying to get facebook connect to work on app engine, and so I'm following these instructions:</p>
<p><a href="http://www.slideshare.net/mrtrosen/lab305-django-facebook-connect-integration-example" rel="nofollow">http://www.slideshare.net/mrtrosen/lab305-django-facebook-connect-integration-example</a></p>
<p>One of the steps requires me to add to my middleware_classes, and so I've added the following to settings.py (copied from slide 18 in the presentation above):</p>
<pre><code>MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'facebook.djangofb.FacebookMiddleware',
'django.middleware.common.CommonMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'facebookconnect.middleware.FacebookConnectMiddleware',
)
</code></pre>
<p>However, when I view my app locally (which was working before adding this to settings.py), I get the following error:</p>
<blockquote>
<p>ImproperlyConfigured: Error importing
middleware facebook.djangofb: "No
module named facebook.djangofb"</p>
</blockquote>
<p>However, when I go to the terminal, I am able to run python and when I type "import facebook.djangofb" I do not get any error. </p>
<p>FYI, the facebook package is in /Library/Python/2.6/site-packages.</p>
<p>Any ideas as to why this might be happening? I've been stuck on this for a while so any help would be greatly appreciated. </p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1914881/on-the-google-app-engine-why-does-my-import-statement-fail-on-live-but-work-o0On the google app engine, why does my 'import' statement fail on Live, but work on Dev(localmachine)?willem2009-12-16T14:11:38Z2009-12-16T15:52:51Z
<p>I have a python/django application that runs on the google app engine.</p>
<p>My views.py file has some imports...</p>
<pre><code>from commands.userCommands import RegisterUserCommand
from commands.accountCommands import CreateNewAccountCommand, RenameAccountCommand
</code></pre>
<p>These imports work fine on my development environment (local machine). But when I upload to the google app engine, views.py fails with a "Could not import views. Error was: No module named userCommands" error.</p>
<p>Any idea why I can't import my <em>commands.userCommands</em> module?</p>
<p>My file structure looks as follows...</p>
<pre><code>- app.yaml
- urls.py
- views.py
- etc...
- commands/__init__.py
- commands/userCommands.py
</code></pre>
<p><strong>Note</strong>: I did try to append my application name to the module name/path. No luck.</p>
<p><strong>Note</strong>: I did do an update with the --noisy argument, and it does appear to upload my commands folder successfully.</p>
http://stackoverflow.com/questions/1864081/wmd-preview-doesnt-match-output0WMD Preview Doesn't Match OutputChris2009-12-08T01:43:27Z2009-12-16T04:55:40Z
<p>I am using WMD in a google app situation whereby the site administrator can update the pages of the site and the users see the information. </p>
<p>The preview function is working fine and I can see the text the way I want it to appear, but when I am in the users section, the markdown is being returned without the formatting - how can i fix this?</p>
<p>This is the code i am using</p>
<pre><code>{% block content-left %}
{% if is_admin %}
<div id="content-bodyleft" class="wmd-preview"></div>
<form action="/admin/content/" method="post">
<textarea id="markdown" name="markdown" style="width: 400px; height: 200px;" >{{ page_content.html }}</textarea>
<input name="page" type="hidden" value="{{ request.path }}" />
<input type="submit" name="Save" />
</form>
<div class="wmd-output"></div>
<script type="text/javascript">
// to set WMD's options programatically, define a "wmd_options"
// object with whatever settings
// you want to override. Here are the defaults:
wmd_options = {
// format sent to the server. Use "Markdown" to return the markdown source.
output: "Markdown",
// line wrapping length for lists, blockquotes, etc.
lineLength: 40,
// toolbar buttons. Undo and redo get appended automatically.
buttons: "bold italic | link blockquote code image | ol ul heading hr",
// option to automatically add WMD to the first textarea found.
// See apiExample.html for usage.
autostart: true
};
</script>
<div class="wmd-output"></div>
<script type="text/javascript" src="/static/wmd/wmd.js"></script>
{% else %}
{{ page_content.html|markdown }}
{% endif %}
</code></pre>
http://stackoverflow.com/questions/1872120/why-cant-i-see-any-data-in-the-google-app-engine-development-console1Why can't I see any data in the Google App Engine *Development* Console?willem2009-12-09T07:07:29Z2009-12-14T07:53:27Z
<p>I run my google app engine application in one of two ways...</p>
<ol>
<li>Directly by using the application from <a href="http://localhost:8080" rel="nofollow">http://localhost:8080</a></li>
<li>Or execute unit tests from <a href="http://localhost:8080/test" rel="nofollow">http://localhost:8080/test</a></li>
</ol>
<p>When I create entities by using the application directly, the data is visible in the Development Console (dataStore view).</p>
<p>However, when I execute the unit tests... even if they <strong>succeed</strong> and I can put() and get() data, the data does not show in the dataStore view. Any idea why I can't see my data? Even though it is there? </p>
<p>Notes:</p>
<ul>
<li>I use GAEUnit for unit tests.</li>
<li>the data stored mostly consists of StringProperties().</li>
<li>I use Python and run Django on top of the GAE, don't know if that matters.</li>
</ul>
http://stackoverflow.com/questions/478760/what-cms-runs-on-google-app-engine9What CMS runs on Google App Engine?Jader Dias2009-01-26T03:08:05Z2009-12-12T13:48:09Z
<p>Is it possible to deploy any CMS (Content Management System) using Google App Engine? <a href="http://en.wikipedia.org/wiki/List%5Fof%5Fcontent%5Fmanagement%5Fsystems#Python" rel="nofollow">Wikipedia lists 4 Python CMSes</a> and <a href="http://en.wikipedia.org/wiki/PyLucid" rel="nofollow">one of them is Django based.</a></p>
<p>Do you know any way to make any of them to work on App Engine?</p>
<p>My votes: </p>
<p>Python</p>
<ul>
<li>GuteCMS (revision 11 10/28/2009) Too simple. Barely usable.</li>
<li>cpedialog (both 1.0 and 2.0 beta) Too simple. Has blog engine.</li>
<li>GaeDjangocms (1.1) Too simple.</li>
<li><a href="http://code.google.com/p/app-engine-site-creator/" rel="nofollow">App Engine Site Creator</a> (1.1.1) Simple, but professional. Lacks blog engine.</li>
<li>Nuages photoblog (revision 18) Too simple. Barely usable.</li>
<li><a href="http://code.google.com/p/niubi" rel="nofollow">Niubi</a> (revision 71) Promising, but couldn't make it work since it requires app engine helper for django</li>
<li><a href="http://github.com/leeolayvar/rocket-seat/" rel="nofollow">rocket</a>-<a href="http://code.google.com/p/rocketseat/" rel="nofollow">seat</a> needs mako, I couldn't make it work</li>
<li><a href="http://github.com/hober/stoutsd" rel="nofollow">stoutsd</a> not as customizable as I need.</li>
</ul>
<p>Java</p>
<ul>
<li><a href="http://code.google.com/p/vosao" rel="nofollow">vosaocms</a> (0.2) Sounds promising, but I couldn't run it as I am not familiarized with Java App Engine.</li>
</ul>
http://stackoverflow.com/questions/1885293/gae-using-properties-for-keys-in-modelchoiceproperty-boxes0GAE: Using properties for keys() in ModelChoiceProperty boxesPaul Biggar2009-12-11T01:31:49Z2009-12-12T13:06:27Z
<p>I have a model <code>User</code> which appears as a <code>ReferenceProperty</code> in another model, <code>Group</code>.</p>
<p>When I create a form for <code>Group</code>, using <code>Meta</code>, the form's values contain lots of generated strings. I'd like to stop this, and use the <code>username</code> field of <code>User</code> instead.</p>
<p>I already define a <code>key_name</code>. However, <code>str(user.key())</code> still gives a generated string. I could override <code>key()</code>, but that would be bad. Any thoughts? I want the Group form to use <code>username</code>s for the ModelChoiceProperty values, and the form to still validate and save. Currently the form prints the string value of <code>key()</code>, according to the source.</p>
http://stackoverflow.com/questions/1873704/gae-python-optimization-django-filter-for-language-support0gae python optimization: django filter for language supportfredrik2009-12-09T12:54:04Z2009-12-09T20:52:01Z
<p>Hi,</p>
<p>I have a filter that I use for lang support in my webapp. But when I publish it to gae it keeps telling me that it the usage of CPU is to high. </p>
<p>I think I located the problem to my filters I use for support. I use this in my templates:</p>
<pre><code><h1>{{ "collection.header"|translate:lang }}</h1>
</code></pre>
<p>The filter code looks like this:</p>
<pre><code>import re
from google.appengine.ext import webapp
from util import dictionary
register = webapp.template.create_template_register()
def translate(key, lang):
d = dictionary.GetDictionaryKey(lang, key)
if d == False:
return "no key for " + key
else:
return d.value
register.filter(translate)
</code></pre>
<p>I'm to new to pyhton to see what's wrong with it. Or is the the entire wrong approach?</p>
<p>..fredrik</p>
http://stackoverflow.com/questions/1242786/cant-get-current-user-for-ajax-requests-in-app-engine0Can't get current user for AJAX requests in App EngineDerek2009-08-07T03:43:48Z2009-12-09T04:00:02Z
<p>I'm using Django+Appengine on a page that has both a normal HTML request to get the page, and an AJAX request using jQuery. On normal requests, it loads the current user and session information just fine. However, for the AJAX requests, self.user isn't set and users.get_current_user() doesn't return anything.</p>
<p>Both handlers are on the same domain, and even in the same .py file. Using WING IDE to debug, the only difference between the two is that in the normal request, webob._parsed_cookies is set to the session id, and in the AJAX request it isn't set at all. Although, both show the same session id in request._environ.HTTP_COOKIE. </p>
<p>This makes me think something about it being an AJAX request rather than an HTML request is keeping GAE from knowing to load session information. Ideas?</p>
<p>Edit: Sorry this was my fault. I didn't realize I was using a custom user implementation of users to make it more like django rather than google users - and I had skipped a step that involved manually getting the session id out of the cookies and looking up the active user corresponding to that session id and setting it as the 'user' instance variable for the request. That is why the session id was in the request but the user object wasn't set.</p>
<ol>
<li>List item</li>
</ol>
http://stackoverflow.com/questions/1854821/google-app-engine-application-extremely-slow4Google App Engine Application Extremely slowDondon Vizcayno2009-12-06T08:58:43Z2009-12-08T03:23:49Z
<p>I created a Hello World website in Google App Engine. It is using Django 1.1 without any patch.</p>
<p>Even though it is just a very simple web page, it takes long time and often it times out.</p>
<p>Any suggestions to solve this?</p>
<p>Note: It is responding fast after the first call.</p>
http://stackoverflow.com/questions/1857576/what-are-the-corresponding-django-form-classes-rendered-by-default-for-each-googl0What are the corresponding Django form classes rendered by default for each Google App Engine data entity?Bialecki2009-12-07T03:03:55Z2009-12-07T14:16:40Z
<p>Django lays out the mapping of Django model data types to Django form widgets nicely <a href="http://docs.djangoproject.com/en/dev/topics/forms/modelforms/#field-types" rel="nofollow">here</a>, but I can't find a similar mapping for Google App Engine data types. For instance what does a <code>db.TextProperty()</code> map too and how would I know that?</p>
http://stackoverflow.com/questions/1738466/how-do-i-import-the-rendertoresponse-method-from-django-1-1-inside-of-google-ap1How do I import the render_to_response method from Django 1.1 inside of Google App Engine?Bialecki2009-11-15T19:04:37Z2009-12-07T03:07:03Z
<p>I'm a Python newbie, so I'm sure this is easy. Here's the code in my main.py:</p>
<pre><code>import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
from google.appengine.dist import use_library
use_library('django', '1.1')
# Use django form library.
from django import forms
from django.shortcuts import render_to_response
</code></pre>
<p>The last line breaks with an ImportError. If I don't include that, then I get an error that "render_to_response" isn't available. What am I doing wrong?</p>
http://stackoverflow.com/questions/1836864/app-engine-authentication-error0App Engine Authentication ErrorSuzy2009-12-03T00:21:49Z2009-12-04T11:08:17Z
<p>I have an app hosted by google app engine, and I am having trouble with authentication. </p>
<p>When I login using my admin account and try to access the admin page or members pages, I just get a blank screen. I can login, and the members only menu shows when I login, but I just can't see any data from the members pages. </p>
<p>I'm not really sure where I should start checking? My app is registered with my google apps account and I am using the only admin login that is there. </p>
<p>Any suggestions would be appreciated. </p>
http://stackoverflow.com/questions/1233326/could-not-import-django-settings-into-google-app-engine0Could not import Django settings into Google App Enginegkelsall2009-08-05T13:40:06Z2009-12-02T17:00:09Z
<p>Hello all you Google App Engine experts, </p>
<p>I have used Django a little before but am new to Google App Engine and
am trying to use it's development web server with Django for the first time. </p>
<p>I don't know if this is relevent but I previously had Django 1.1 and
Python 2.6 on my Windows XP and even though I have uninstalled Python
2.6 there is still a folder and entries in the registry.</p>
<p>I have followed the instructions from Google but when I browse to the GAE developemnt web server it cannot find my settings
(details below). </p>
<p>Any hints gratefully received.</p>
<p>Regards</p>
<p>Geoff </p>
<pre><code>C:\Documents and Settings\GeoffK\My Documents\ing\ingsite>echo %PATH%
C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS
\system32\WindowsPowerShell\v1.0;;C:\Python25;C:\Python25\Lib\site-
packages\django\bin;C:\Documents and Settings\GeoffK\My Documents\ing
\ingsite;C:\Program Files\Google\google_appengine\
C:\Documents and Settings\GeoffK\My Documents\ing\ingsite>echo
%PYTHONPATH%
C:\Documents and Settings\GeoffK\My Documents\ing\ingsite
C:\Documents and Settings\GeoffK\My Documents\ing\ingsite>C:\Documents
and Settings\GeoffK\My Documents\ing\ingsite>dev_appserver.py --
debug_imports ingiliz\
INFO 2009-08-04 07:29:45,328 appengine_rpc.py:157] Server:
appengine.google.
com
INFO 2009-08-04 07:29:45,358 appcfg.py:322] Checking for updates
to the SDK.
INFO 2009-08-04 07:29:45,578 appcfg.py:336] The SDK is up to date.
WARNING 2009-08-04 07:29:45,578 datastore_file_stub.py:404] Could not
read data
store data from c:\docume~1\geoffk\locals~1\temp
\dev_appserver.datastore
WARNING 2009-08-04 07:29:45,578 datastore_file_stub.py:404] Could not
read data
store data from c:\docume~1\geoffk\locals~1\temp
\dev_appserver.datastore.history
WARNING 2009-08-04 07:29:45,608 dev_appserver.py:3296] Could not
initialize ima
ges API; you are likely missing the Python "PIL" module. ImportError:
No module
named _imaging
INFO 2009-08-04 07:29:45,625 dev_appserver_main.py:465] Running
application
ingiliz on port 8080: http://localhost:8080
</code></pre>
<p>.....
Now attempting to browse
if need more detail here I can post
..... </p>
<pre><code> if not settings.DATABASE_ENGINE:
File "C:\Python25\lib\site-packages\django\conf\__init__.py", line
28, in __ge
tattr__
self._import_settings()
File "C:\Python25\lib\site-packages\django\conf\__init__.py", line
59, in _imp
ort_settings
self._target = Settings(settings_module)
File "C:\Python25\lib\site-packages\django\conf\__init__.py", line
94, in __in
it__
raise ImportError, "Could not import settings '%s' (Is it on
sys.path? Does
it have syntax errors?): %s" % (self.SETTINGS_MODULE, e)
ImportError: Could not import settings 'settings' (Is it on sys.path?
Does it ha
ve syntax errors?): No module named settings
INFO 2009-08-04 07:31:02,187 dev_appserver.py:2982] "GET / HTTP/
1.1" 500 -
</code></pre>
http://stackoverflow.com/questions/1264844/app-engine-patch-how-do-iget-django-system-error-messages-in-foreign-languages0app-engine patch - how do Iget Django system error messages in foreign languages?gkelsall2009-08-12T08:01:09Z2009-12-02T09:00:03Z
<p>Bonjour, Guten Morgen, Merhaba etc etc</p>
<p>Has anyone used foreign languages with app-engine-patch?
I am on version 1.1</p>
<p>In settings.py I have:
.......</p>
<h1>Enable I18N and set default language</h1>
<p>USE_I18N = True
LANGUAGE_CODE = 'tr'</p>
<h1>Restrict supported languages (and JS media generation)</h1>
<p>LANGUAGES = (
('tr', 'Turkish'),
('en', 'English'),
)</p>
<p>TEMPLATE_CONTEXT_PROCESSORS = (
'django.core.context_processors.auth',
'django.core.context_processors.media',
'django.core.context_processors.request',
'django.core.context_processors.i18n',
)</p>
<p>MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.locale.LocaleMiddleware',
'ragendja.middleware.ErrorMiddleware',
etc...
and I can see several folders on my Windows XP development box with names like:
....\conf\locale\tr\LC_MESSAGES</p>
<p>but the error messages are still coming out in English.</p>
<p>Maybe I should contact the author of app-engine-patch to check localization is supported? But first can anyone see anything I may have done wrong or forgotten to do?</p>
<p>Regards</p>
<p>Geoff</p>
http://stackoverflow.com/questions/1643838/django-tagging-migration-to-gae0Django tagging migration to GAEDmitry Demidenko2009-10-29T13:44:08Z2009-12-01T19:00:04Z
<p>I have a Django app that use a django-tagging. I need to port this application to GAE. So, the main problem is to migrate tagging part. It has a complicated model, that should be rewritten to work with Google store. I think tagging is very popular django app and someone has the same problem before. Has someone a rewritten model?</p>
http://stackoverflow.com/questions/1818896/django-app-with-app-engine-on-windows0django app with app engine on windows alexarsh2009-11-30T10:02:46Z2009-11-30T15:57:37Z
<p>I'm trying to install app engine with django 1.1 on windows.</p>
<p>When launching the app engine I'm getting the following error: <a href="http://slexy.org/view/s21oLrbkHh" rel="nofollow">http://slexy.org/view/s21oLrbkHh</a></p>
<p>The steps I do are:
1.) Create new app via launcher
2.) Copy my code (Which is empty django project)</p>
<p>My main.py code is attached below.
I'm falling on line: "import django.db" which I can do successfully from cmd.</p>
<p>Do you have an idea? </p>
<p>main.py:</p>
<pre><code>\# main.py
import os, sys
os.environ["DJANGO\_SETTINGS\_MODULE"] = "taskhood.settings"
sys.path.append("/home/brox/tmp/mashname")
\# Google App Engine imports.
from google.appengine.ext.webapp import util
\# Django version
from google.appengine.dist import use_library
use_library('django', '1.1')
\# Force Django to reload its settings.
from django.conf import settings
settings._target = None
import django.core.handlers.wsgi
import django.core.signals
import django.db
import django.dispatch.dispatcher
def log_exception(*args, **kwds):
logging.exception('Exception in request:')
\# Log errors.
django.dispatch.Signal.connect(
django.core.signals.got_request_exception,
log_exception)
\# Unregister the rollback event handler.
django.dispatch.Signal.disconnect(
django.core.signals.got_request_exception,
django.db._rollback_on_exception)
def main():
# Create a Django application for WSGI.
application = django.core.handlers.wsgi.WSGIHandler()
# Run the WSGI CGI handler with that application.
util.run_wsgi_app(application)
if __name__ == "__main__":
main()
</code></pre>
http://stackoverflow.com/questions/1785637/gae-image-posting-to-datastore-through-django-form0GAE Image Posting to Datastore through Django Formmlapida2009-11-23T20:12:43Z2009-11-30T09:14:17Z
<p>I'm working on a little side project that involves posting an avatar to a users profile page, seems straight forward enough. I'm following the instructions from the "<a href="http://code.google.com/appengine/docs/python/images/usingimages.html" rel="nofollow">Using the Images Python API</a>" on the GAE web site. </p>
<p>The sample they provide doesn't seem to work with Django though. Searching around here, I found a thread with a similar issue, but said the resolution came from using a newer version of Django with GAE. I'm trying to avoid this work around, and get it running with the build in API. I am new to both Python and Django, but from what I can gather, the image isn't properly being posted to the function that transforms the image and sends it to the Datastore. Here is my code:</p>
<pre><code>def post(self):
contacts = Contact()
if users.get_current_user():
contacts.owner = users.get_current_user()
else:
self.redirect('/')
contacts.fname = self.request.get('fname')
contacts.lname = self.request.get('lname')
contacts.pnum = self.request.get('pnum')
img = self.request.FILES['file'].read()
img.resize(32,32)
contacts.avatar = db.Blob(images.resize(img,32,32))
contacts.put()
self.redirect('/')
</code></pre>
<p>All the other fields are added correctly, except the avatar field. The modified request string comes from the previously stated thread that contained a fix. When attempting to access the avatar, and this gets kind of odd, the page displays a broken image, rather than the default image I setup. This leads me to believe that, although the field is null or missing, there is still something there to draw a unique key when requesting it. Here is the display image function:</p>
<pre><code>class Image (webapp.RequestHandler):
def get(self):
contacts = db.get(self.request.get("img_id"))
if contacts.avatar:
image = contacts.avatar
self.response.headers['Content-Type'] = "image/png"
self.response.out.write(HttpResponseRedirect(contacts.avatar))
else:
self.response.out.wrute(HttpResponseRedirect("/static/image_not_found.gif"))
</code></pre>
<p>I've tried a number of different variations when trying to get this working as well, so please trust that I did, initially, use the block of code from the instructions.</p>
<p>Any help is greatly appreciated.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1812238/manage-py-syncdb-on-windows-for-google-app-engine-patch-does-not-work0manage.py syncdb on windows for Google App Engine Patch does not workdhaval2009-11-28T10:56:52Z2009-11-29T15:52:31Z
<p>I have installed Google App Engine patch and I get the following error when I want to sync the DB </p>
<p>Command on command prompt on windows </p>
<pre><code>manage.py syncdb
The Google App Engine SDK could not be found!Visit http://code.google.com/p/app-engine- patch/ for installation instructions.
</code></pre>
<p>I have installed win32api too and it still recurs. appcfg.py and dev_appserver.py works normally.</p>
<p>EDIT </p>
<p>Added and removed following paths from PATH </p>
<pre><code>F:\Program Files\Google\google_appengine\google
F:\Program Files\Google\google_appengine\lib
</code></pre>
<p>EDIT
The following hack has made it working but I hope there is a better way </p>
<pre><code>SDK_PATH = "F:\Program Files\Google\google_appengine"
</code></pre>
<p>in
aecmd.py in common\appenginepatch</p>
http://stackoverflow.com/questions/770854/django-custom-template-tags-in-google-app-engine2Django Custom Template Tags In Google App EngineTimLeung2009-04-21T02:39:47Z2009-11-28T12:36:51Z
<p>I am trying to include the following Tag In Google App Engine Web Application:</p>
<p><a href="http://www.djangosnippets.org/snippets/1357/" rel="nofollow">http://www.djangosnippets.org/snippets/1357/</a></p>
<p>Is there any configuration of this file to make it work with Google App Engine?</p>
<p>Cause I followed the Django Template tutorials: <a href="http://docs.djangoproject.com/en/dev/howto/custom-template-tags/" rel="nofollow">http://docs.djangoproject.com/en/dev/howto/custom-template-tags/</a></p>
<p>and have this structure:</p>
<pre><code>templatetags/
__init__.py
range_template.py
</code></pre>
<p>in the Template file, I have {%load range_template%}</p>
<p>But I am getting the error:</p>
<p>TemplateSyntaxError: 'range_template' is not a valid tag library: Could not load template library from django.templatetags.range_template, No module named range_template</p>
<p>The other thing that might be a problem why this ain't working is, the INSTALL_APPS settings.py file. Not sure how to configure it.</p>
<p>I have a settings.py file in the root of my application and included this:</p>
<p>INSTALLED_APPS = ('templatetags')</p>
<p>Any advice would be greatly appreciated.</p>
http://stackoverflow.com/questions/1807545/app-engine-model-filtering-with-django1App Engine model filtering with Djangonashr rafeeg2009-11-27T08:58:53Z2009-11-27T10:18:37Z
<p>hi i am using django app engine patch i have set up a simple model as follows</p>
<pre><code>class Intake(db.Model):
intake=db.StringProperty(multiline=False, required=True)
#@permerlink
def get_absolute_url(self):
return "/timekeeper/%s/" % self.intake
class Meta:
db_table = "Intake"
verbose_name_plural = "Intakes"
ordering = ['intake']
</code></pre>
<p>i am using the following views to check if some thing exist in data base and add to database</p>
<pre><code>from ragendja.template import render_to_response
from django.http import HttpResponse, Http404
from google.appengine.ext import db
from timekeeper.forms import *
from timekeeper.models import *
def checkintake(request, key):
intake = Intake.all().filter('intake=',key).count()
if intake<1:
return HttpResponse('ok')
else:
return HttpResponse('Exist in database')
def addintake(request,key):
if Intake.all().filter('intake=',key).count()>1:
return HttpResponse('Item already Exist in Database')
else:
data = Intake(intake=cleaned_data[key])
data.put()
return HttpResponse('Ok')
</code></pre>
<p>i can add to database with no problem (when i do a <code>Intake.all().count()</code> it increases) but when i check if the key exist in the database by filtering i am getting a count of zero any one have any idea why i am not able to filter by keys ?</p>
http://stackoverflow.com/questions/1801165/django-template-url-function-not-matching-in-app0django template url function not matching in appBen Collins2009-11-26T01:55:51Z2009-11-26T22:45:34Z
<p>I have a django project set up with an app called pub. I'm trying to set it up so that I can include urls.py from each app (there will be more as I go) in the top-level urls.py. I've also got a template that uses the 'url' function to resolve a url on a view, defined in the openidgae module. The problem is that after the httprequest is routed to pub.views.index (like it's supposed to), I try to respond by rendering a template that uses the template 'url' function. The code I'm showing below is also here: <a href="http://gist.github.com/243158" rel="nofollow">http://gist.github.com/243158</a></p>
<p>Here's my top-level urls.py:</p>
<pre><code>from django.conf.urls.defaults import *
urlpatterns = patterns('',
(r'', include('openidgae.urls')),
(r'^pub', include('pub.urls')),
)
</code></pre>
<p>and pub/urls.py:</p>
<pre><code>from django.conf.urls.defaults import *
urlpatterns = patterns('',
(r'', 'pub.views.index'),
(r'^/$', 'pub.views.index'),
)
</code></pre>
<p>and templates/base.html:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>{% block title %}My amazing site{% endblock %}</title>
</head>
<body>
<div id="header">
{% if lip %}
Welcome {{ lip.pretty_openid }}
<a href="{% url openidgae.views.LogoutSubmit %}">logout</a>
{% else %}
<form id="login-form" action="{% url openidgae.views.OpenIDStartSubmit %}?continue={{continueUrl}}" method="post">
<input type="text" name="openid_identifier" id="openid_identifier" />
<input type="submit" value="Verify" />
</form>
<!-- BEGIN ID SELECTOR -->
<script type="text/javascript" id="__openidselector" src="https://www.idselector.com/selector/46b0e6d0c8ba5c8617f6f5b970865604c9f87da5" charset="utf-8"></script>
<!-- END ID SELECTOR -->
{% endif %}
</div>
{% block content %}{% endblock %}
</body>
</html>
</code></pre>
<p>and templates/pub/index.html:</p>
<pre><code>{% extends "base.html" %}
{% block title %}blahblah!{% endblock %}
{% block content %}
blahblahblah
{% endblock %}
</code></pre>
<p>and finally, pub/views.py:</p>
<pre><code>from django.shortcuts import render_to_response
from django.http import HttpResponse
from django import forms
import openidgae
def index(request):
lip = openidgae.get_current_person(request, HttpResponse())
resp = render_to_response('pub/index.html', {'lip': lip})
return resp
</code></pre>
<p>Now, if i set the second pattern in my top-level urls.py to point directly to 'pub.views.index', all works like it should, but not if I use the include function.</p>
<p>Any ideas? I'm sure the problem has something to do with the urlpattern that would map the views I'm trying to resolve to urls not being available to the template rendering functions when the HttpRequest is handled by the pub app rather than by the top-level, but I don't understand why or how to fix it. </p>
http://stackoverflow.com/questions/1687530/sorl-thumbnail-thumbnail-is-not-a-valid-tag-library0sorl.thumbnail : 'thumbnail' is not a valid tag library ?j3ll32009-11-06T13:15:21Z2009-11-25T12:14:17Z
<p>I am trying to install sorl.thumbnail but am getting the following error message:</p>
<p>'thumbnail' is not a valid tag library: Could not load template library from django.templatetags.thumbnail, No module named PIL</p>
<p>This error popped up in this question as well<br>
<a href="http://stackoverflow.com/questions/1356334/need-help-solving-sorl-thumbnail-error-thumbnail-is-not-a-valid-tag-library">http://stackoverflow.com/questions/1356334/need-help-solving-sorl-thumbnail-error-thumbnail-is-not-a-valid-tag-library</a><br>
but the solution offered there is no good for me. The solution was to append the project folder to all imports in the sorl files. I want to keep my apps separate from the project they are in for obvious reasons.</p>
<p>I have placed the sorl folder in my project folder<br>
I have placed 'sorl.thumbnaills' under installed apps<br>
and finally placed {% load thumbnail %} in base.html </p>
<pre><code>$python2.5
>>>import PIL
>>>import sorl
</code></pre>
<p>These work.</p>
<p>Using python2.5, on ubuntu 9.04 with django 1.1 with appengine-patch</p>
<p>To try some other things out i placed in settings.py file:</p>
<pre><code>import sys
sys.path.append("/home/danielle/bu3/mysite/sorl/thumbnail")
</code></pre>
<p>But that didnt work either.
Some more help would be appreciated ... how should i change my path?</p>
<p>current path (without above mentioned import):
['/home/danielle/bu3/mysite', '/home/danielle/bu3/mysite/common', '/home/danielle/bu3/mysite/common/appenginepatch/appenginepatcher/lib', '/home/danielle/bu3/mysite/common/zip-packages/django-1.1.zip', '/home/danielle/bu3/mysite/common/appenginepatch', '/usr/local/google_appengine', '/usr/local/google_appengine/lib/antlr3', '/usr/local/google_appengine/lib/yaml/lib', '/usr/local/google_appengine/lib/django', '/usr/local/google_appengine/lib/webob', '/home/danielle/bu3/mysite', '/usr/lib/python2.5/site-packages/setuptools-0.6c9-py2.5.egg', '/usr/lib/python2.5/site-packages/ZopeSkel-2.10-py2.5.egg', '/usr/lib/python2.5/site-packages/virtualenv-1.3.2-py2.5.egg', '/usr/lib/python2.5/site-packages/pip-0.3.1-py2.5.egg', '/usr/lib/python2.5/site-packages/virtualenvwrapper-1.12-py2.5.egg', '/usr/lib/python2.5/site-packages/PyYAML-3.08-py2.5-linux-i686.egg', '/usr/lib/python2.5/site-packages/xlutils-1.3.0-py2.5.egg', '/usr/lib/python2.5/site-packages/errorhandler-1.0.0-py2.5.egg', '/usr/lib/python2.5/site-packages/xlwt-0.7.1-py2.5.egg', '/usr/lib/python2.5/site-packages/xlrd-0.7.0-py2.5.egg', '/usr/lib/python2.5/site-packages/Fabric-0.0.9-py2.5.egg', '/usr/lib/python2.5/site-packages/multitask-0.2.0-py2.5.egg', '/usr/lib/python2.5/site-packages/logilab.pylintinstaller-0.15.2-py2.5.egg', '/usr/lib/python2.5/site-packages/pylint-0.15.2-py2.5.egg', '/usr/lib/python2.5/site-packages/clonedigger-1.0.9_beta-py2.5.egg', '/usr/lib/python2.5/site-packages/yolk-0.4.1-py2.5.egg', '/usr/lib/python2.5/site-packages/MySQL_python-1.2.3c1-py2.5-linux-i686.egg', '/usr/lib/python2.5', '/usr/lib/python2.5/plat-linux2', '/usr/lib/python2.5/lib-tk', '/usr/lib/python2.5/lib-dynload', '/usr/local/lib/python2.5/site-packages', '/usr/lib/python2.5/site-packages', '/usr/lib/python2.5/site-packages/Numeric', '/usr/lib/python2.5/site-packages/PIL', '/usr/lib/python2.5/site-packages/gst-0.10', '/var/lib/python-support/python2.5', '/usr/lib/python2.5/site-packages/gtk-2.0', '/var/lib/python-support/python2.5/gtk-2.0', '/usr/lib/python2.5/site-packages/wx-2.8-gtk2-unicode']</p>
http://stackoverflow.com/questions/1788245/django-unprintable-templatesyntaxerror-object-caused-by-urlconf0django unprintable templatesyntaxerror object caused by urlconf?Ben Collins2009-11-24T06:33:25Z2009-11-25T09:12:02Z
<p>I'm trying to get a django project set up, and I seem to be having trouble with my urlconf. I'm not sure what the deal is, and the error below isn't entirely helpful to me. I don't think it really has anything to do with template rendering, actually, because I stepped through the execution path until just before the render_to_response function completes (which is where the urlconf seems to be causing an error) and the template objects are parsed correctly.</p>
<pre><code>Traceback (most recent call last):
File "C:\Program Files\Google\google_appengine\google\appengine\tools\dev_appserver.py", line 2978, in _HandleRequest
base_env_dict=env_dict)
File "C:\Program Files\Google\google_appengine\google\appengine\tools\dev_appserver.py", line 411, in Dispatch
base_env_dict=base_env_dict)
File "C:\Program Files\Google\google_appengine\google\appengine\tools\dev_appserver.py", line 2244, in Dispatch
self._module_dict)
File "C:\Program Files\Google\google_appengine\google\appengine\tools\dev_appserver.py", line 2162, in ExecuteCGI
reset_modules = exec_script(handler_path, cgi_path, hook)
File "C:\Program Files\Google\google_appengine\google\appengine\tools\dev_appserver.py", line 2058, in ExecuteOrImportScript
exec module_code in script_module.__dict__
File "C:\Users\Ben\Development\workspace\ringbot\src\main.py", line 52, in <module>
main()
File "C:\Users\Ben\Development\workspace\ringbot\src\main.py", line 49, in main
util.run_wsgi_app(application)
File "C:\Program Files\Google\google_appengine\google\appengine\ext\webapp\util.py", line 97, in run_wsgi_app
run_bare_wsgi_app(add_wsgi_middleware(application))
File "C:\Program Files\Google\google_appengine\google\appengine\ext\webapp\util.py", line 115, in run_bare_wsgi_app
result = application(env, _start_response)
File "C:\Python25\lib\site-packages\django\core\handlers\wsgi.py", line 241, in __call__
response = self.get_response(request)
File "C:\Python25\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
return self.handle_uncaught_exception(request, resolver, exc_info)
File "C:\Python25\lib\site-packages\django\core\handlers\base.py", line 154, in handle_uncaught_exception
return debug.technical_500_response(request, *exc_info)
File "C:\Python25\lib\site-packages\django\views\debug.py", line 40, in technical_500_response
html = reporter.get_traceback_html()
File "C:\Python25\lib\site-packages\django\views\debug.py", line 114, in get_traceback_html
return t.render(c)
File "C:\Python25\lib\site-packages\django\template\__init__.py", line 178, in render
return self.nodelist.render(context)
File "C:\Python25\lib\site-packages\django\template\__init__.py", line 779, in render
bits.append(self.render_node(node, context))
File "C:\Python25\lib\site-packages\django\template\debug.py", line 81, in render_node
raise wrapped
TemplateSyntaxError: <unprintable TemplateSyntaxError object>
</code></pre>
<p>Here is my top-level urlconf:</p>
<pre><code>from django.conf.urls.defaults import *
urlpatterns = patterns('',
(r'', include('pub.urls')),
)
</code></pre>
<p>And pub.urls:</p>
<pre><code>from django.conf.urls.defaults import *
import pub
urlpatterns = patterns('pub.views',
(r'^$', 'index')
)
</code></pre>
<p>and pub.views.index:</p>
<pre><code># Create your views here.
from django.shortcuts import render_to_response
from django.http import HttpResponse
import openidgae
# this needs to be moved somewhere else, but for now it can live here
def index(request):
lip = openidgae.get_current_person(request, HttpResponse())
resp = render_to_response('pub/index.html', {'lip': lip}) # exception thrown here
return resp
</code></pre>
http://stackoverflow.com/questions/1784076/how-do-i-unit-test-django-views-on-the-google-app-engine1How do I unit test Django views on the Google App Engine?willem2009-11-23T15:59:07Z2009-11-23T16:40:23Z
<p>I am struggling to run unit tests using the Django <em>Client</em> class on the Google App Engine. I downloaded GAEUnit (v2.0a for Django) and I am trying to use that as my testing framework (maybe I should rather be using something else?)</p>
<p>I copy all the GAEUnit files into my project root as instructed, and I modify my app.yaml file. Currently app.yaml looks as follows:</p>
<pre><code>application: myapp
version: 1
runtime: python
api_version: 1
handlers:
- url: /static
static_dir: static
- url: /.*
script: django_bootstrap.py
- url: /test.*
script: gaeunit.py
</code></pre>
<p>I also modified settings.py to add gaeunit as an application... (snippet from settings.py)</p>
<pre><code>INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.contenttypes',
'gaeunit',
)
</code></pre>
<p>My unit test class resides in the 'test' folder and looks as follows (very simple):</p>
<pre><code>import unittest
class Test(unittest.TestCase):
def testName(self):
self.assertTrue(False)
if __name__ == "__main__":
#import sys;sys.argv = ['', 'Test.testName']
unittest.main()
</code></pre>
<p>However, when I try to run my application by navigating to <a href="http://localhost:8080" rel="nofollow">http://localhost:8080</a>, it fails with the following error:</p>
<pre><code>ViewDoesNotExist at /
Could not import gaeunit.gaeunit. Error was: No module named gaeunit
</code></pre>
<p>gaeunit.py does definitely exist in the folder. What am I doing wrong?</p>
http://stackoverflow.com/questions/1783717/in-django-on-google-app-engine-should-i-call-main-py-when-running-unit-tests1In Django (on Google App Engine), should I call main.py when running Unit Tests?willem2009-11-23T15:10:58Z2009-11-23T15:10:58Z
<p>I have a Django application on the Google App Engine, and I would like to start writing unit tests. But I am not sure how to set-up my tests.</p>
<p>When I run my tests, I get the following error:</p>
<pre><code>EnvironmentError: Environment variable DJANGO_SETTINGS_MODULE is undefined.
ERROR: Module: tests could not be imported.
</code></pre>
<p>This seems pretty straight forward - my django settings have not been initialized. Setup of th django environment on Google App Engine happens in main.py (specified in app.yaml), but this does obviously <em>not</em> get called for unit tests. Should my unit tests start by calling main() in main.py? I am not sure.</p>
http://stackoverflow.com/questions/722463/is-google-app-engine-better-than-webfaction-for-a-beginner-in-django-dev2Is Google App Engine better than Webfaction for a beginner in Django dev?Masi2009-04-06T17:41:33Z2009-11-21T20:26:05Z
<p>I am a beginner in developing websites by Django.
I run small discussion websites similar to SO.</p>
<p>I have an account at Bluehost which has been a nightmare in developing by Django.
I have found that Webfaction and Google App Engine seems to be the best choices for Django.</p>
<p>However, I am not sure which one is the best for me.</p>
<p><strong>Is Google App Engine better than Webfaction in running small websites?</strong></p>
http://stackoverflow.com/questions/523841/django-pydev-eclipse-google-app-engine-possible7Django + Pydev/Eclipse + Google App Engine - possible?Lee Tang2009-02-07T14:26:03Z2009-11-19T00:30:48Z
<p>Has anyone been able to get Google App Engine/Django working in Pydev/Eclipse? I tried this but had difficulty getting Pydev to recognize all of the externally linked folders (django plugins) that I was referencing. I ended up copying all of those folders into the project en masse, rather than referencing them, resulting in a massively bloated project folder - it was really an unworkable solution that eventually made me give up the whole project. So, I'm wondering if anyone has tried this or has any idea what I might have been doing wrong. (Keep in mind this was my first attempt at using Pydev, Django, App Engine and Python!!)</p>
http://stackoverflow.com/questions/819490/gae-django-app-engine-patch-or-django-gae-helpers4GAE + Django. app-engine-patch or django-gae-helpers?suda2009-05-04T09:44:12Z2009-11-18T22:11:07Z
<p>I'm building app using GAE and wanted to use Django for that. Which "patch" is better? app-engine-patch or django-gae-helpers? I mean functionality and future of them (will one of them die soon).</p>
http://stackoverflow.com/questions/1611614/ecommerce-with-django-in-google-app-engine1Ecommerce with django in google app enginepdx2009-10-23T06:00:59Z2009-11-18T15:44:33Z
<p>Is there any module available for googlecheckout/paypal in django on google app engine? are there any example apps which are doing this? </p>
http://stackoverflow.com/questions/1453909/is-it-possible-to-use-django-piston-on-google-appengine2Is it possible to use django Piston on Google AppEngine?Eran Kampf2009-09-21T10:44:35Z2009-11-18T15:40:55Z
<p>I haven't been able to do so due to all sort of missing dependencies (mainly, I think the problem is in the authentication code which relies on django stuff that is not available on AppEngine)</p>
<p>I was wondering if anyone patched\forked piston to get it working on AppEngine?</p>