active questions tagged google-app-engine - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T04:40:29Zhttp://stackoverflow.com/feeds/tag/google-app-enginehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1890228/continuous-integration-and-app-engine1Continuous Integration and App EngineTiggerizzy2009-12-11T19:09:13Z2009-12-16T03:09:15Z
<p>Are there any Continuous Integration tools that will run on Google App Engine? </p>
http://stackoverflow.com/questions/1910886/how-should-i-deal-with-a-circular-import-in-google-app-engine1How should I deal with a circular import in Google App Engine?Stephen Cagle2009-12-15T22:29:35Z2009-12-16T00:19:53Z
<p>If I have "a.py"</p>
<pre><code>from google.appengine.ext import db
class A(db.Model):
db.ReferenceProperty(b.B)
...other stuff
</code></pre>
<p>and another file "b.py"</p>
<pre><code>from google.appengine.ext import db
class B(db.Model):
db.ReferenceProperty(a.A)
...other stuff
</code></pre>
<p>It would appear that Python simply does not allow circular dependencies. Normally I guess you would alter the code such that the two classes actually can resolve themselves without importing one another directly. Perhaps by consolidating their reference to one another through a third intermediary? But I can't just use a normal intermediary class, as all classes would ultimately need to be persisted to the database? Is there any correct solution to structuring the above code such that it works? </p>
<p>I have a feeling that I am going to get a lot of "bad smelling code", "decouple", "bad design", etc comments. So I ask that if you say that, please illustrate what you would do with an actual example. Are there any solutions that would involve leaving the references, classes, and modules as they stand?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1910215/how-to-make-a-property-nullable-in-jpa-gae-j1How to make a property nullable in JPA - GAE/J?Tahir Akram2009-12-15T20:36:37Z2009-12-15T20:36:37Z
<p>I have a entity class User. I want to add some more properties but to keep them nullable. I want to know the annotation used for this in JPA. I am using JPA in Google App Engine.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1238101/delete-record-from-google-app-engine-table0Delete record from Google App Engine tableHab2009-08-06T10:28:40Z2009-12-15T20:16:09Z
<p>I have done this in python file, but my records don delete from DB. My DB is at Google App engine. There will be only one record against this query. Any solution?</p>
<pre><code>deleteContact = db.GqlQuery("SELECT * FROM FriendList WHERE myNum = :1 AND friendNum = :2", myId,friendId)
results = deleteContact.fetch(1)
for result in results:
db.delete(result)
</code></pre>
http://stackoverflow.com/questions/1909688/invalid-authsub-token-in-google-sites-for-apps0Invalid Authsub token in Google sites for apps dhaval2009-12-15T19:15:31Z2009-12-15T19:15:31Z
<p>I do not get any error while trying to access feed content for google sites from application hosted on gmail authenticated account. But I get </p>
<pre><code>Token invalid - Invalid AuthSub token.
</code></pre>
<p>when I try to access application from google apps accounts managed GAE application.</p>
<p>I have tried both <a href="https://sites.google.com/feeds/" rel="nofollow">https://sites.google.com/feeds/</a> and <a href="http://sites.google.com/feeds/" rel="nofollow">http://sites.google.com/feeds/</a></p>
<p>I have also noticed that when Authsub prompts for grants access the address is taken as domain name address of site something like extra.mydomain.com whereas when page is loaded it is redirected to Google sites address <a href="https://sites.google.com/a/mydomain.com/pagename" rel="nofollow">https://sites.google.com/a/mydomain.com/pagename</a></p>
<p>The windows client is able to access the feed of same site whereas the web app is not getting through.</p>
<p>Stack trace</p>
<blockquote>
<p>at com.google.gdata.client.http.HttpGDataRequest.handleErrorResponse(HttpGDataRequest.java:564)
at com.google.gdata.client.http.GoogleGDataRequest.handleErrorResponse(GoogleGDataRequest.java:543)
at com.google.gdata.client.http.HttpGDataRequest.checkResponse(HttpGDataRequest.java:536)
at com.google.gdata.client.http.HttpGDataRequest.execute(HttpGDataRequest.java:515)
at com.google.gdata.client.http.GoogleGDataRequest.execute(GoogleGDataRequest.java:515)
at com.google.gdata.client.Service.getFeed(Service.java:1053)
at com.google.gdata.client.Service.getFeed(Service.java:916)
at com.google.gdata.client.GoogleService.getFeed(GoogleService.java:631)
at com.google.gdata.client.Service.getFeed(Service.java:935)
at morefile.UploadApp.getFileCabinets(UploadApp.java:92)
at morefile.CopyOfUploadApp.doPost(CopyOfUploadApp.java:196)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:713)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)</p>
</blockquote>
http://stackoverflow.com/questions/1907187/app-engine-templates1App engine templatestm1rbrt2009-12-15T12:44:00Z2009-12-15T18:01:03Z
<p>In app engine there a way to use templates a bit more like php/javascript(document.write)?</p>
<p>for instance i would rather do:</p>
<pre><code><html>
<python>
print "Hello world"
</python>
</html>
</code></pre>
<p>rather than all the {IF } {ELSE } django stuff.</p>
http://stackoverflow.com/questions/1900029/google-app-engine-sendmail-command-not-found0Google App Engine: Sendmail, command not foundfredrik2009-12-14T10:06:55Z2009-12-15T17:29:37Z
<p>Hi,</p>
<p>I'm trying to get sendmail working on localhost. The problem is that the app engine has det wrong path to sendmail, since it throws the error: /bin/sh: sendmail: command not found</p>
<p>Using Mac OS X, the path to sendmail is: /usr/sbin/sendmail</p>
<p>Does anyone know how to change this?</p>
<p>..fredrik</p>
http://stackoverflow.com/questions/1902944/benchmarks-for-various-google-app-engine-datastore-operations0Benchmarks for various Google App Engine Datastore operations?Peter2009-12-14T19:28:05Z2009-12-15T17:18:33Z
<p>A recent <a href="http://stackoverflow.com/questions/1892325/simple-db-query-on-google-app-engine-taking-a-lot-of-cpu-time">question</a> regarding the datastore and how long a query should run got me thinking - has anyone compiled a nice set of benchmarks that would demonstrate what "typical" results should be for datastore performance? I know that every entity kind will have different performance characteristics, but it would be great to be able to see times for a few representative types of entities, so we know if we're doing something wrong (for example, if we see that our query is taking much longer than the benchmark, we might know to check for non lazily fetched relationships, or to verify that we are using the api properly to batch fetch things.)</p>
http://stackoverflow.com/questions/1908104/improve-code-test-for-key-in-dict-and-store-in-datastore0Improve code: test for key in dict and store in datastorenico2009-12-15T15:12:41Z2009-12-15T17:13:50Z
<p>Hey, I'm fairly new to python I have this piece of code which stores the birth info to the datastore in Google App Engine. The code works but is it the correct way to do it? Is there a simpler way to do it, to make sure that the key exists before storing it in datastore?</p>
<pre><code>def store_birthinfo(self, user, birthday):
"""
Store birthinfo
"""
name = ''
date = ''
place = ''
country = ''
for key in birthday.keys():
if key == 'name':
name = birthday['name']
elif key == 'date':
date = birthday['date']
elif key == 'place':
place = birthday['place']
elif key == 'country':
country = birthday['country']
birthinfo = BirthInfo(user = user,
date = date,
place = place,
country = country)
birthinfo.put()
</code></pre>
http://stackoverflow.com/questions/1902079/python-mechanize-gaepython-code0Python Mechanize + GAEpython codeportoalet2009-12-14T16:52:38Z2009-12-15T16:54:04Z
<p>Hi,</p>
<p>I am aware of previous questions regarding mechanize + Google App Engine,
xttp://stackoverflow.com/questions/1563165/what-pure-python-library-should-i-use-to-scrape-a-website
and
xttp://stackoverflow.com/questions/1389893/mechanize-and-google-app-engine</p>
<p>Also there is some code here
<a href="http://powertwenty.com/kpd/blog/index.php/python/using%5Fmechanize%5Fwith%5Fthe%5Fgoogle%5Fapp%5Fengine" rel="nofollow">http://powertwenty.com/kpd/blog/index.php/python/using%5Fmechanize%5Fwith%5Fthe%5Fgoogle%5Fapp%5Fengine</a>, which I cannot get to work on app engine, throwing </p>
<pre><code>File “D:\data\eclipse-php\testpy4\src\mechanize\_http.py”, line 43, in
socket._fileobject(”fake socket”, close=True)
File “C:\Program Files (x86)\Google\google_appengine\google\appengine\dist\socket.py”, line 42, in _fileobject
fp.fileno = lambda: None
AttributeError: ’str’ object has no attribute ‘fileno’
INFO 2009-12-14 09:37:50,405 dev_appserver.py:3178] “GET / HTTP/1.1″ 500 -
</code></pre>
<p>Is anybody willing to share their working mechanize+appengine code?</p>
<p>Many thanks</p>
http://stackoverflow.com/questions/1907338/how-to-design-an-extensible-cms-for-google-app-engine0How to design an extensible CMS for Google App Engine?Jader Dias2009-12-15T13:09:22Z2009-12-15T13:13:42Z
<p>I am a fan of the extensibility of the CMSes. You can upload some code (usually PHP), authorize it from the CMS admin panel and it's running.</p>
<p>I wonder if it is possible in Google App Engine. I haven't checked the extensibility of existing CMSes for Google App Engine, but if there is any of them that supports plugins I would like to know how they did it, and whether they are JS plugins only, or if they support Python/Java plugins too.</p>
http://stackoverflow.com/questions/935762/how-to-dynamically-build-jdo-queries-on-multiple-parameters0How to dynamically build JDO Queries on multiple parametersJohnIdol2009-06-01T17:07:13Z2009-12-15T12:52:33Z
<p>One can easily use JDO syntax to query on multiple parameters as follows:</p>
<pre><code>//specify the persistent entity you're querying and you filter usign params
query = pm.newQuery(MyClass.class, " customer == paramCustomer && date >= paramStartDate && date <=paramEndDate ");
// declare params used above
query.declareParameters("com.google.appengine.api.users.User paramCustomer, java.util.Date paramStartDate, java.util.Date paramEndDate");
//pass the object declared as params
MyClassList = (List<MyClass>) query.execute(user, startDate, endDate);
</code></pre>
<p>It's straightforward to programmatically build a string with the filter:</p>
<pre><code>"customer == paramCustomer && date >= paramStartDate && date <=paramEndDate"
</code></pre>
<p>and another strign with the params declaration:</p>
<pre><code>"com.google.appengine.api.users.User paramCustomer, java.util.Date paramStartDate, java.util.Date paramEndDate"
</code></pre>
<p>What's not immediate is to come up with a strategy for executing the query depending on which params are in the filter (and have been declared), so you end up with a number of really ugly and ad-hoc cascading if-else statements with all the possible permutations of the query execution (all the params, only the first, only the second, first and second etc...):</p>
<pre><code>MyClassList = (List<MyClass>) query.execute(user, startDate, endDate);
</code></pre>
<p>I am sure this is a common task and someone else is doing it in a more general and efficient way.</p>
<p>Any suggestion? </p>
http://stackoverflow.com/questions/1903065/is-google-app-engine-right-for-me4Is Google App Engine right for me?Steve2009-12-14T19:51:01Z2009-12-15T08:58:41Z
<p>Hi,
I am thinking about using Google App Engine.It is going to be a huge website. In that case, what is your piece of advice using Google App Engine. I heard GAE has restrictions like we cannot store images or files more than 1MB limit(they are going to change this from what I read in the GAE roadmap),query is limited to 1000 results, and I am also going to se web2py with GAE. So I would like to know your comments. </p>
<p>Thanks</p>
http://stackoverflow.com/questions/870150/how-to-access-static-resources-when-using-default-servlet0How to access static resources when using default servletRahul Garg2009-05-15T18:23:39Z2009-12-15T08:24:10Z
<p>Hi
i have a problem i want to send all my request to one spring servlet </p>
<pre><code><servlet>
<servlet-name>home</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>home</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
</code></pre>
<p>but this mapping stops the access to static files like images etc
i have put them all in /res/....... folder</p>
<p>please help me how can i make this work i am using this on google app engine.</p>
http://stackoverflow.com/questions/1901701/how-to-check-for-an-http-status-code-of-4010How to check for an HTTP status code of 401?brilliant2009-12-14T15:51:08Z2009-12-15T04:46:38Z
<p><a href="http://stackoverflow.com/questions/1899259/how-can-i-pass-my-id-and-my-password-to-a-website-in-python-using-google-app-engi">In one of the answers that I have received here</a>, I encountered a problem of not knowing how to pass automatically through "Google App Engines" my ID and a password to a website, on which I am a registered user and have an account. A suggestion was given to me to "check for an HTTP status code of 401, "authorization required", and provide the kind of HTTP authorization (basic, digest, whatever) that the site is asking for". I don't know how to check for status code. Can anyone, please, tell me how to do it? </p>
<p>+++++++++++++++++++++++++++++++++</p>
<p>Additional Information:</p>
<p>If I use this way in Google App Engine (fetching the url of my eBay summary page):</p>
<pre><code>from google.appengine.api import urlfetch
url = "http://my.ebay.com/ws/eBayISAPI.dll?MyEbay&gbh=1&CurrentPage=MyeBaySummary&ssPageName=STRK:ME:LNLK"
result = urlfetch.fetch(url)
if result.status_code == 200:
print "content-type: text/plain"
print
print result.status_code
</code></pre>
<p>I always get "200" instead of "401"</p>
http://stackoverflow.com/questions/1747198/google-wave-python-tutorial-what-next1Google Wave Python Tutorial - What next?Casebash2009-11-17T07:37:08Z2009-12-14T22:16:56Z
<p>I just finished working through Google's <a href="http://code.google.com/apis/wave/extensions/robots/python-tutorial.html" rel="nofollow">Wave Robot: Python Tutorial</a>. The <a href="http://wave-robot-python-client.googlecode.com/svn/trunk/pydocs/index.html" rel="nofollow">API Reference</a> looks a bit imposing. Is there anything else I can look at to get up to speed?</p>
http://stackoverflow.com/questions/1902893/is-bigtable-object-oriented-database0Is BigTable object oriented database?Tahir Akram2009-12-14T19:15:47Z2009-12-14T19:30:27Z
<p>I want to know that the distributed database system Bigtable is object oriented?</p>
http://stackoverflow.com/questions/1899843/is-there-a-nosql-store-that-also-allows-for-relationships-between-stored-entities1Is there a nosql store that also allows for relationships between stored entities?Ritesh M Nayak2009-12-14T09:18:54Z2009-12-14T18:51:18Z
<p>I am looking for nosql key value stores that also provide for storing/maintaining relationships between stored entities. I know Google App Engine's datastore allows for owned and unowned relationships between entities. Does any of the popular nosql store's provide something similar? </p>
<p>Even though most of them are schema less, are there methods to appropriate relationships onto a key value store? </p>
http://stackoverflow.com/questions/1900175/gaehow-to-set-inline-if-in-template0[GAE]How to set `inline` if in templatesilent2009-12-14T10:44:59Z2009-12-14T12:55:14Z
<p>Hi,</p>
<p>Coming from PHP world, I used to create select box like this:</p>
<pre><code><select>
<?php foreach($arrField as $idx=>$val){?>
<option <?php echo ($fieldVal == $idx ? "selected='selected'" : ''); ?>><?php echo $val; ?></option>
<?php } ?>
</select>
</code></pre>
<p>However, I can't do that in python. Here's my snippet:</p>
<pre><code><select name='type'>
<option value='normal' {% if id = 'normal' %} selected="selected"{% endif %}>1-Normal</option>
<option value='image' {% if id = 'image' %} selected="selected"{% endif %}>2-Image</option>
</select>
</code></pre>
<p>I got this error:</p>
<pre><code>TemplateSyntaxError: 'if' statement improperly formatted
</code></pre>
<p>Is there a way to do this?</p>
http://stackoverflow.com/questions/1389893/mechanize-and-google-app-engine0Mechanize and Google App EngineImmortal2009-09-07T15:30:49Z2009-12-14T09:48:36Z
<p>Has someone managed to use <a href="http://wwwsearch.sourceforge.net/mechanize/" rel="nofollow">mechanize</a> with Google App Engine application?</p>
http://stackoverflow.com/questions/1899259/how-can-i-pass-my-id-and-my-password-to-a-website-in-python-using-google-app-engi1How can I pass my ID and my password to a website in Python using Google App Engine?brilliant2009-12-14T06:31:26Z2009-12-14T08:46:07Z
<p>Here is a piece of code that I use to fetch a web page HTML source (code) by its URL using Google App Engine:</p>
<pre><code>from google.appengine.api import urlfetch
url = "http://www.google.com/"
result = urlfetch.fetch(url)
if result.status_code == 200:
print "content-type: text/plain"
print
print result.content
</code></pre>
<p>Everything is fine here, but sometimes I need to get an HTML source of a page from a site where I am registered and can only get an access to that page if I firstly pass my ID and password. (It can be any site, actually, like any mail-account-providing site like Yahoo: <a href="https://login.yahoo.com/config/mail?.src=ym&.intl=us" rel="nofollow">https://login.yahoo.com/config/mail?.src=ym&.intl=us</a> or any other site where users get free accounts by firstly getting registered there).
Can I somehow do it in Python (trough "Google App Engine")?</p>
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/1892325/simple-db-query-on-google-app-engine-taking-a-lot-of-cpu-time0Simple DB query on Google App Engine taking a lot of CPU time.donut2009-12-12T04:46:27Z2009-12-14T05:21:11Z
<p>I'm fairly new to Google App Engine and Python, but I did just release my first real-world site with it. But now I'm getting problems with one path that is using significantly more CPU (and API CPU) time than the other paths. I've narrowed it down to a single datastore fetch that's causing the problem: <code>Carvings.all().fetch(1000)</code></p>
<p>Under the App Engine dashboard it's reporting "1040cpu_ms 846api_cpu_ms" pretty reliably for each request to that path. It has seemed like this may be the source to some unresponsiveness that my client has experienced with the site in general.</p>
<p>So I can't figure out what is so expensive about this query. Here is the related data model:</p>
<pre><code>class Carving(db.Model):
title = db.StringProperty(required=True)
reference_number = db.StringProperty()
main_category = db.StringProperty()
sub_category = db.StringProperty()
image = db.ReferenceProperty(CarvingImage)
description = db.TextProperty()
price = db.FloatProperty()
size = db.StringProperty()
material = db.StringProperty()
added_at = db.DateTimeProperty(auto_now_add=True)
modified_at = db.DateTimeProperty(auto_now=True)
</code></pre>
<p>In other places in the app when I pull this model from the datastore I do more filtering and I guess that's why they aren't causing any troubles. But the total number of entities for this model is just above 90 and I just can't imagine why this is so expensive.</p>
http://stackoverflow.com/questions/1185653/is-eclipse-galileo-compatible-to-google-plugin-for-eclipse0Is Eclipse Galileo compatible to Google Plugin for Eclipse?Thanks2009-07-26T21:50:36Z2009-12-14T05:08:03Z
<p>They don't seem to mention which Eclipse Version must be used...</p>
http://stackoverflow.com/questions/1185604/which-eclipse-version-should-i-use-for-google-gwt-and-google-app-engine-developme1Which Eclipse version should I use for Google GWT and Google App Engine development?Thanks2009-07-26T21:30:17Z2009-12-14T05:07:42Z
<p>Ganymede, probably. But there are so many different ones. Any idea?</p>
http://stackoverflow.com/questions/1894279/is-there-anything-wrong-with-this-google-app-engine-url-fetching-code-that-i-have0Is there anything wrong with this Google App Engine url-fetching code that I have here?brilliant2009-12-12T18:22:37Z2009-12-14T02:29:09Z
<p>When I view the source of the page in my browser (FireFox) (View->Page Source), copy it and paste it into my HTML editor, I view almost the same page (In this example it is www.google.com) as it appears in my browser. But when I get the HTML source through this code (through Googles App Engines)</p>
<pre><code>from google.appengine.api import urlfetch
url = "http://www.google.com/"
result = urlfetch.fetch(url)
if result.status_code == 200:
print result.content
</code></pre>
<p>copy it and paste it into my HTML editor, the page then looks quite different. Why is it so? Is there something wrong with the code? </p>
<p>++++++++++++++++++++++++++++++</p>
<p>Follow-up:</p>
<p>By this moment (Sunday, December 13th, 2009, 1:01 PM, GMT, to be precise) I have received two comments-questions (from <strong>Aaron</strong> and <strong>Christian P.</strong>) and one answer from <strong>Alex Martelli</strong>.</p>
<p>Both <strong>Aaron</strong> and <strong>Christian P.</strong> are asking about what actually is different between the Fire-Fox-obtained source and Google-App-Engine-obtained source when they are both displayed through the same HTML editor. </p>
<p>Here I have uploaded too screen shots:</p>
<p><a href="http://roundcan.narod.ru/HTML%5Fsource%5Ffrom%5FFire%5FFox.jpg" rel="nofollow">One shows the Fire-Fox-obtained source</a></p>
<p>And <a href="http://roundcan.narod.ru/HTML%5Fsource%5Ffrom%5FGoogle%5FApp%5FEngine.jpg" rel="nofollow">the other one shows Google-App-Engine-obtained source</a></p>
<p>when they are both displayed through “MS Front Page” editor. </p>
<p>One difference, which is quite obvious, is different encoding: In Fire-Fox code everything is displayed in English, while in the Google-App-Engine code I get a lot of various symbols, instead.</p>
<p>Another difference is some additional lines at the top of the page in the Google App Engine code. I think, this is what <strong>Alex Martelli</strong> was talking about in his answer (“…the fetch-and-print approach is going to have metadata around it as well…”).</p>
<p>One more minor difference is that the box for the Google image is split into several boxes in one code, while it remains whole in the other one.</p>
<p><strong>Alex Martelli</strong> suggested that I use this code (if I understood him correctly):</p>
<pre><code>from google.appengine.api import urlfetch
url = "http://www.google.com/"
result = urlfetch.fetch(url)
if result.status_code == 200:
print "content-type: text/plain"
print
</code></pre>
<p>I’ve tried it, but in this case nothing is displayed at all.</p>
<p>Thank you all for your responses and, please, continue responding – I really want to see this issue finally resolved.</p>
<p>++++++++++++++++++++++++++++++</p>
<p>Follow-up:</p>
<p>Okay, the issue has been resolved. </p>
<p>I failed to pay my full attention to <strong>Alex Martelli</strong>'s instructions and, therefore, came up with a wrong code. Here is he right one:</p>
<pre><code>from google.appengine.api import urlfetch
url = "http://www.google.com/"
result = urlfetch.fetch(url)
if result.status_code == 200:
print "content-type: text/plain"
print
print result.content
</code></pre>
<p>This code displays exactly what is needed - no additional lines at the top of the page.</p>
<p>Well, I still get the strange symbols, but I discovered that it's probably Google's problem. The thing is I am currently in Taiwan, and Google seems to be aware of that and automatically switches from www.google.com (which is in English) to www.google.com.tw (which is in Chinese), but this one, I guess, is already another topic.</p>
<p>Thanks to everyone who has responded here.</p>
http://stackoverflow.com/questions/1499832/python-webapp-google-app-engine-testing-for-user-pass-in-the-headers3Python/WebApp Google App Engine - testing for user/pass in the headers NealWalters2009-09-30T18:20:00Z2009-12-13T20:44:41Z
<p>When you call a web service like this:</p>
<pre><code> username = 'test12'
password = 'test34'
client = httplib2.Http(".cache")
client.add_credentials(username,password)
URL = "http://localhost:8080/wyWebServiceTest"
response, content = client.request(URL)
</code></pre>
<p>How do you get the username/password into variables on the server side (i.e. in the web-service that I'm writing).
I checked the self.request.headers and self.request.environ and couldn't find them. </p>
<p>(I'm not using Google Login, need to bounce this userid/pass against my own database to verify security.) </p>
<p>I was trying to ideas from this page: <a href="http://pythonpaste.org/webob/reference.html#headers" rel="nofollow">http://pythonpaste.org/webob/reference.html#headers</a> </p>
<p>Thanks,</p>
<p>Neal Walters </p>
<p>Slight enhancement to Peter's code below: </p>
<pre><code> auth = None
if 'Authorization' in self.request.headers:
auth = self.request.headers['Authorization']
if not auth:
</code></pre>
http://stackoverflow.com/questions/1896452/how-to-filter-against-a-stringlistproperty-that-does-not-contain-an-item0How to filter against a StringListProperty that does not contain an item?jbochi2009-12-13T13:04:10Z2009-12-13T16:19:36Z
<p>I have the following model of Users and I want to get all the users that like 'yellow', but don't like 'red'.</p>
<pre><code>class User(db.Model):
name = db.StringProperty(required=True)
favorite_colors = db.StringListProperty(required=True)
</code></pre>
<p>This works (all users that have at least one favorite color 'yellow' are returned):</p>
<pre><code>results = db.GqlQuery(
"SELECT * FROM User "
"WHERE favorite_colors = 'yellow'")
</code></pre>
<p>But this does not do what I expected:</p>
<pre><code>results = db.GqlQuery(
"SELECT * FROM User "
"WHERE favorite_colors = 'yellow' "
"and favorite_colors != 'red'")
</code></pre>
<p>The same list of users is returned. I believe that it's testing if any of the favorite colors are different from 'red' and not if the list does not contain 'red' at all.</p>
<p>How can I filter only the results that contain an item and not another one?</p>
http://stackoverflow.com/questions/1804112/in-a-bigtable-datastore-with-regards-to-concurrency-how-do-i-lock-an-entity1In a BigTable datastore, with regards to concurrency, how do I "lock" an entity?willem2009-11-26T14:50:20Z2009-12-13T15:16:43Z
<p>I am not sure how to handle this in a BigTable datastore. </p>
<p>Imagine the following example (just to explain the concept. The example does not match my actual data model):</p>
<ul>
<li>I have a Counter entity that keeps track of the number of Transactions in my dataStore. Let's say the current 'count' is 100.</li>
<li>Now two web requests read this value at the same time.</li>
<li>Both web requests add a new Transaction </li>
<li>And finally both update the counter (to 101).</li>
</ul>
<p>The counter value is now inaccurate. It should be 102. </p>
<p>Any suggestions on how to handle this situation? Can I 'lock' the counter to ensure that the second web request doesn't even <strong>read</strong> it until the first web request completes?</p>
http://stackoverflow.com/questions/1894875/django-form-in-google-app-engine-unable-to-find-module-pil1Django form in Google App Engine unable to find module PIL.Bialecki2009-12-12T22:18:07Z2009-12-13T14:33:23Z
<p>There are actually a couple of questions here. For what I'm doing, I'm doing a basic image upload with Django 1.1 and Google App Engine. Here is my form class:</p>
<pre><code>class UploadPictureForm(forms.Form):
picture = forms.ImageField()
</code></pre>
<p>And then on submit, I have the following code:</p>
<pre><code>def handle_picture(request):
form = UploadPictureForm(request.POST, request.FILES)
if form.is_valid():
save_picture(request.FILES['picture']
</code></pre>
<p>I get the following error:</p>
<pre><code>Exception Type: ImportError
Exception Value: No module named PIL
Exception Location: /Library/Python/2.6/site-packages/django/forms/fields.py in clean, line 495
Python Executable: /usr/bin/python2.6
Python Version: 2.6.1
Python Path: [..., '/Library/Python/2.6/site-packages', '/Library/Python/2.6/site-packages/PIL']
</code></pre>
<p>and I've installed PIL in the <code>site-packages</code> directory and if I run python from the command line, I can import PIL with <code>import PIL</code></p>
<p>SO question #1 is why doesn't this work? Is GAE doing something that's keeping this from working? The second thing is that I notice GAE has some Image APIs. Should I be using those instead? All of this is somewhat new for me.</p>