In GAP you you create a model, they show it by :
 class Pet(db.Model):
        name = db.StringProperty(required=True)
        type = db.StringProperty(required=True)
        birthdate = db.DateProperty()
        weight_in_pounds = db.IntegerProperty()
        spayed_or_neutered = db.BooleanProperty()
Why are this created as static variables?
Shouldn't they be but in the __init__() method and cleard as self.variable ?
 
     
    