class Products(ndb.Model): item = ndb.PickleProperty()
class Item(object): def __init__(self,name,price,description): self.name = name self.price = price self.description = description
class SomeHandler(webapp2.RequestHandler): def get(self): item1 = Item('Coca',5,'some text') product = Products(item=item1) product.put()