Access all these in your PROD env on GAE -
1) Interactive Console
2) Memcache full manager
3) XMPP bot
4) IncomingMail Stub

Add the below to appr section in ur APP.YAML file in Python
handlers:
- url: /admin/.*
script: $PYTHON_LIB/google/appengine/ext/admin
login: admin

admin_console:
pages:
- name: My Console
url: /admin/interactive
- name: My Memcache
url: /admin/memcache
- name: My XMPP
url: /admin/xmpp
- name: My Inbound Mail
url: /admin/inboundmail

Above links will be visible on GAE Dashboard towards left-bottom as
Custom-Pages section

Other useful Python tips
print os.environ
print sys.path
print sys.version (python ver used on GAE)
help(obj)
dir(obj)
object.__dict__ (object variable values during runtime, extremely
useful for debugging, yup, those are 2 underscores before and after
dict)

Most important
Always readup on this http://blog.notdot.net/
Join these Google forums -
http://code.google.com/appengine/forum/
http://code.google.com/appengine/forum/python-forum.html
http://code.google.com/appengine/forum/downtime.html

Happy GAEing !!!

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to