Since 6d9ba51 less than a week ago, Google API Python Client now works on App Engine out-of-the-box; previously, you had to remember to 'enable' the ssl library (see this) so that it would be available, even though it is part of the Python standard library. (See issue #191 for a ...
In vanilla django, if you wanted to `{% load foo_tags %}, what you did wsa to create a importable templatetags namespace with a foo_tags.py
like this:
/
|- settings.py
|- manage.py
|- ...
|- templatetags/
|- __init__.py
|- foo_tags.py
But with Google App Engine's django (0.96), it's not so easy. The tag ...