当前位置: 首页>>代码示例>>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;未经允许,请勿转载。