GAEK

Google App Engine Kit

View the Project on GitHub erichiggins/gaek

A collection of useful tools for Python apps running on Google App Engine.

NDB JSON module

Usage:

from gaek import ndb_json

# Serialize NDB Model(s) to a JSON string.
json_str = ndb_json.dumps(models)

# Parse a JSON string into a Python dictionary.
ndb_json.loads(json_str)

Feature parity with the Python json module functions.

Environment module