本文整理汇总了Python中werkzeug.Request.application方法的典型用法代码示例。如果您正苦于以下问题:Python Request.application方法的具体用法?Python Request.application怎么用?Python Request.application使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类werkzeug.Request
的用法示例。
在下文中一共展示了Request.application方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: serve
# 需要导入模块: from werkzeug import Request [as 别名]
# 或者: from werkzeug.Request import application [as 别名]
def serve(self, interface='0.0.0.0', port=3080,
max_size=DEFAULT_MAX_CONC_REQUESTS):
self.log.info('ZenQueue HTTP Server v%s', zenqueue.__version__)
if interface == '0.0.0.0':
self.log.info('Serving on %s:%d (all interfaces)', interface, port)
else:
self.log.info('Serving on %s:%d', interface, port)
self.sock = api.tcp_listener((interface, port))
try:
# Wrap `self` with `Request.application` so that we get a request as
# an argument instead of the usual `environ, start_response`.
wsgi.server(self.sock, Request.application(self), max_size=max_size)
finally:
self.sock = None