README
1An interactive, stateful AJAX shell that runs Python code on the server.
2
3Part of http://code.google.com/p/google-app-engine-samples/.
4
5May be run as a standalone app or in an existing app as an admin-only handler.
6Can be used for system administration tasks, as an interactive way to try out
7APIs, or as a debugging aid during development.
8
9The logging, os, sys, db, and users modules are imported automatically.
10
11Interpreter state is stored in the datastore so that variables, function
12definitions, and other values in the global and local namespaces can be used
13across commands.
14
15To use the shell in your app, copy shell.py, static/*, and templates/* into
16your app's source directory. Then, copy the URL handlers from app.yaml into
17your app.yaml.
18