Bypassing local server restrictions on Google App Engine
The problem is that the unsupported modules are completely deleted. Instead, they should really be renamed and kept on so that they can be re-enabled temporarily if and when you need that functionality locally.
I rant into a real-world use case for this today when building the feature to download a remote datastore backup to the local environment. I need to create folders and os.mkdir is one of the disabled modules.
I tried to find a way of doing this without having to modify the local server but couldn't find one. Instead I modified it as follows:
Line 1119:
for symbol in set(module.__dict__) - set(allowed_symbols):
if not (symbol.startswith('__') and symbol.endswith('__')):
+ module.__dict__['old_'+symbol] = module.__dict__[symbol]
del module.__dict__[symbol]
Update: In AppEngine 1.1.7, apply the patch to Line 1148 of dev_appserver.py. (You can find dev_appserver.py in /Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/tools/ on a default install.)
Linux and Windows users: You may have to set the files in google_appengine to writable (chmod +w -R google_appengine) before you can edit it.
Windows users: You may have to set your security settings so that you can actually edit the dev_appserver.py file (Properties → Security → Users and set Full Control on).
Then, in my download handler (which only runs on the local environment), I monkeypatch mkdir back temporarily. I also add back the write mode to file:
from google.appengine.tools import dev_appserver # Add 'w' to the allowed modes OLD_ALLOWED_MODES = dev_appserver.FakeFile.ALLOWED_MODES dev_appserver.FakeFile.ALLOWED_MODES = frozenset(['r', 'rb', 'U', 'rU', 'w']) # Add mkdir back to os os.mkdir = os.old_mkdir
Finally, at the end of the method, when the download is complete, I return things to the way they were:
# Remove 'w' from the allowed modes for file. dev_appserver.FakeFile.ALLOWED_MODES = OLD_ALLOWED_MODES # Remove mkdir from os del os.mkdir
I'd love it if dev_appserver.py worked this way without the patch so I've opened Issue 616. I know this sounds like a very edge case but it's quite a central part of the backup/restore process I'm creating.
It's not a big deal if it's not patched -- it will simply mean that you'll have to apply a patch before you can use the backup/restore solution -- but it would be nice to have.
(And, in general, I feel it's a good practice to keep a copy of the old function when you monkeypatch to provide flexibility for cases just like this.)
The Bypassing local server restrictions on Google App Engine article by Aral Balkan, unless otherwise expressly stated, is licensed under a Creative Commons Attribution-Noncommercial 2.0 UK: England License.

Subscribe to my blog






Guido van Rossum
Why does the patch look like it deletes one line and inserts two, of which the latter is identical to the deleted line? It makes more sense to do this:
for symbol in set(module.__dict__) - set(allowed_symbols): if not (symbol.startswith('__') and symbol.endswith('__')): + module.__dict__['old_'+symbol] = module.__dict__[symbol] del module.__dict__[symbol]January 7th, 2009 at 7:29 pmGuido van Rossum
Shit. The comment box messed up the whitespace, and there doesn’t seem to be a preview feature or a way to turn that off. Use View source to see what I meant.
January 7th, 2009 at 7:31 pmAral
Hey Guido,
I updated the post with your version and fixed your comment too. I should really state somewhere that people can use
in the comments.
January 7th, 2009 at 8:30 pm