Share Pastebin
Guest
Public paste!

Untitled

By: a guest | May 15th, 2008 | Syntax: Python | Size: 0.23 KB | Hits: 114 | Expires: Never
Copy text to clipboard
  1. from google.appengine.ext import db
  2.  
  3. class Country(db.Model):
  4.     iso = db.StringProperty()
  5.     name = db.StringProperty()
  6.     printable_name = db.StringProperty()
  7.     iso3 = db.StringProperty()
  8.     numcode = db.StringProperty()