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


Python util.warn方法代码示例

本文整理汇总了Python中gunicorn.util.warn方法的典型用法代码示例。如果您正苦于以下问题:Python util.warn方法的具体用法?Python util.warn怎么用?Python util.warn使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在gunicorn.util的用法示例。


在下文中一共展示了util.warn方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: paste_server

# 需要导入模块: from gunicorn import util [as 别名]
# 或者: from gunicorn.util import warn [as 别名]
def paste_server(app, gcfg=None, host="127.0.0.1", port=None, *args, **kwargs):
    """\
    A paster server.

    Then entry point in your paster ini file should looks like this:

    [server:main]
    use = egg:gunicorn#main
    host = 127.0.0.1
    port = 5000

    """

    util.warn("""This command is deprecated.

    You should now use the `--paste` option. Ex.:

        gunicorn --paste development.ini
    """)

    from gunicorn.app.pasterapp import PasterServerApplication
    PasterServerApplication(app, gcfg=gcfg, host=host, port=port, *args, **kwargs).run() 
开发者ID:RoseOu,项目名称:flasky,代码行数:24,代码来源:pasterapp.py

示例2: run

# 需要导入模块: from gunicorn import util [as 别名]
# 或者: from gunicorn.util import warn [as 别名]
def run():
    """\
    The ``gunicorn_django`` command line runner for launching Django
    applications.
    """
    util.warn("""This command is deprecated.

    You should now run your application with the WSGI interface
    installed with your project. Ex.:

        gunicorn myproject.wsgi:application

    See https://docs.djangoproject.com/en/1.5/howto/deployment/wsgi/gunicorn/
    for more info.""")
    from gunicorn.app.djangoapp import DjangoApplication
    DjangoApplication("%(prog)s [OPTIONS] [SETTINGS_PATH]").run() 
开发者ID:RoseOu,项目名称:flasky,代码行数:18,代码来源:djangoapp.py

示例3: handle

# 需要导入模块: from gunicorn import util [as 别名]
# 或者: from gunicorn.util import warn [as 别名]
def handle(self, addrport=None, *args, **options):

        # deprecation warning to announce future deletion in R21
        util.warn("""This command is deprecated.

        You should now run your application with the WSGI interface
        installed with your project. Ex.:

            gunicorn myproject.wsgi:application

        See https://docs.djangoproject.com/en/1.5/howto/deployment/wsgi/gunicorn/
        for more info.""")

        if args:
            raise CommandError('Usage is run_gunicorn %s' % self.args)

        if addrport:
            sys.argv = sys.argv[:-1]
            options['bind'] = addrport

        admin_media_path = options.pop('admin_media_path', '')

        DjangoApplicationCommand(options, admin_media_path).run() 
开发者ID:RoseOu,项目名称:flasky,代码行数:25,代码来源:run_gunicorn.py

示例4: run

# 需要导入模块: from gunicorn import util [as 别名]
# 或者: from gunicorn.util import warn [as 别名]
def run():
    """\
    The ``gunicorn_django`` command line runner for launching Django
    applications.
    """
    util.warn("""This command is deprecated.

    You should now run your application with the WSGI interface
    installed with your project. Ex.:

        gunicorn myproject.wsgi:application

    See https://docs.djangoproject.com/en/1.8/howto/deployment/wsgi/gunicorn/
    for more info.""")
    from gunicorn.app.djangoapp import DjangoApplication
    DjangoApplication("%(prog)s [OPTIONS] [SETTINGS_PATH]").run() 
开发者ID:yelongyu,项目名称:chihu,代码行数:18,代码来源:djangoapp.py

示例5: handle

# 需要导入模块: from gunicorn import util [as 别名]
# 或者: from gunicorn.util import warn [as 别名]
def handle(self, addrport=None, *args, **options):

        # deprecation warning to announce future deletion in R21
        util.warn("""This command is deprecated.

        You should now run your application with the WSGI interface
        installed with your project. Ex.:

            gunicorn myproject.wsgi:application

        See https://docs.djangoproject.com/en/1.8/howto/deployment/wsgi/gunicorn/
        for more info.""")

        if args:
            raise CommandError('Usage is run_gunicorn %s' % self.args)

        if addrport:
            sys.argv = sys.argv[:-1]
            options['bind'] = addrport

        admin_media_path = options.pop('admin_media_path', '')

        DjangoApplicationCommand(options, admin_media_path).run() 
开发者ID:yelongyu,项目名称:chihu,代码行数:25,代码来源:run_gunicorn.py

示例6: run

# 需要导入模块: from gunicorn import util [as 别名]
# 或者: from gunicorn.util import warn [as 别名]
def run():
    """\
    The ``gunicorn_paster`` command for launching Paster compatible
    applications like Pylons or Turbogears2
    """
    util.warn("""This command is deprecated.

    You should now use the `--paste` option. Ex.:

        gunicorn --paste development.ini
    """)

    from gunicorn.app.pasterapp import PasterApplication
    PasterApplication("%(prog)s [OPTIONS] pasteconfig.ini").run() 
开发者ID:RoseOu,项目名称:flasky,代码行数:16,代码来源:pasterapp.py


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