GAE Based Dictionary Like Object! ****** *Docs* ****** 1. f: Function - either get() or put(). 2. key: The key. 3. value: Value for the key. 4. handle: User identity :) (optional; but if specified then key/value pair(s) will be saved/updated/cleared for the specified 'handle' only!). Examples --------- 1. Putting/Updating a key/value Pair ------------------------------------ /dict?f=put&key=msg&value=HelloWorld /dict?f=put&key=msg&value=HelloWorld&handle=Ralph 2. Getting the Stored value for a key ------------------------------------- /dict?f=get&key=msg /dict?f=get&key=msg&handle=Ralph 3. Listing All Keys ------------------- /dict?f=get /dict?f=get&handle=Ralph 4. Clear All! ------------- /dict?f=clear /dict?f=clear&handle=Ralph Client Implementation in Python (Demo): --------------------------------------- /impl/gdict_client.py Keywords: dict dictionary dict() object gae google app engine web based service free url get put key value >:) *bows*