本文整理汇总了Python中app.app.run方法的典型用法代码示例。如果您正苦于以下问题:Python app.run方法的具体用法?Python app.run怎么用?Python app.run使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app.app
的用法示例。
在下文中一共展示了app.run方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: central_main
# 需要导入模块: from app import app [as 别名]
# 或者: from app.app import run [as 别名]
def central_main():
thread = Thread(target=schedule_main)
thread.start()
app.run(host='0.0.0.0', port=CENTRAL_PORT, debug=True)
thread.join()
print "Everything is finished."
示例2: create
# 需要导入模块: from app import app [as 别名]
# 或者: from app.app import run [as 别名]
def create():
print("Initialising")
init()
application.run(host='127.0.0.1', port=5000)
示例3: stuff_before_request
# 需要导入模块: from app import app [as 别名]
# 或者: from app.app import run [as 别名]
def stuff_before_request():
if request.endpoint in ["get_doi_endpoint_v2", "get_doi_endpoint"]:
email = request.args.get("email", None)
if not email or email.endswith(u"example.com"):
abort_json(422, "Email address required in API call, see http://unpaywall.org/products/api")
if get_ip() in ["35.200.160.130", "45.249.247.101", "137.120.7.33",
"52.56.108.147", "193.137.134.252", "130.225.74.231"]:
abort_json(429, "History of API use exceeding rate limits, please email support@unpaywall.org for other data access options, including free full database dump.")
g.request_start_time = time()
g.hybrid = 'hybrid' in request.args.keys()
if g.hybrid:
logger.info(u"GOT HYBRID PARAM so will run with hybrid.")
# don't redirect http api in some cases
if request.url.startswith("http://api."):
return
if "staging" in request.url or "localhost" in request.url:
return
# redirect everything else to https.
new_url = None
try:
if request.headers["X-Forwarded-Proto"] == "https":
pass
elif "http://" in request.url:
new_url = request.url.replace("http://", "https://")
except KeyError:
# logger.info(u"There's no X-Forwarded-Proto header; assuming localhost, serving http.")
pass
# redirect to naked domain from www
if request.url.startswith("https://www.oadoi.org"):
new_url = request.url.replace(
"https://www.oadoi.org",
"https://oadoi.org"
)
logger.info(u"URL starts with www; redirecting to " + new_url)
if new_url:
return redirect(new_url, 301) # permanent
# convenience function because we do this in multiple places