当前位置: 首页>>代码示例>>Python>>正文


Python app.run方法代码示例

本文整理汇总了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." 
开发者ID:ls1intum,项目名称:fogernetes,代码行数:8,代码来源:core.py

示例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) 
开发者ID:Azure,项目名称:DevOps-For-AI-Apps,代码行数:6,代码来源:wsgi.py

示例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 
开发者ID:ourresearch,项目名称:oadoi,代码行数:48,代码来源:views.py


注:本文中的app.app.run方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。