Skip to content

blossom/gae-utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Usefull tools for developing on Google App Engine

  • JsonProperty for datastore
  • Base32 encoded UUID

Usage

git clone git@github.com:deck/gae-utils.git gaeUtils

or

git submodule add git@github.com:deck/gae-utils.git gaeUtils

JsonProperty

from google.appengine.ext import db from gaeUtils.datastore_properties import JsonProperty

class Note(db.Model):
    data = JsonProperty()

Encoded UUID

from gaeUtils.util import generate_key

unique_id = generate_key()

About

Some Utilities we use in our Google App Engine Projects

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages