Skip to content

Instantly share code, notes, and snippets.

@MeLight
Last active August 29, 2015 14:22
Show Gist options
  • Save MeLight/55ec3c077a33d2338473 to your computer and use it in GitHub Desktop.
Save MeLight/55ec3c077a33d2338473 to your computer and use it in GitHub Desktop.
from google.appengine.ext import ndb
from datetime import date
class DateTest(ndb.Model):
date = ndb.DateProperty()
d = date(2015, 10, 20)
dt = DateTest()
dt.date = d
dt.put()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment