active questions tagged python+google-app-engine - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T07:25:59Zhttp://stackoverflow.com/feeds/tag/python+google-app-enginehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1946251/how-to-create-an-internationalized-google-app-engine-application1How to create an internationalized Google App Engine applicationEmilien Klein2009-12-22T13:01:05Z2009-12-22T13:39:49Z
<p>I would like to provide my Python GAE website in the user's own language, using only the tools available directly in App Engine. For that, I would like to use GNU gettext files (.po and .mo files).</p>
<p>Has someone successfully combined Python <strong>Google App Engine</strong> and <strong>gettext</strong> files? If so, could you please provide the steps you used?</p>
<p>I had started <a href="http://groups.google.com/group/google-appengine/browse%5Fthread/thread/cf4d174c456c511/e5cb2718cb20c4e8" rel="nofollow">a discussion in GAE's Google group</a>, but haven't been able to extract from it how I'd like to do it: I don't want to add external dependencies, like Babel (suggested in the discussion). I want to use plain vanilla Google App Engine, so no manual update of Django or this kind of stuff.</p>
<p>At first, I will start using the language sent by the browser, so no need to manually force the language by using cookies etc. However, I might add a language changing feature later, once the basic internationalization works.</p>
<p>As a background note to give you more details about what I'm trying to do, I would like to internationalize <strong>Issue Tracker Tracker</strong>, an open source application I've hosted on Launchpad. I plan to use Launchpad's translation platform (explaining why I'd like to use .mo files). You can have a look at the source code in it's Bazaar branch (sorry no link due to stackoverflow spam prevention limit for new users...)</p>
<p>Thanks for helping me advance on this project!</p>
http://stackoverflow.com/questions/1934914/why-use-django-on-google-app-engine6Why use Django on Google App Engine?Travis Bradshaw2009-12-20T05:03:45Z2009-12-21T21:46:36Z
<p>When researching Google App Engine (GAE), it's clear that using Django is wildly popular for developing in Python on GAE. I've been scouring the web to find information on the costs and benefits of using Django, to find out <em>why</em> it's so popular. While I've been able to find a wide variety of sources on <em>how</em> to run Django on GAE and the various methods of doing so, I haven't found any comparative analysis on <em>why</em> Django is preferable to using the webapp framework provided by Google.</p>
<p>To be clear, it's immediately apparent why using Django on GAE is useful for developers with an existing skillset in Django (a majority of Python web developers, no doubt) or existing code in Django (where using GAE is more of a porting exercise). My team, however, is evaluating GAE for use on an all-new project and our existing experience is with TurboGears, not Django.</p>
<p>It's been quite difficult to determine why Django is beneficial to a development team when the BigTable libraries have replaced Django's ORM, sessions and authentication are necessarily changed, and Django's templating (if desirable) is available without using the entire Django stack.</p>
<p>Finally, it's clear that using Django does have the advantage of providing an "exit strategy" if we later wanted to move away from GAE and need a platform to target for the exodus.</p>
<p>I'd be extremely appreciative for help in pointing out <em>why</em> using Django is better than using webapp on GAE. I'm also completely inexperienced with Django, so elaboration on smaller features and/or conveniences that work on GAE are also valuable to me.</p>
<p>Thanks in advance for your time!</p>
http://stackoverflow.com/questions/1916579/in-python-how-can-i-test-if-im-in-google-app-engine-sdk1In Python, how can I test if I'm in Google App Engine SDK?colwilson2009-12-16T18:14:30Z2009-12-20T20:37:34Z
<p>Whilst developing I want to handle some things slight differently than I will when I eventually upload to the Google servers. </p>
<p>Is there a quick test that I can do to find out if I'm in the SDK or live?</p>
http://stackoverflow.com/questions/1936526/security-sandbox-issues-with-flex-as3-and-appengine0Security Sandbox Issues with Flex/AS3 and AppEngineSam Gammon2009-12-20T18:20:10Z2009-12-20T20:32:52Z
<p>I'm having trouble with an AS3 AMF RemoteObject request that is hosted on App Engine. I have a crossdomain.xml file in the root of the domain, and also one at the remoting endpoint.</p>
<p>Here are the contents of the root crossdomain.xml:</p>
<p><code><?xml version="1.0"?><br>
<cross-domain-policy><br>
<site-control permitted-cross-domain-policies ="all"/><br>
<allow-access-from domain="*.appspot.com"/><br>
<allow-access-from domain="*.{appid}.appspot.com"/><br>
<allow-access-from domain="*.{appid}.com"/><br>
<allow-access-from domain="*.{appid}.org"/><br>
</cross-domain-policy></code></p>
<p>I have replaced my application's ID with {appid}. In the endpoint crossdomain.xml, it says the exact same thing, except it omits the <code><site-control></code> tag.</p>
<p>Loading the swf file and testing it on my machine works just fine... I think that may have something to do with me having the debugger version of Flash Player. When I push it up to App Engine to make it public, other clients access it and get a <code>Client.Error.MessageSend Channel.Security.Error error Error #2048 url: http://05-alpha.latest.{appid}.appspot.com/_rpc/data</code>.</p>
<p>I am using Flex 4 beta, and the App Engine Python runtime.</p>
http://stackoverflow.com/questions/1260835/which-credentials-should-i-put-in-for-google-app-engine-bulkloader-at-development0Which credentials should I put in for Google App Engine BulkLoader at development server?Hoang2009-08-11T14:45:05Z2009-12-20T20:27:27Z
<p>Hello everyone,
I would like to ask which kind of credentials do I need to put on for importing data using the Google App Engine BulkLoader class</p>
<pre><code>appcfg.py upload_data --config_file=models.py --filename=listcountries.csv --kind=CMSCountry --url=http://localhost:8178/remote_api vit/
</code></pre>
<p>And then it asks me for credentials:</p>
<blockquote>
<p>Please enter login credentials for
localhost</p>
</blockquote>
<p>Here is an extraction of the content of the models.py, I use this <a href="http://www.andrewpatton.com/countrylist.html" rel="nofollow">listcountries.csv</a> file</p>
<pre><code>class CMSCountry(db.Model):
sortorder = db.StringProperty()
name = db.StringProperty(required=True)
formalname = db.StringProperty()
type = db.StringProperty()
subtype = db.StringProperty()
sovereignt = db.StringProperty()
capital = db.StringProperty()
currencycode = db.StringProperty()
currencyname = db.StringProperty()
telephonecode = db.StringProperty()
lettercode = db.StringProperty()
lettercode2 = db.StringProperty()
number = db.StringProperty()
countrycode = db.StringProperty()
class CMSCountryLoader(bulkloader.Loader):
def __init__(self):
bulkloader.Loader.__init__(self, 'CMSCountry',
[('sortorder', str),
('name', str),
('formalname', str),
('type', str),
('subtype', str),
('sovereignt', str),
('capital', str),
('currencycode', str),
('currencyname', str),
('telephonecode', str),
('lettercode', str),
('lettercode2', str),
('number', str),
('countrycode', str)
])
loaders = [CMSCountryLoader]
</code></pre>
<p>Every tries to enter the email and password result in "Authentication Failed", so I could not import the data to the development server. </p>
<p>I don't think that I have any problem with my files neither my models because I have successfully uploaded the data to the appspot.com application.<br />
So what should I put in for localhost credentials?<br />
I also tried to use <strong>Eclipse with Pydev</strong> but I still got the same message :(<br />
Here is the output:</p>
<pre><code>Uploading data records.
[INFO ] Logging to bulkloader-log-20090820.121659
[INFO ] Opening database: bulkloader-progress-20090820.121659.sql3
[INFO ] [Thread-1] WorkerThread: started
[INFO ] [Thread-2] WorkerThread: started
[INFO ] [Thread-3] WorkerThread: started
[INFO ] [Thread-4] WorkerThread: started
[INFO ] [Thread-5] WorkerThread: started
[INFO ] [Thread-6] WorkerThread: started
[INFO ] [Thread-7] WorkerThread: started
[INFO ] [Thread-8] WorkerThread: started
[INFO ] [Thread-9] WorkerThread: started
[INFO ] [Thread-10] WorkerThread: started
Password for foobar@nowhere.com: [DEBUG ] Configuring remote_api. url_path = /remote_api, servername = localhost:8178
[DEBUG ] Bulkloader using app_id: abc
[INFO ] Connecting to /remote_api
[ERROR ] Exception during authentication
Traceback (most recent call last):
File "D:\Projects\GoogleAppEngine\google_appengine\google\appengine\tools\bulkloader.py", line 2802, in Run
request_manager.Authenticate()
File "D:\Projects\GoogleAppEngine\google_appengine\google\appengine\tools\bulkloader.py", line 1126, in Authenticate
remote_api_stub.MaybeInvokeAuthentication()
File "D:\Projects\GoogleAppEngine\google_appengine\google\appengine\ext\remote_api\remote_api_stub.py", line 488, in MaybeInvokeAuthentication
datastore_stub._server.Send(datastore_stub._path, payload=None)
File "D:\Projects\GoogleAppEngine\google_appengine\google\appengine\tools\appengine_rpc.py", line 344, in Send
f = self.opener.open(req)
File "C:\Python25\lib\urllib2.py", line 381, in open
response = self._open(req, data)
File "C:\Python25\lib\urllib2.py", line 399, in _open
'_open', req)
File "C:\Python25\lib\urllib2.py", line 360, in _call_chain
result = func(*args)
File "C:\Python25\lib\urllib2.py", line 1107, in http_open
return self.do_open(httplib.HTTPConnection, req)
File "C:\Python25\lib\urllib2.py", line 1082, in do_open
raise URLError(err)
URLError: <urlopen error (10061, 'Connection refused')>
[INFO ] Authentication Failed
</code></pre>
<p>Thank you! </p>
http://stackoverflow.com/questions/1931454/how-to-parse-somewhat-wrong-json-with-python3How to parse somewhat wrong JSON with Python?Serge Tarkovski2009-12-19T00:25:08Z2009-12-19T23:50:53Z
<p>I have a following JSON string coming from external input source:</p>
<pre><code>{value: "82363549923gnyh49c9djl239pjm01223", id: 17893}
</code></pre>
<p>This is wrong-formatted JSON string ("id" and "value" must be in quotes), but I need to parse it anyway. I have tried simplejson and json-py and seems they could not be set up to parse such strings.</p>
<p>I am running Python 2.5 on Google App engine, so any C-based solutions like python-cjson are not applicable.</p>
<p>Input format could be changed to XML or YAML, in adition to JSON listed above, but I am using JSON within the project and changing format in specific place would not be very good.</p>
<p>Now I've switched to XML and parsing the data successfully, but looking forward to any solution that would allow me to switch back to JSON.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1895744/python-app-engine-import-issues-after-app-is-cached0Python app engine import issues after app is cachedjustinjas2009-12-13T06:27:00Z2009-12-19T22:28:46Z
<p>I'm using a modified version on juno (<a href="http://github.com/breily/juno/" rel="nofollow">http://github.com/breily/juno/</a>) in appengine. The problem I'm having is I have code like this:</p>
<pre><code>import juno
import pprint
@get('/')
def home(web):
pprint.pprint("test")
def main():
run()
if __name__ == '__main__':
main()
</code></pre>
<p>The first time I start the app up in the dev environment it works fine. The second time and every time after that it can't find pprint. I get this error:</p>
<pre><code>AttributeError: 'NoneType' object has no attribute 'pprint'
</code></pre>
<p>If I set the import inside the function it works every time:</p>
<pre><code>@get('/')
def home(web):
import pprint
pprint.pprint("test")
</code></pre>
<p>So it seems like it is caching the function but for some reason the imports are not being included when it uses that cache. I tried removing the main() function at the bottom to see if that would remove the caching of this script but I get the same problem. </p>
<p>Earlier tonight this code was working fine, I'm not sure what could have changed to cause this. Any insight is appreciated. </p>
http://stackoverflow.com/questions/1903065/is-google-app-engine-right-for-me3Is Google App Engine right for me?Steve2009-12-14T19:51:01Z2009-12-19T20:53:34Z
<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/1930511/open-a-new-browser-window-from-a-python-script-in-google-app-engine-2Open a new browser window from a Python script in Google App EngineNeverland2009-12-18T20:29:24Z2009-12-18T20:59:47Z
<p>A Python script at Google App Engine fetches data into a HTML page. </p>
<p>What is the best way to open a new browser window from the script or HTML page?</p>
<p>JavaScript doesn't work.</p>
http://stackoverflow.com/questions/1747198/google-wave-python-tutorial-what-next3Google Wave Python Tutorial - What next?Casebash2009-11-17T07:37:08Z2009-12-17T16:56:45Z
<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/1920936/bulkloader-py-dump-without-authentication0bulkloader.py --dump without authenticationTerje Dahl2009-12-17T10:53:47Z2009-12-17T14:56:47Z
<p>Is there some way or using the bulkloader.py dump and restore funtionality without authentication?
I have tried using:</p>
<pre><code>- url: /remote_api
script: $PYTHON_LIB/google/appengine/ext/remote_api/handler.py
</code></pre>
<p>without the login-parameter, but login still seems to be required.
I still get</p>
<pre><code>[ERROR ] Exception during authentication
</code></pre>
<p>I struggled with this for 6 hours yesterday, without any solution.</p>
<p>And yes, I have tried GAEBAR. It failed, however when it got to entities that contain up to 1MB (the maximum pr. entity) Blobs.</p>
<p>So, I am looking to dump (and restore) for backup-purposes mainly.</p>
http://stackoverflow.com/questions/1919033/this-website-is-temporarily-unavailable-please-try-again-later-error-on-googl0"This website is temporarily unavailable, please try again later." error on Google App Enginedonut2009-12-17T01:58:12Z2009-12-17T10:18:53Z
<p>I recently launched <a href="http://www.nairisartstudio.com" rel="nofollow">a site</a> on Google App Engine using Python. I'm in Korea, but my client is in California, USA. He and others in his area periodically run into periods of time when they receive this error message instead of the site:</p>
<blockquote>
<p>This website is temporarily unavailable, please try again later.</p>
</blockquote>
<p>I cannot figure out what is causing this. At first I was getting some errors due to the datastore timing out, but I found <a href="http://appengine-cookbook.appspot.com/recipe/autoretry-datastore-timeouts" rel="nofollow">a fix for that</a>. Then I thought that it was a problem with a particular area of the site that was taking up a lot of CPU time, but <a href="http://stackoverflow.com/questions/1892325/simple-db-query-on-google-app-engine-taking-a-lot-of-cpu-time">SO helped me there</a>. And in any case with the small amount of traffic this site is receiving there was no danger of going over the quotas, anyways.</p>
<p>When my client is running into this problem (I have not personally experienced it) they get it every time they try to access the site for a period of time. Usually these periods last around 20 minutes and then the site is okay to access again.</p>
<p>My client has experienced this at his work as well as from his home. But at his home he has two computers, a server that is connected directly to a cable modem and then another that is connected through a router. The server has yet to experience this problem but his other computer does experience this problem consistently with someone else's at a different location.</p>
<p>I'm not receiving any errors in the admin console and only two of the paths get occasional warnings about CPU time.</p>
http://stackoverflow.com/questions/189751/google-app-engine-and-404-error12Google App Engine and 404 errorctuffli2008-10-10T00:51:00Z2009-12-17T04:47:01Z
<p>I've setup a static website on GAE using hints found elsewhere, but can't figure out how to return a 404 error. My app.yaml file looks like</p>
<pre><code>- url: (.*)/
static_files: static\1/index.html
upload: static/index.html
- url: /
static_dir: static
</code></pre>
<p>with all the static html/jpg files stored under the static directory. The above works for files that exist, but returns a null length file if they don't. The answer is probably to write a python script to return a 404 error, but how do you set things up to serve the static files that exist but run the script for files that don't?</p>
<p>Here is the log from fetching a non-existent file (nosuch.html) on the development application server:</p>
<pre><code>ERROR 2008-11-25 20:08:34,084 dev_appserver.py] Error encountered reading file "/usr/home/ctuffli/www/tufflinet/static/nosuch.html":
[Errno 2] No such file or directory: '/usr/home/ctuffli/www/tufflinet/static/nosuch.html'
INFO 2008-11-25 20:08:34,088 dev_appserver.py] "GET /nosuch.html HTTP/1.1" 404 -
</code></pre>
http://stackoverflow.com/questions/1916009/app-engine-app-design-questions1App engine app design questionstm1rbrt2009-12-16T16:49:51Z2009-12-16T19:29:23Z
<p>I want to load info from another site (this part is done), but i am doing this every time the page is loaded and that wont do. So i was thinking of having a variable in a table of settings like 'last checked bbc site' and when the page loads it would check if its been long enough since last check to check again. Is there anything silly about doing it that way?</p>
<p>Also do i absolutely have to use tables to store 1 off variables like this setting?</p>
http://stackoverflow.com/questions/1912845/authenticated-request-in-google-app-engine-using-fetch-function-how-to-provide0Authenticated request in Google App Engine using fetch() function: how to provide the information in the header of the request?brilliant2009-12-16T07:05:03Z2009-12-16T18:18:54Z
<p>Hello everybody!!!</p>
<p>I am trying to pass automatically, using <a href="http://code.google.com/appengine/" rel="nofollow">Google App Engine</a>, my password and ID to eBay, to this page: </p>
<p><a href="https://signin.ebay.com/ws/eBayISAPI.dll?SignIn&UsingSSL=1&pUserId=&co%5FpartnerId=2&siteid=0&ru=http%3A%2F%2Fcgi5.ebay.com%2Fws2%2FeBayISAPI.dll%3FSellItem%26hm%3Dum.rundkoi376%26%26hc%3D1%26guest%3D1&pageType=1144" rel="nofollow">https://signin.ebay.com/ws/eBayISAPI.dll?SignIn&UsingSSL=1&pUserId=&co_partnerId=2&siteid=0&ru=http%3A%2F%2Fcgi5.ebay.com%2Fws2%2FeBayISAPI.dll%3FSellItem%26hm%3Dum.rundkoi376%26%26hc%3D1%26guest%3D1&pageType=1144</a> </p>
<p>(It is where I get redirected to from this URL: <a href="https://signin.ebay.com" rel="nofollow">https://signin.ebay.com</a>). Here is how the page looks like:<img src="http://roundcan.narod.ru/ebay%5Fsign.jpg" alt="alt text"></p>
<p>Earlier I have asked some questions, and <a href="http://stackoverflow.com/questions/1901701/how-to-check-for-an-http-status-code-of-401">here</a> one very nice supporter suggested that I use code from this link: <a href="http://chillorb.com/?p=195" rel="nofollow">http://chillorb.com/?p=195</a> If you have no time to go there, here is how that page looks like:</p>
<p><img src="http://roundcan.narod.ru/code.jpg" alt="alt text"> </p>
<p>So, I pasted that code into my editor substituting the valid eBay URL, my ID and password. My ID there is <strong>seeyousoondanny</strong> and the password is <strong>happy1</strong> (I created that account on eBay just for experimenting, so I am not afraid to give out my ID and password). Here is how the code looked in my editor:</p>
<p><img src="http://roundcan.narod.ru/editor.jpg" alt="alt text"></p>
<p>But when I run this code I get only this:</p>
<p><img src="http://roundcan.narod.ru/error.jpg" alt="alt text"></p>
<p>What am I doing wrong here?</p>
<p>++++++++++++++++++++++++++++++++++++++++++++++++++++++++++</p>
<p>Addition:</p>
<p>Here is the bottom of the error page (I think it will be seen clearer if you <a href="http://roundcan.narod.ru/bottom.jpg" rel="nofollow">click on the link to this image</a>): </p>
<p><img src="http://roundcan.narod.ru/bottom.jpg" alt="alt text"></p>
<p>+++++++++++++++++++++++++++++++++++++++++++++++++++</p>
<p>Addition:</p>
<p>I guess this code has no syntax mistakes:</p>
<pre><code>from google.appengine.api import urlfetch
import base64
url = "https://signin.ebay.com/ws/eBayISAPI.dll?SignIn&UsingSSL=1&pUserId=&co_partnerId=2&siteid=0&ru=http%3A%2F%2Fcgi5.ebay.com%2Fws2%2FeBayISAPI.dll%3FSellItem%26hm%3Dum.rundkoi376%26%26hc%3D1%26guest%3D1&pageType=1144"
authString = 'Basic' + base64.encodestring('seeyousoondanny:happy1')
data = urlfetch.fetch(url, headers= {'AUTHORIZATION' : authString })
if data.status_code == 200:
print "content-type: text/plain"
print
print data.status_code
</code></pre>
http://stackoverflow.com/questions/1914881/on-the-google-app-engine-why-does-my-import-statement-fail-on-live-but-work-o1On 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/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-16T15:20:01Z
<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/1469860/eclipsepydevgae-memcache-error1Eclipse+PyDev+GAE memcache errorbocco2009-09-24T05:12:28Z2009-12-16T13:28:22Z
<p>I've started using Eclipe+PyDev as an environment for developing my first app for Google App Engine. Eclipse is configured according to <a href="http://code.google.com/appengine/articles/eclipse.html" rel="nofollow">this tutorial</a>.</p>
<p>Everything was working until I start to use memcache. PyDev reports the errors and I don't know how to fix it:</p>
<p><img src="http://www.freeimagehosting.net/uploads/fc176c0957.png" alt="alt text" /></p>
<p>Error: Undefined variable from import: get</p>
<p>How to fix this?
Sure, it is only PyDev checker problem. Code is correct and run on GAE.</p>
<p>UPDATE:</p>
<ol>
<li>I'm using PyDev 1.5.0 but experienced the same with 1.4.8.</li>
<li>My PYTHONPATH includes (set in Project Properties/PyDev - PYTHONPATH):
<ul>
<li><code>C:\Program Files\Google\google_appengine</code></li>
<li><code>C:\Program Files\Google\google_appengine\lib\django</code></li>
<li><code>C:\Program Files\Google\google_appengine\lib\webob</code></li>
<li><code>C:\Program Files\Google\google_appengine\lib\yaml\lib</code></li>
</ul></li>
</ol>
<p>UPDATE 2:</p>
<p>I took a look at <code>C:\Program Files\Google\google_appengine\google\appengine\api\memcache\__init__.py</code> and found <code>get()</code> is not declared as <code>memcache</code> module function. They use the following trick to do that (I didn't hear about such possibility):</p>
<pre><code>_CLIENT = None
def setup_client(client_obj):
"""Sets the Client object instance to use for all module-level methods.
Use this method if you want to have customer persistent_id() or
persistent_load() functions associated with your client.
Args:
client_obj: Instance of the memcache.Client object.
"""
global _CLIENT
var_dict = globals()
_CLIENT = client_obj
var_dict['set_servers'] = _CLIENT.set_servers
var_dict['disconnect_all'] = _CLIENT.disconnect_all
var_dict['forget_dead_hosts'] = _CLIENT.forget_dead_hosts
var_dict['debuglog'] = _CLIENT.debuglog
var_dict['get'] = _CLIENT.get
var_dict['get_multi'] = _CLIENT.get_multi
var_dict['set'] = _CLIENT.set
var_dict['set_multi'] = _CLIENT.set_multi
var_dict['add'] = _CLIENT.add
var_dict['add_multi'] = _CLIENT.add_multi
var_dict['replace'] = _CLIENT.replace
var_dict['replace_multi'] = _CLIENT.replace_multi
var_dict['delete'] = _CLIENT.delete
var_dict['delete_multi'] = _CLIENT.delete_multi
var_dict['incr'] = _CLIENT.incr
var_dict['decr'] = _CLIENT.decr
var_dict['flush_all'] = _CLIENT.flush_all
var_dict['get_stats'] = _CLIENT.get_stats
setup_client(Client())
</code></pre>
<p>Hmm... Any idea how to force PyDev to recognize that?</p>
http://stackoverflow.com/questions/1753897/what-approaches-have-you-used-for-lightweight-python-unit-tests-on-app-engine7What approach(es) have you used for lightweight Python unit-tests on App Engine?Alex Martelli2009-11-18T05:44:45Z2009-12-16T12:35:26Z
<p>I'm about to embark on some large Python-based App Engine projects, and I think I should check with Stack Overflow's "wisdom of crowds" before committing to a unit-testing strategy. I have an existing unit-testing framework (based on <a href="http://docs.python.org/library/unittest.html?highlight=unittest#module-unittest" rel="nofollow">unittest</a> with custom runners and extensions) that I want to use, so anything "heavy-weight"/"intrusive" such as <a href="http://code.google.com/p/python-nose/" rel="nofollow">nose</a>, <a href="http://pythonpaste.org/webtest/" rel="nofollow">webtest</a>, or <a href="http://code.google.com/p/gaeunit/" rel="nofollow">gaeunit</a> doesn't seem appropriate. The crucial unit tests in my worldview are extremely lightweight and fast ones, ones that run in an extremely short time, so I can keep running them over and over all the time without breaking my development rhythm (e.g., for a different project, I get 97% or so coverage for a 20K-lines project with several dozens of super-fast tests that take 5-7 seconds, elapsed time, for a typical run, overall -- that's what I consider a decent suite of small, fast unit-tests). I'll have richer/heavier tests as well of course, all the way to integration tests with selenium or windmill, that's <strong>not</strong> what I'm asking about;-) -- my focus in this question (and in most of my development endeavors;-) is on the small, lightweight unit-tests that lightly and super-rapidly cover my code, not on the deeper ones.</p>
<p>So I think what I need is essentially a set of small, very lightweight simulations of the various key App Engine subsystems -- data store, memcache, request/response objects and calls to webapp handlers, user handling, mail, &c, roughly in this order of priority. I haven't found exactly what I'm looking for, so it seems to me that I should either rely on <a href="http://code.google.com/p/pymox/" rel="nofollow">mox</a>, as I've done often in the past, which basically means mocking each subsystem used in a given test and setting up all expectations &c (strong, but lots of work each time, and very sensitive to the tested-code's internals, i.e. very "white-box"y), or rolling my own simulation of each subsystem (and doing asserts on the simulated subsystems' states as part of the unit tests). The latters seems feasible, given GAE's Python-side strong "stubs" architecture... but I can't believe I need to roll my own, i.e., that nobody's already written such simple-minded simulators!-) E.g., for the datastore, it looks like what I need is more or less the "datastore on file" stub that's already part of the SDK, plus a way to mark it readonly and easy-to-use accessors for assertions about the datastore's state; and so forth, subsystem by subsystem -- each seems to need "just a bit more" than what's already in the SDK, "perched on top" of the existing "stubs" architecture.</p>
<p>So, before diving in and spending a day or two of precious development time "rolling my own" simulations of GAE subsystems for unit testing purposes, I thought I'd double check with the SO crowd and see what y'all think of this... or, if there's already some existing open source set of such simulators that I can simply reuse (or minimally tweak!-), and which I've just failed to spot in my searching!-)</p>
<p><strong>Edit</strong>: to clarify, if I do roll my own, I do plan to leverage the SDK-supplied stubs where feasible; but for example there's no stub for a datastore that gets initially read in from a file but then not saved at the end, so I need to subclass and tweak the existing one (which also doesn't offer particularly convenient ways to do asserts on its state -- same for the mail service stub, etc). That's what I mean by "rolling my own" -- not "rewriting from scratch"!-)</p>
<p><strong>Edit</strong>: "why not GAEUnit" -- GAEUnit is nice for its own use cases, but running dev_appserver and seeing results in my browser (or even via urllib.urlopen) is definitely not what I'm after -- I want to use a fully automated setup, suitable for running within an existing test-running framework which is based on extending unittest, and no HTTP in the way (said framework defines a "fast" test as one that among other thing does no sockets and minimal disk I/O -- we simulate or mock these -- so via gaeunit I could do no better than "medium" tests) + no convenient way to prepopulate datastore for each test (and no OO structure to help customize things).</p>
http://stackoverflow.com/questions/1913775/db-model-class-variables-and-init1db.Model class variables and __init__hyn2009-12-16T10:36:20Z2009-12-16T11:16:43Z
<p>(New to Python and GAE)</p>
<p>I'm looking for an explanation to the use of class variables in db.Model subclasses, which are treated like instance variables. Why are these declared in class scope and not in <code>__init__</code>? Is this some kind of special GAE requirement?</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-16T04:56:50Z
<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/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/1907187/app-engine-templates1App engine templatestm1rbrt2009-12-15T12:44:00Z2009-12-16T04:50:30Z
<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/1900175/gaehow-to-set-inline-if-in-template1[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/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/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/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>
http://stackoverflow.com/questions/1894696/python-lxml-on-app-engine0python lxml on app engine?Nick Perkins2009-12-12T21:04:14Z2009-12-12T22:18:58Z
<p>Can I use python lxml on google app engine? ( or do i have to use Beautiful Soup? )</p>
<p>I have started using Beautiful Soup but it seems slow. I am just starting to play with the idea of "screen scraping" data from other websites to create some sort of "mash-up".</p>