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


Python _internal._date_to_unix方法代碼示例

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


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

示例1: serialize

# 需要導入模塊: from werkzeug import _internal [as 別名]
# 或者: from werkzeug._internal import _date_to_unix [as 別名]
def serialize(self, expires=None):
        """Serialize the secure cookie into a string.

        If expires is provided, the session will be automatically invalidated
        after expiration when you unseralize it. This provides better
        protection against session cookie theft.

        :param expires: an optional expiration date for the cookie (a
                        :class:`datetime.datetime` object)
        """
        if self.secret_key is None:
            raise RuntimeError('no secret key defined')
        if expires:
            self['_expires'] = _date_to_unix(expires)
        result = []
        mac = hmac(self.secret_key, None, self.hash_method)
        for key, value in sorted(self.items()):
            result.append(('%s=%s' % (
                url_quote_plus(key),
                self.quote(value).decode('ascii')
            )).encode('ascii'))
            mac.update(b'|' + result[-1])
        return b'?'.join([
            base64.b64encode(mac.digest()).strip(),
            b'&'.join(result)
        ]) 
開發者ID:jpush,項目名稱:jbox,代碼行數:28,代碼來源:securecookie.py

示例2: test_date_to_unix

# 需要導入模塊: from werkzeug import _internal [as 別名]
# 或者: from werkzeug._internal import _date_to_unix [as 別名]
def test_date_to_unix(self):
        assert internal._date_to_unix(datetime(1970, 1, 1)) == 0
        assert internal._date_to_unix(datetime(1970, 1, 1, 1, 0, 0)) == 3600
        assert internal._date_to_unix(datetime(1970, 1, 1, 1, 1, 1)) == 3661
        x = datetime(2010, 2, 15, 16, 15, 39)
        assert internal._date_to_unix(x) == 1266250539 
開發者ID:GeekTrainer,項目名稱:Flask,代碼行數:8,代碼來源:internal.py


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