當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。