Skip to content

Instantly share code, notes, and snippets.

@namlook
Created September 26, 2013 12:29
Show Gist options
  • Save namlook/6713478 to your computer and use it in GitHub Desktop.
Save namlook/6713478 to your computer and use it in GitHub Desktop.
MongoKit simple inheritance example 2
@connection.register
class Nugget(Core):
__collection__ = "nuggets"
stucture = {
"url": unicode,
"topics": list,
"discoverer": unicode,
"popularity": int
}
default_values = {"popularity": 0}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment