當前位置: 首頁>>代碼示例>>Python>>正文


Python bottle.default_app方法代碼示例

本文整理匯總了Python中bottle.default_app方法的典型用法代碼示例。如果您正苦於以下問題:Python bottle.default_app方法的具體用法?Python bottle.default_app怎麽用?Python bottle.default_app使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在bottle的用法示例。


在下文中一共展示了bottle.default_app方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: work

# 需要導入模塊: import bottle [as 別名]
# 或者: from bottle import default_app [as 別名]
def work(p,rp,nonesym,timec,timebg,btc,btbg,etc,etbg,showetflag,showbtflag):
    global port, static_path, nonesymbol, timecolor, timebackground, btcolor, btbackground, etcolor, etbackground, showbt, showet
    port = p
    static_path = rp
    nonesymbol = nonesym
    timecolor = timec
    timebackground = timebg
    btcolor = btc
    btbackground = btbg
    etcolor = etc
    etbackground = etbg
    showet = showetflag
    showbt = showbtflag
    TEMPLATE_PATH.insert(0,rp)
    s = WSGIServer(("0.0.0.0", p), default_app(), handler_class=WebSocketHandler)
    s.serve_forever() 
開發者ID:artisan-roaster-scope,項目名稱:artisan,代碼行數:18,代碼來源:weblcds.py

示例2: main

# 需要導入模塊: import bottle [as 別名]
# 或者: from bottle import default_app [as 別名]
def main():
    """Function run when the tool is called."""
    args = parse_args()
    print(__doc__)
    application = default_app()
    application.mount('/cgi/', webapp.application)
    run(host=args.bind_address, port=args.port, debug=DEBUG) 
開發者ID:cea-sec,項目名稱:ivre,代碼行數:9,代碼來源:httpd.py

示例3: init

# 需要導入模塊: import bottle [as 別名]
# 或者: from bottle import default_app [as 別名]
def init():
    """ Init the application and add routes """

    logging.basicConfig(format='%(asctime)s: [%(levelname)s]: %(message)s',
                        level=logging.DEBUG)

    global theconfig
    theconfig = get_config()

    global rc
    rc = init_redis(theconfig)

    app = default_app()

    return app 
開發者ID:ikreymer,項目名稱:browsertrix,代碼行數:17,代碼來源:app.py

示例4: wsgi_app

# 需要導入模塊: import bottle [as 別名]
# 或者: from bottle import default_app [as 別名]
def wsgi_app():
    """Returns the application to make available through wfastcgi. This is used
    when the site is published to Microsoft Azure."""
    return bottle.default_app() 
開發者ID:microsoft,項目名稱:PTVS-Samples,代碼行數:6,代碼來源:app.py

示例5: main

# 需要導入模塊: import bottle [as 別名]
# 或者: from bottle import default_app [as 別名]
def main():
    """ Prepares and launches the bottle app. """
    if (arguments['init']):
        init_config(arguments['<username>'])
    elif (arguments['run']):
        app = bottle.default_app()
        if 'HTTPPrefix' in config:
            app.mount(config['HTTPPrefix'], app)
        app.run(port=config['Port'], host=config['BindAddress'])
    elif (arguments['list']):
        print_list() 
開發者ID:PhotoBackup,項目名稱:server-bottle,代碼行數:13,代碼來源:photobackup.py

示例6: main

# 需要導入模塊: import bottle [as 別名]
# 或者: from bottle import default_app [as 別名]
def main():
    init_log(level=logging.DEBUG)
    app = default_app()
    server = make_server(("", 8888), app)
    server.serve_forever() 
開發者ID:lazywen,項目名稱:graily,代碼行數:7,代碼來源:test_wsgiserver.py


注:本文中的bottle.default_app方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。