當前位置: 首頁>>代碼示例>>Python>>正文


Python ndb.DateProperty方法代碼示例

本文整理匯總了Python中google.appengine.ext.ndb.DateProperty方法的典型用法代碼示例。如果您正苦於以下問題:Python ndb.DateProperty方法的具體用法?Python ndb.DateProperty怎麽用?Python ndb.DateProperty使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在google.appengine.ext.ndb的用法示例。


在下文中一共展示了ndb.DateProperty方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: convert_DateProperty

# 需要導入模塊: from google.appengine.ext import ndb [as 別名]
# 或者: from google.appengine.ext.ndb import DateProperty [as 別名]
def convert_DateProperty(self, model, prop, kwargs):
        """Returns a form field for a ``ndb.DateProperty``."""
        if prop._auto_now or prop._auto_now_add:
            return None

        return f.DateField(format='%Y-%m-%d', **kwargs) 
開發者ID:jpush,項目名稱:jbox,代碼行數:8,代碼來源:ndb.py

示例2: _get_for_dict

# 需要導入模塊: from google.appengine.ext import ndb [as 別名]
# 或者: from google.appengine.ext.ndb import DateProperty [as 別名]
def _get_for_dict(self, entity):
        value = super(DateProperty, self)._get_for_dict(entity)
        if not value:
            return None
        return str(value) 
開發者ID:duo-labs,項目名稱:isthislegit,代碼行數:7,代碼來源:util.py

示例3: testDateProperty_shouldConvertToString

# 需要導入模塊: from google.appengine.ext import ndb [as 別名]
# 或者: from google.appengine.ext.ndb import DateProperty [as 別名]
def testDateProperty_shouldConvertToString(self):
        self.__assert_conversion(ndb.DateProperty, DateTime) 
開發者ID:graphql-python,項目名稱:graphene-gae,代碼行數:4,代碼來源:test_converter.py

示例4: mock_now

# 需要導入模塊: from google.appengine.ext import ndb [as 別名]
# 或者: from google.appengine.ext.ndb import DateProperty [as 別名]
def mock_now(test, now, seconds):
  """Mocks utcnow() and ndb properties.

  In particular handles when auto_now and auto_now_add are used.
  """
  now = now + datetime.timedelta(seconds=seconds)
  test.mock(utils, 'utcnow', lambda: now)
  test.mock(ndb.DateTimeProperty, '_now', lambda _: now)
  test.mock(ndb.DateProperty, '_now', lambda _: now.date())
  return now 
開發者ID:luci,項目名稱:luci-py,代碼行數:12,代碼來源:test_case.py


注:本文中的google.appengine.ext.ndb.DateProperty方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。