#----------------------------------------------------------------------------- # Copyright (c) 2012 - 2017, Anaconda, Inc. All rights reserved. # # Powered by the Bokeh Development Team. # # The full license is in the file LICENSE.txt, distributed with this software. #----------------------------------------------------------------------------- ''' Define the Bokeh application class. A *Bokeh Application* is a lightweight factory for creating Bokeh Documents. For example, whenever a new client connects to a Bokeh Server, the server uses the ``Application`` to generate a unique new document, to service the client session. The application performs this task by invoking the ``modify_document`` method of any ``Handler`` objects that it is configured with. ''' #----------------------------------------------------------------------------- # Boilerplate #----------------------------------------------------------------------------- from __future__ import absolute_import, division, print_function, unicode_literals import logging log = logging.getLogger(__name__) #----------------------------------------------------------------------------- # Imports #----------------------------------------------------------------------------- # Standard library imports # External imports # Bokeh imports #----------------------------------------------------------------------------- # General API #----------------------------------------------------------------------------- from .application import Application __all__ = ( 'Application', )